/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg: #fdfcfb;
  --surface: #ffffff;
  --ink: #1a1d23;
  --muted: #6b7280;
  --line: rgba(31, 35, 40, 0.08);

  --accent: #9a7b5f;

  --r: 20px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  width: 100%;
  display: block;
  border-radius: calc(var(--r) - 6px);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  background: var(--surface);
  position: relative;
}

/* Regular sections (non-alt) get white background for contrast */
.section:not(.alt):not(.page-hero):not(.hero-with-bg):not(.section-included) {
  background: var(--surface);
}

.section.alt {
  background: #f8f6f4;
  position: relative;
  border-top: 1px solid rgba(154, 123, 95, 0.12);
  border-bottom: 1px solid rgba(154, 123, 95, 0.12);
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(154, 123, 95, 0.03) 0%,
    transparent 30%,
    transparent 70%,
    rgba(154, 123, 95, 0.03) 100%
  );
  pointer-events: none;
}

.section.alt::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 35%, rgba(154, 123, 95, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(154, 123, 95, 0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.6;
}

.section.alt .container {
  position: relative;
  z-index: 1;
}

.section-included {
  background: #f8f6f4;
  position: relative;
  border-top: 1px solid rgba(154, 123, 95, 0.12);
  border-bottom: 1px solid rgba(154, 123, 95, 0.12);
}

.section-included::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(154, 123, 95, 0.03) 0%,
    transparent 30%,
    transparent 70%,
    rgba(154, 123, 95, 0.03) 100%
  );
  pointer-events: none;
}

.section-included::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 35%, rgba(154, 123, 95, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(154, 123, 95, 0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.6;
}

.section-included .container {
  position: relative;
  z-index: 1;
}

/* =========================
   PAGE HERO (Portfolio, Blog, Pricing, Testimonials)
========================= */
.page-hero {
  background: linear-gradient(
    135deg,
    rgba(253, 252, 251, 0.98) 0%,
    rgba(250, 249, 248, 0.95) 50%,
    rgba(253, 252, 251, 0.98) 100%
  );
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(154, 123, 95, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(154, 123, 95, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.01) 100%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* =========================
   HERO WITH BACKGROUND IMAGE (About, Contact)
========================= */
.hero-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero-with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 29, 35, 0.4) 0%,
    rgba(26, 29, 35, 0.5) 50%,
    rgba(26, 29, 35, 0.4) 100%
  );
  z-index: 1;
}

.hero-with-bg .container {
  position: relative;
  z-index: 2;
}

.hero-with-bg .section-head {
  max-width: 700px;
}

.hero-with-bg h2 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-with-bg .muted {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-with-bg .section-head p:not(:first-of-type) {
  opacity: 0.9;
}

.hero-about {
  background-image: url("assets/about-photographer-editorial-background.jpg");
}

.hero-contact {
  background-image: url("assets/contact-photography-background.jpg");
}

.hero-portfolio {
  background-image: url("assets/portfolio-hero-bg.jpg");
}

.hero-services {
  background-image: url("assets/services-hero-bg.jpg");
}

.hero-testimonials {
  background-image: url("assets/testimonials-hero-bg.jpg");
}

.hero-blog {
  background-image: url("assets/blog-hero-bg.jpg");
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
}

.page-hero .section-head p:first-of-type,
.hero-with-bg .section-head p:first-of-type {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-hero .section-head p:not(:first-of-type),
.hero-with-bg .section-head p:not(:first-of-type) {
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
}

.muted {
  color: var(--muted);
}

.micro {
  font-size: 13px;
}

/* =========================
   NAV (DARK PROFESSIONAL)
========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(58, 55, 50, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(154, 123, 95, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
  min-height: 64px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(154, 123, 95, 0.2),
    rgba(154, 123, 95, 0.1)
  );
  border: 1px solid rgba(154, 123, 95, 0.25);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: #f5f3f0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 11px;
  color: rgba(245, 243, 240, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(245, 243, 240, 0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #f5f3f0;
  background: rgba(154, 123, 95, 0.15);
}

.nav-links a[aria-current="page"] {
  color: #f5f3f0;
  background: rgba(154, 123, 95, 0.2);
}

.nav-links .btn {
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(154, 123, 95, 0.1);
  border: 1px solid rgba(154, 123, 95, 0.25);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 101;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f5f3f0;
  margin: 5px auto;
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(58, 55, 50, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  display: grid;
  gap: 8px;
  z-index: 100;
  border-top: 1px solid rgba(154, 123, 95, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  color: rgba(245, 243, 240, 0.9);
  padding: 14px 12px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}

.mobile-menu a:hover {
  color: #f5f3f0;
  background: rgba(154, 123, 95, 0.15);
}

.mobile-menu .btn {
  margin-top: 8px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--bg);
  border-color: var(--accent);
  color: var(--accent);
}

.btn.small {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}

.nav-links .btn.small {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links .btn.small:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-links .btn.small.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.nav-links .btn.small.primary:hover {
  background: rgba(154, 123, 95, 0.9);
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.kicker {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pill {
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

.hero-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--line);
  border-radius: var(--r);
  pointer-events: none;
  opacity: 0.3;
}

/* =========================
   FILTERS
========================= */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg);
}

.filter-btn.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.filter-btn.is-active:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* =========================
   GALLERY
========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  opacity: 1;
  transform: scale(1);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card.hidden {
  display: none;
}

.card.fade-out {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.card-media {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: calc(var(--r) - 6px);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.card-media:hover {
  transform: scale(1.02);
}

.card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.card-cap {
  padding: 12px;
}

.cap-title {
  font-weight: 600;
}

.cap-sub {
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   ABOUT
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 4px;
}

.badge-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.badge-sub {
  font-size: 12px;
  color: var(--muted);
}

.about-copy {
  display: grid;
  gap: 24px;
}

.about-story {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

/* =========================
   BLOG POST CONTENT
========================= */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content img {
  width: 100%;
  margin-bottom: 32px;
  border-radius: var(--r);
}

.blog-post-body {
  display: grid;
  gap: 20px;
}

.blog-post-body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-points {
  display: grid;
  gap: 20px;
}

.point {
  display: grid;
  gap: 8px;
}

.point h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.point p {
  color: var(--muted);
  line-height: 1.6;
}

.quote {
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--bg);
  border-radius: 8px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

.quote-by {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
}

.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.work-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-top: 0;
}

.work-cta .micro.muted {
  margin-top: 16px;
  max-width: 500px;
  line-height: 1.6;
}

/* =========================
   PRICING
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  display: grid;
  gap: 16px;
}

.price-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.price-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  margin-top: -4px;
  margin-bottom: 4px;
}

.tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.price-card li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.price-card li strong {
  color: var(--ink);
  font-weight: 600;
}

/* =========================
   FAQ
========================= */
.faq {
  display: grid;
  gap: 24px;
}

.faq h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
  transition: all 0.2s var(--ease);
}

.faq details:hover {
  border-color: var(--accent);
}

.faq summary {
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
  user-select: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-weight: 300;
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.2s var(--ease);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 0;
}

/* =========================
   CONTACT / FORM
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 32px;
  align-content: start;
  padding: 32px;
  background: linear-gradient(
    135deg,
    rgba(253, 252, 251, 0.6) 0%,
    rgba(250, 249, 248, 0.4) 50%,
    rgba(253, 252, 251, 0.6) 100%
  );
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(154, 123, 95, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(154, 123, 95, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.contact-left > * {
  position: relative;
  z-index: 1;
}

.contact-intro {
  display: grid;
  gap: 16px;
}

.contact-intro h2 {
  margin: 0;
  margin-bottom: 4px;
}

.contact-intro .about-story {
  margin: 0;
}

.contact-reassurance {
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  margin-top: 4px;
}

.contact-details {
  display: grid;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-details h3 {
  margin: 0;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.contact-details .detail {
  gap: 6px;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.contact-secondary-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  padding: 4px 0;
}

.contact-secondary-link:hover {
  color: var(--accent);
  text-decoration: underline;
}


.detail {
  display: grid;
  gap: 6px;
}

.detail-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 16px;
  color: var(--ink);
}

.detail-value a {
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.detail-value a:hover {
  color: var(--accent);
}

.form {
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper {
  display: grid;
  gap: 0;
  align-content: start;
}

.contact-form-wrapper h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 0;
  padding: 32px;
  margin-top: 0;
}

.contact-form label {
  margin-top: 20px;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.contact-form .row:first-of-type {
  margin-top: 0;
}

.contact-form .row label {
  margin-top: 0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn.primary.full {
  margin-top: 28px;
  margin-bottom: 0;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  margin-top: 14px;
}

label.check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
}

label.check input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

label.check span {
  font-size: 13px;
  color: var(--ink);
}

/* Form spacing improvements */
/* Modal form spacing */
.modal-head {
  margin-bottom: 24px;
}

.modal-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.modal-form {
  display: grid;
  gap: 0;
}

.modal-form label.check {
  margin-top: 24px;
  margin-bottom: 0;
}

.modal-form .btn.primary.full {
  margin-top: 32px;
  margin-bottom: 0;
}

.modal-form .micro.muted:last-of-type {
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
  padding-top: 0;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font: inherit;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* =========================
   FOOTER (DARK PROFESSIONAL)
========================= */
.footer {
  background: rgba(58, 55, 50, 0.95);
  border-top: 1px solid rgba(154, 123, 95, 0.15);
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(154, 123, 95, 0.15);
}

.footer-left {
  flex: 1;
  min-width: 200px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(154, 123, 95, 0.2),
    rgba(154, 123, 95, 0.1)
  );
  border: 1px solid rgba(154, 123, 95, 0.25);
  flex-shrink: 0;
}

.footer-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #f5f3f0;
  margin-bottom: 4px;
  line-height: 1.3;
}

.footer .micro.muted {
  color: rgba(245, 243, 240, 0.75);
  font-size: 13px;
}

.footer-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.icon-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(154, 123, 95, 0.25);
  background: rgba(154, 123, 95, 0.1);
  display: grid;
  place-items: center;
  color: rgba(245, 243, 240, 0.85);
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.icon-link svg {
  width: 20px;
  height: 20px;
}

.icon-link:hover {
  border-color: rgba(154, 123, 95, 0.4);
  color: #f5f3f0;
  background: rgba(154, 123, 95, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom .micro.muted {
  color: rgba(245, 243, 240, 0.7);
  font-size: 12px;
}

/* =========================
   BACK TO TOP BUTTON
========================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(58, 55, 50, 0.95);
  border: 1px solid rgba(154, 123, 95, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f3f0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(154, 123, 95, 0.2);
  border-color: rgba(154, 123, 95, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   MODAL + LIGHTBOX
========================= */
.modal,
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 18, 0.92);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 9999;
}

.modal[hidden],
.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r);
}

.lightbox-cap {
  color: #fff;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  place-items: center;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 10000;
  user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev[style*="block"],
.lightbox-next[style*="block"] {
  display: grid !important;
}

.modal-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px;
  max-width: 600px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .gallery,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-with-bg {
    min-height: 300px;
    padding: 80px 0;
  }

  .hero-with-bg .section-head {
    max-width: 100%;
  }

  .nav-inner {
    padding: 16px 0;
    min-height: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left {
    padding: 24px;
    gap: 28px;
  }

  .contact-details {
    padding: 20px;
    gap: 18px;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form .row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .row label {
    margin-top: 20px;
  }

  .hero-cta,
  .about-cta {
    flex-direction: column;
  }

  .hero-cta .btn,
  .about-cta .btn {
    width: 100%;
  }

  .filters {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .gallery {
    gap: 16px;
    margin-bottom: 32px;
  }

  .footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
  }

  .footer-right {
    justify-content: flex-start;
  }

  .footer-bottom {
    padding-top: 20px;
    text-align: left;
  }
}
