/* Google Fonts are loaded via <link rel="stylesheet"> in each page's <head>
   (preconnect + link, not @import) for faster first paint. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #1a1a18;
  --earth:   #3b3228;
  --gold:    #b59a6a;
  --gold-lt: #d4bc94;
  --stone:   #f0ece4;
  --cream:   #faf9f6;
  --mid:     #7a7060;
  --rule:    rgba(181,154,106,0.3);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(26,26,24,0.97);
  padding: 14px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

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

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,0.6);
  z-index: 99;
}

.nav-backdrop.is-open { display: block; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

.nav-social-item { display: flex; align-items: center; }

.nav-social {
  display: flex;
  gap: 8px;
  margin-left: 4px;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(181,154,106,0.35);
  border-radius: 50%;
  color: var(--gold);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-social a:hover {
  border-color: var(--gold);
  background: rgba(181,154,106,0.1);
  color: var(--gold-lt);
}

.nav-social svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("hero-bg.jpg");
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0.5) 0%, rgba(26,26,24,0.72) 55%, rgba(26,26,24,0.94) 100%);
  z-index: 0;
}

/* Topographic line pattern — the signature element */
.hero-topo {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='300' viewBox='0 0 1600 300' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cmask id='hillcut'%3E%3Crect x='0' y='0' width='1600' height='300' fill='white'/%3E%3Cpath d='M0,265 Q140,215 280,255 Q420,290 560,240 Q700,195 840,235 Q980,290 1120,225 Q1260,185 1400,235 Q1520,260 1600,240 L1600,300 L0,300 Z' fill='black'/%3E%3C/mask%3E%3ClinearGradient id='hillGrad' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23d4bc94' stop-opacity='0.06'/%3E%3Cstop offset='45%25' stop-color='%23d4bc94' stop-opacity='0.22'/%3E%3Cstop offset='100%25' stop-color='%23a68a5e' stop-opacity='0.35'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg mask='url(%23hillcut)'%3E%3Cpath d='M0,235 Q130,265 260,230 Q390,195 520,235 Q650,270 780,225 Q910,190 1040,230 Q1170,265 1300,220 Q1430,190 1600,235 L1600,300 L0,300 Z' fill='%238a7454' fill-opacity='0.18'/%3E%3C/g%3E%3Cpath d='M0,265 Q140,215 280,255 Q420,290 560,240 Q700,195 840,235 Q980,290 1120,225 Q1260,185 1400,235 Q1520,260 1600,240 L1600,300 L0,300 Z' fill='url(%23hillGrad)' stroke='%23d4bc94' stroke-opacity='0.25' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 1600px 60vh;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.hero-glow {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(181,154,106,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250,249,246,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--gold-lt);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  color: rgba(250,249,246,0.7);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 60px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250,249,246,0.35);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(181,154,106,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── SECTION BASE ── */
section { padding: 100px 60px; }

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
}

/* ── WHY ── */
.why {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 420px;
}

/* ── PHOTO PLACEHOLDERS ── */
.photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border: 1.5px dashed rgba(181,154,106,0.5);
  background:
    repeating-linear-gradient(135deg, rgba(181,154,106,0.05) 0px, rgba(181,154,106,0.05) 1px, transparent 1px, transparent 14px),
    var(--stone);
  color: var(--earth);
  padding: 24px;
}

.why-visual .photo-slot {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(181,154,106,0.08) 0px, rgba(181,154,106,0.08) 1px, transparent 1px, transparent 14px),
    var(--ink);
  border-color: rgba(181,154,106,0.35);
  color: rgba(250,249,246,0.55);
}

.photo-slot-icon { opacity: 0.7; }

.photo-slot-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  max-width: 240px;
}

.photo-slot-dim {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}

.photo-slot.has-photo {
  padding: 0;
  border: none;
  background: none;
  overflow: hidden;
}

.photo-slot.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait-slot.has-photo img {
  border-radius: 50%;
}

.gallery {
  background: var(--stone);
}

/* ── FAQ ── */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}

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

.faq-item summary span:first-child { padding-right: 12px; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--cream);
}

.faq-item p {
  padding: 0 4px 28px;
  max-width: 620px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
}

.faq-item summary:hover span:first-child { color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }

.gallery-grid .photo-slot { height: 280px; }

.photo-band {
  height: 340px;
  margin: 0;
  padding: 0 !important;
}
.photo-band .photo-slot { height: 100%; border-left: none; border-right: none; }

.portrait-slot {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  flex-shrink: 0;
}
.portrait-slot .photo-slot-label { font-size: 11px; max-width: 110px; }

.why-card {
  position: absolute;

  background: rgba(26,26,24,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cream);
  padding: 30px;
  border: 1px solid rgba(250,249,246,0.15);
}

.why-card-main {
  width: 60%;
  top: 0; left: 0;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-card-accent {
  width: 40%;
  bottom: 0; right: 0;
  background: rgba(212,188,148,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 22px;
  color: var(--ink);
  border: 1px solid rgba(26,26,24,0.15);
}

.why-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}

.why-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.85);
  margin-top: 4px;
}

.why-stat-text { font-size: 34px; font-style: italic; }
.why-card-accent .why-stat { color: var(--ink); font-size: 32px; }
.why-card-accent .why-stat-label { color: rgba(26,26,24,0.7); }

.why-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(250,249,246,0.9);
  line-height: 1.5;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-point-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.why-point-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* ── SERVICES ── */
.services {
  background: var(--ink);
  color: var(--cream);
}

.services .section-title { color: var(--cream); }

.base-price {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid var(--gold);
  background: var(--cream);
}

.base-price-figure {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.base-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.base-price-period {
  font-size: 12px;
  color: var(--mid);
}

.base-price-text {
  flex: 1;
  min-width: 220px;
}

.base-price-text strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.base-price-text p {
  font-size: 13px;
  color: var(--earth);
  line-height: 1.6;
}

.base-price-note {
  flex-basis: 100%;
  font-size: 11px;
  font-style: italic;
  color: var(--mid);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 4px;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--stone);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.how-step { position: relative; padding-top: 8px; }

.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.how-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

.how-note {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #ddd8ce;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--earth);
}

.services .section-lead { color: rgba(250,249,246,0.55); }

.services-groups { display: flex; flex-direction: column; }
.service-group { margin-top: 60px; }
.service-group:first-child { margin-top: 60px; }

.service-group-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 0;
}

.service-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
}

.service-group-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.service-group-rule { flex: 1; height: 1px; background: rgba(212,188,148,0.25); }

.service-group-note {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(250,249,246,0.5);
}

.service-group-note-lead {
  margin-top: 10px;
  font-size: 21px;
  color: var(--gold);
}

.service-group-note-inline {
  grid-column: span 2;
  margin-top: 0;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-group-note-inline { grid-column: span 2; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.service-item {
  background: var(--ink);
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s;
}

.service-item:hover { background: #222220; }

.service-icon {
  display: flex;
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: rgba(250,249,246,0.5);
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--rule);
  padding: 3px 10px;
}

/* ── PLANS ── */
.plans-section {
  background: var(--stone);
}

.plans-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--cream);
  border: 1px solid #ddd8ce;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.plan-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.plan-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -1px; left: 32px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 14px;
}

.plan-tier {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.plan-card.featured .plan-name { color: var(--cream); }

.plan-price-row {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #ddd8ce;
  border-bottom: 1px solid #ddd8ce;
}

.plan-card.featured .plan-price-row {
  border-color: rgba(181,154,106,0.2);
}

.plan-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.plan-card.featured .plan-amount { color: var(--cream); }

.plan-period {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
}

.plan-card.featured .plan-period { color: rgba(250,249,246,0.45); }

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 13px;
  color: var(--earth);
  padding: 9px 0 9px 20px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.4;
}

.plan-card.featured .plan-features li { color: rgba(250,249,246,0.7); border-color: rgba(255,255,255,0.06); }

.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}

.plan-cta:hover { background: var(--ink); color: var(--cream); }

.plan-card.featured .plan-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.plan-card.featured .plan-cta:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

/* ── EXPERIENCES ── */
.experiences {
  background: var(--cream);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: transparent;
  margin-top: 60px;
}

.exp-card {
  background: var(--cream);
  border: 1px solid #e0dbd2;
  padding: 44px 40px;
  text-align: left;
  transition: background 0.25s;
}

.exp-card-wide { grid-column: 1 / -1; }
.exp-card-wide .exp-desc { max-width: 620px; }

.exp-card:hover {
  background: #f5f1e9;
}

.exp-icon { display: flex; justify-content: flex-start; margin-bottom: 20px; }

.exp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.exp-vignette {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 12px;
}

.exp-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 340px;
}

.exp-note {
  display: inline-block;
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CONTACT ── */
.contact {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact .section-title { color: var(--cream); }
.contact .section-lead { color: rgba(250,249,246,0.5); margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(181,154,106,0.15);
}

.contact-item:last-child { border-bottom: none; }

.contact-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(181,154,106,0.2);
  color: var(--cream);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: var(--ink); }

.form-submit {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--gold-lt); }

.form-privacy {
  margin-top: 14px;
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--mid);
}

/* ── SKIP LINK (accessibility + SEO) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Contact value links */
a.contact-value {
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #111110;
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.footer-copy {
  font-size: 11px;
  color: rgba(250,249,246,0.25);
}

.footer-area {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.25);
}

/* ── MOTION SYSTEM ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 999;
}

.nav-links a.active { color: var(--gold); }

@media (prefers-reduced-motion: no-preference) {

  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-scroll {
    opacity: 0;
    animation: heroRise 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  .hero-eyebrow { animation-delay: .05s; }
  .hero-title   { animation-delay: .2s; }
  .hero-sub     { animation-delay: .45s; }
  .hero-actions { animation-delay: .65s; }
  .hero-scroll  { animation-delay: 1.05s; }

  @keyframes heroRise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  .hero-topo { transition: transform 0.05s linear; }

  .btn-primary, .form-submit { transition: background 0.2s, transform 0.35s cubic-bezier(0.16,1,0.3,1); }
  .nav-cta { transition: background 0.2s, color 0.2s, transform 0.35s cubic-bezier(0.16,1,0.3,1) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-scroll, .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.form-submit.is-sending { opacity: 0.7; cursor: default; }
.form-submit.is-sent {
  background: #6f9b76;
  color: var(--cream);
  cursor: default;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(78vw, 320px);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.35);
    z-index: 100;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 13px; }
  section { padding: 70px 24px; }
  .hero-content { padding: 0 24px; }
  .hero-scroll { left: 24px; }
  .why { grid-template-columns: 1fr; }
  .why-visual {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .why-visual .photo-slot { position: static; height: 220px; }
  .why-card {
    position: static;
    width: 100%;
    height: auto;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .base-price { padding: 22px 20px; gap: 20px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plans-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .exp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .page-hero { min-height: 40vh; padding: 130px 24px 50px; }
  .about-intro { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .contact-map { height: 260px; }
}

/* ══════════════════════════════════════════════════════════
   ADDED FOR MULTI-PAGE RESTRUCTURE (Services / Areas / About / Contact)
   ══════════════════════════════════════════════════════════ */

/* ── PAGE HERO (shorter banner used on every interior page) ── */
.page-hero {
  min-height: 46vh;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 160px 60px 64px;
}

.page-hero .hero-overlay,
.page-hero .hero-topo,
.page-hero .hero-glow { position: absolute; inset: 0; z-index: 0; }

.page-hero .hero-topo { opacity: 0.9; }

.page-hero-content { position: relative; z-index: 2; max-width: 720px; }

.page-hero .hero-eyebrow { margin-bottom: 18px; }

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 18px;
}

.page-hero-lead {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250,249,246,0.62);
  max-width: 520px;
  line-height: 1.75;
}

.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.4);
  margin-bottom: 22px;
}

.breadcrumb a { color: rgba(250,249,246,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ── TAGLINE LOCKUP (used in hero + footer) ── */
.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
}

/* ── HOME: SERVICE-GROUP TEASERS ── */
.teasers { background: var(--stone); }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd8ce;
  border: 1px solid #ddd8ce;
  margin-top: 56px;
}

.teaser-card {
  background: var(--cream);
  padding: 44px 36px;
  text-decoration: none;
  display: block;
  transition: background 0.25s;
}

.teaser-card:hover { background: var(--white); }

.teaser-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.teaser-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.teaser-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.teaser-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.teaser-card:hover .teaser-link { color: var(--gold); }

/* ── HOME: SECONDARY LINK CARDS (Areas / About) ── */
.link-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.link-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.link-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.link-card:hover img { transform: scale(1.04); }

.link-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0.1) 0%, rgba(26,26,24,0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.link-card-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.link-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
}

/* ── SERVICES PAGE: what's included clarifier ── */
.included-box {
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid rgba(181,154,106,0.35);
}

.included-box-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.included-box h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.included-box ul { list-style: none; }

.included-box li {
  font-size: 13px;
  color: var(--earth);
  padding: 7px 0 7px 18px;
  position: relative;
  line-height: 1.5;
}

.included-box li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.included-box li.not-included { color: var(--mid); }

.hourly-rates {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.hourly-rate strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
}

.hourly-rate span {
  font-size: 12px;
  color: var(--mid);
}

/* ── AREAS WE SERVE ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: transparent;
  margin-top: 56px;
}

.area-card {
  background: var(--cream);
  border: 1px solid #e0dbd2;
  padding: 36px 32px;
}

.area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.area-zone {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.area-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.areas-note {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #ddd8ce;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--earth);
  max-width: 640px;
}

@media (min-width: 769px) {
  .areas-note { max-width: none; white-space: nowrap; }
}

/* ── ABOUT ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}

.about-intro .photo-slot { height: 480px; }

.about-copy p {
  font-size: 14px;
  color: var(--earth);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-copy p:last-child { margin-bottom: 0; }

.trust {
  background: var(--stone);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #ddd8ce;
  border: 1px solid #ddd8ce;
  margin-top: 56px;
}

.trust-item {
  background: var(--cream);
  padding: 34px 36px;
}

.trust-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.trust-item p.pending {
  font-style: italic;
  color: #a89a80;
  margin-top: 8px;
  font-size: 12px;
}

/* ── CONTACT PAGE ── */
.contact-map {
  width: 100%;
  height: 340px;
  border: 1px solid rgba(181,154,106,0.2);
  filter: grayscale(0.3) contrast(1.05);
}

.contact-page-note {
  margin-top: 28px;
  font-size: 12px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 460px;
}
