/* ════════════════════════════════════════════════════════════════
   FIND A LAND — EDITORIAL · SHARED STYLES
   Used across Home, About, Services, Pricing, Contact
   ════════════════════════════════════════════════════════════════ */

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

:root {
  --paper:       #F4EFE6;
  --paper-soft:  #EDE6D8;
  --paper-deep:  #E2D9C5;
  --ink:         #14302A;
  --ink-soft:    #1E3A2F;
  --ink-mid:     #2D5240;
  --bark:        #5A4D3C;
  --stone:       #B7AB94;
  --clay:        #9C8B6E;
  --accent:      #B16A2E;
  --accent-soft: #C88654;
  --rule:        rgba(20, 48, 42, 0.14);
  --rule-soft:   rgba(20, 48, 42, 0.07);
  --max:         1320px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 56px; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-block;
}
.label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--ink); }
h2 { font-size: clamp(36px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -0.005em; }
h2 em { font-style: italic; color: var(--ink-mid); }
.lede { font-size: 17px; color: var(--bark); max-width: 540px; line-height: 1.65; }

/* ─────────── NAV ─────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-logo .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links { display: flex; gap: 36px; list-style: none; justify-content: center; }
.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover, .nav-links a.current { color: var(--accent); }
.nav-links a.current::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
}

.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.lang-toggle button {
  padding: 7px 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink-mid);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: inherit;
  transition: all 0.25s;
}
.lang-toggle button.active { background: var(--ink); color: var(--paper); }

.nav-cta {
  padding: 9px 18px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--accent); }

/* ─────────── BUTTONS ─────────── */
.btn-primary {
  padding: 16px 32px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-primary svg { width: 14px; height: 14px; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-text {
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--ink-mid);
  padding-bottom: 4px;
  transition: all 0.25s;
}
.btn-text:hover { color: var(--accent); border-bottom-color: var(--accent); }

.btn-accent {
  padding: 16px 36px;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-accent:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn-accent svg { width: 14px; height: 14px; }

.btn-ghost {
  padding: 16px 36px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  color: rgba(244, 239, 230, 0.92);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.25s;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-ghost:hover { border-color: var(--paper); color: var(--paper); }

/* ─────────── PAGE HEADER (interior pages) ─────────── */
.page-head {
  padding: 200px 0 100px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.page-head .wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: end; }
.page-head h1 {
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 8px;
  font-weight: 400;
}
.page-head h1 em { font-style: italic; color: var(--ink-mid); font-weight: 300; }
.page-head .lede { max-width: 460px; }

.crumb {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--clay);
  margin-bottom: 12px;
}
.crumb a { color: var(--clay); text-decoration: none; }
.crumb a:hover { color: var(--accent); }

/* ─────────── TRUST MARQUEE ─────────── */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.trust-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  padding-left: 80px;
}
.trust-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(244, 239, 230, 0.55);
}
.trust-track span::after {
  content: "✦";
  margin-left: 80px;
  font-size: 14px;
  color: var(--accent);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────── CTA ─────────── */
.cta-band {
  padding: 90px 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(177, 106, 46, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-band .label { color: var(--accent-soft); position: relative; }
.cta-band h2 { color: var(--paper); max-width: 760px; margin: 0 auto 24px; position: relative; }
.cta-band .cta-sub { color: rgba(244, 239, 230, 0.65); margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; position: relative; }
.cta-band .cta-contacts {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 56px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  margin: 0 auto;
  max-width: 600px;
  flex-wrap: wrap;
}
.cta-band .cta-contacts a {
  color: rgba(244, 239, 230, 0.85);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-band .cta-contacts a:hover { color: var(--paper); }
.cta-band .cta-contacts svg { width: 14px; height: 14px; opacity: 0.6; }

/* ─────────── FOOTER ─────────── */
footer.site-foot { background: #0E2520; color: rgba(244, 239, 230, 0.6); padding: 56px 0 32px; }
footer.site-foot .wrap { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 56px; }
.foot-brand img { height: 44px; margin-bottom: 18px; }
.foot-brand p { font-size: 13px; line-height: 1.65; max-width: 280px; }
.foot-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col a, .foot-col p { display: block; font-size: 13px; color: rgba(244, 239, 230, 0.6); text-decoration: none; padding: 5px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--paper); }

.foot-bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 24px 56px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11px;
  color: rgba(244, 239, 230, 0.4);
  letter-spacing: 0.04em;
}

/* ─────────── REVEAL ─────────── */
.r { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.r.v { opacity: 1; transform: none; }

/* ─────────── RESPONSIVE ─────────── */
.nav-burger { display: none; }
.nav-drawer { display: none; }

@media (max-width: 980px) {
  .nav-inner { grid-template-columns: 1fr auto; padding: 14px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav-logo .wordmark { display: none; }
  .nav-right { gap: 10px; }
  .nav-right .nav-cta { display: none; }

  /* HAMBURGER */
  .nav-burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; padding: 0;
    background: transparent; border: 1px solid var(--rule);
    cursor: pointer; transition: background 0.2s;
  }
  .nav-burger span {
    display: block; width: 18px; height: 1.5px; background: var(--ink);
    margin: 0 auto; transition: transform 0.25s, opacity 0.25s;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* DRAWER */
  .nav-drawer {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 8px 24px 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 99;
    box-shadow: 0 12px 30px -16px rgba(20,30,28,0.18);
  }
  .nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-drawer a {
    padding: 18px 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400;
    color: var(--ink); text-decoration: none;
    border-bottom: 1px solid var(--rule-soft);
    transition: color 0.2s, padding-left 0.2s;
  }
  .nav-drawer a:last-child { border-bottom: none; }
  .nav-drawer a:hover, .nav-drawer a.current { color: var(--accent); padding-left: 8px; }
  body.nav-open { overflow: hidden; }

  .wrap { padding: 0 24px; }
  .page-head { padding: 140px 0 70px; }
  .page-head .wrap { grid-template-columns: 1fr; gap: 32px; }
  footer.site-foot .wrap { grid-template-columns: 1fr 1fr; }
  .foot-bottom { padding: 24px 24px 0; }
  .cta-band { padding: 70px 0; }
}


/* ════════════════════════ PAGE SECTIONS — scroll spy + smooth scroll ════════════════════════ */
.page-section { scroll-margin-top: 64px; }

/* ════════════════════════ HOME ════════════════════════ */
/* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    padding-top: 90px;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--ink);
  }
  .hero-text {
    position: relative; z-index: 1;
    padding: 80px 80px 80px;
    max-width: 900px;
    align-self: center;
    color: var(--paper);
  }
  .hero-eyebrow {
    font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--paper); opacity: 0.92; font-weight: 500; margin-bottom: 28px;
    display: flex; align-items: center; gap: 14px;
  }
  .hero-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--paper); opacity: 0.7; }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: clamp(54px, 6.6vw, 96px); line-height: 1.02;
    letter-spacing: -0.01em; color: var(--paper); margin-bottom: 36px;
  }
  .hero h1 em { font-style: italic; font-weight: 300; color: rgba(244,239,230,0.78); }
  .hero-sub { font-size: 17px; line-height: 1.65; color: rgba(244,239,230,0.88); max-width: 540px; margin-bottom: 44px; }
  .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .hero-actions .btn-primary { background: var(--paper); color: var(--ink); }
  .hero-actions .btn-primary:hover { background: var(--accent); color: var(--paper); }
  .hero-actions .btn-text { color: var(--paper); border-bottom-color: rgba(244,239,230,0.55); }
  .hero-actions .btn-text:hover { color: var(--paper); border-bottom-color: var(--paper); }
  .hero-meta { display: flex; gap: 56px; margin-top: 80px; padding-top: 36px; border-top: 1px solid rgba(244,239,230,0.22); flex-wrap: wrap; }
  .hero-meta div { flex: 0 0 auto; }
  .hero-meta .num { font-family: 'Cormorant Garamond', serif; font-size: 38px; line-height: 1; color: var(--paper); }
  .hero-meta .lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,230,0.72); margin-top: 8px; font-weight: 500; }
  .hero-image { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
  .hero-image::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg,
      rgba(20,30,28,0.78) 0%,
      rgba(20,30,28,0.55) 45%,
      rgba(20,30,28,0.25) 75%,
      rgba(20,30,28,0.35) 100%);
    pointer-events: none;
  }
  .hero-image-caption {
    position: absolute; bottom: 28px; right: 36px; z-index: 2;
    color: rgba(244,239,230,0.85); display: flex; gap: 18px; align-items: baseline;
  }
  .hero-image-caption .place { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; }
  .hero-image-caption .meta { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; }

  /* ─── VIDEO ─── */
  .video-section { padding: 80px 0; background: var(--paper-soft); }
  .video-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
  .video-head .lede { margin: 24px auto 0; }
  .video-frame {
    max-width: 1100px; margin: 0 auto; padding: 0 56px;
  }
  .video-wrap {
    position: relative; aspect-ratio: 16/9;
    background: var(--ink);
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(20,48,42,0.35);
    border: 1px solid var(--rule);
  }
  .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

  /* ─── HIGHLIGHTS ─── */
  .highlights { padding: 90px 0; background: var(--paper); }
  .highlights-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .highlights-head .lede { margin: 24px auto 0; }
  .highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
  .h-card { background: var(--paper); padding: 48px 40px; transition: background 0.3s; }
  .h-card:hover { background: var(--paper-soft); }
  .h-card .num {
    font-family: 'Cormorant Garamond', serif; font-size: 14px;
    letter-spacing: 0.18em; color: var(--accent); margin-bottom: 22px; font-style: italic;
  }
  .h-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400;
    color: var(--ink); margin-bottom: 14px; line-height: 1.15;
  }
  .h-card p { font-size: 14.5px; color: var(--bark); line-height: 1.65; }
  .highlights-cta { text-align: center; margin-top: 40px; }

  @media (max-width: 980px) {
    .hero { align-items: start; }
    .hero-text { padding: 72px 24px 50px; max-width: none; align-self: start; }
    .hero-image img { object-position: center 60%; }
    .hero-image::after {
      background: linear-gradient(180deg,
        rgba(20,30,28,0.55) 0%,
        rgba(20,30,28,0.40) 35%,
        rgba(20,30,28,0.70) 100%);
    }
    .hero-image-caption { display: none; }
    .hero-meta { gap: 32px; margin-top: 56px; padding-top: 28px; }
    .video-frame { padding: 0 24px; }
    .highlights-grid { grid-template-columns: 1fr; }
    .video-section, .highlights { padding: 60px 0; }
  }

/* ════════════════════════ ABOUT ════════════════════════ */
/* About body */
  .about-body { padding: 90px 0 90px; background: var(--paper); }
  .about-body .wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
  }
  .about-img-stack { position: relative; }
  .about-img-stack .main { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
  .about-img-stack .ticket {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--paper-deep); padding: 22px 28px; min-width: 240px;
    border-left: 2px solid var(--accent);
  }
  .about-img-stack .ticket .v {
    font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--ink); line-height: 1.35; font-style: italic;
  }
  .about-img-stack .ticket .v + .v { margin-top: 4px; }
  .about-text h2 { margin-bottom: 28px; }
  .about-text p { color: var(--bark); margin-bottom: 18px; max-width: 540px; font-size: 16px; line-height: 1.75; }
  .about-text p strong { color: var(--ink); font-weight: 500; }
  .signatures { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule); display: flex; gap: 48px; flex-wrap: wrap; }
  .signature .name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ink); font-weight: 500; }
  .signature .role { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin-top: 4px; font-weight: 500; }

  /* Philosophy */
  .philosophy { background: var(--paper-soft); padding: 90px 0; border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
  .philosophy .wrap { text-align: center; max-width: 980px; }
  .philosophy .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300; line-height: 1.18;
    color: var(--ink); letter-spacing: -0.005em;
  }
  .philosophy .quote em { font-style: italic; color: var(--accent); }
  .philosophy .attrib {
    margin-top: 36px; font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--clay); font-weight: 500;
  }

  /* Problem */
  .problem { padding: 90px 0; background: var(--paper); }
  .problem-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 56px; align-items: end; }
  .problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
  .problem-card { background: var(--paper); padding: 40px 36px; transition: background 0.3s; }
  .problem-card:hover { background: var(--paper-soft); }
  .problem-card .num {
    font-family: 'Cormorant Garamond', serif; font-size: 14px;
    letter-spacing: 0.18em; color: var(--accent); margin-bottom: 18px; font-style: italic;
  }
  .problem-card h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 26px;
    font-weight: 400; color: var(--ink); margin-bottom: 12px; line-height: 1.2;
  }
  .problem-card p { font-size: 14.5px; color: var(--bark); line-height: 1.65; }

  @media (max-width: 980px) {
    .about-body .wrap, .problem-head { grid-template-columns: 1fr; gap: 48px; }
    .about-img-stack .ticket { right: 20px; bottom: -20px; }
    .problem-grid { grid-template-columns: 1fr; }
    .about-body, .problem, .philosophy { padding: 60px 0; }
  }

/* ════════════════════════ SERVICES ════════════════════════ */
/* ─── BANNER HERO with text overlay ─── */
  .banner-hero {
    margin-top: 0;
    width: 100%;
    min-height: clamp(420px, 64vh, 620px);
    position: relative;
    isolation: isolate;
    background: var(--ink);
    display: grid;
    align-items: end;
    overflow: hidden;
    padding-top: 90px;
  }
  .banner-hero img {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
    display: block;
  }
  .banner-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
      rgba(20,30,28,0.25) 0%,
      rgba(20,30,28,0.15) 35%,
      rgba(20,30,28,0.72) 100%);
    pointer-events: none;
  }
  .banner-hero .wrap {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
    align-items: end;
    padding-top: 80px; padding-bottom: 70px;
    color: var(--paper);
  }
  .banner-hero .crumb { color: rgba(244,239,230,0.72); margin-bottom: 18px; }
  .banner-hero .crumb a { color: rgba(244,239,230,0.92); }
  .banner-hero h1 {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: clamp(44px, 5.6vw, 84px); line-height: 1.02;
    letter-spacing: -0.01em; color: var(--paper);
  }
  .banner-hero h1 em { font-style: italic; font-weight: 300; color: rgba(244,239,230,0.82); }
  .banner-hero .lede {
    font-size: 17px; line-height: 1.65; color: rgba(244,239,230,0.92);
    max-width: 520px;
  }

  /* ─── SERVICES ─── */
  .services { padding: 80px 0 90px; background: var(--paper-soft); }
  .services-titles {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    max-width: 1100px; margin: 0 auto 48px;
  }
  .title-card {
    background: var(--paper); padding: 40px 44px; border: 1px solid var(--rule);
    position: relative; overflow: hidden; transition: transform 0.4s, border-color 0.4s;
  }
  .title-card:hover { transform: translateY(-3px); border-color: var(--accent); }
  .title-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--ink); }
  .title-card.featured::before { background: var(--accent); }
  .title-card .kicker { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 14px; }
  .title-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 400; color: var(--ink); line-height: 1.02; }
  .services-desc {
    max-width: 920px; margin: 0 auto;
    font-size: 18px; line-height: 1.7; color: var(--bark);
    text-align: center;
  }
  .services-desc strong { color: var(--ink); font-weight: 500; }

  @media (max-width: 760px) {
    .services-titles { grid-template-columns: 1fr; gap: 16px; }
    .title-card { padding: 32px 28px; }
    .title-card h3 { font-size: 36px; }
    .services-desc { font-size: 16px; text-align: left; }
  }

  /* ─── PROCESS ─── */
  .process { padding: 90px 0; background: var(--ink); color: var(--paper); }
  .process .label { color: var(--accent-soft); }
  .process h2 { color: var(--paper); }
  .process .lede { color: rgba(244, 239, 230, 0.65); }
  .process-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 80px; align-items: end; }
  .process-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(244, 239, 230, 0.1); border: 1px solid rgba(244, 239, 230, 0.1); }
  .step { background: var(--ink); padding: 44px 36px; transition: background 0.3s; }
  .step:hover { background: #102621; }
  .step .num { font-family: 'Cormorant Garamond', serif; font-size: 80px; line-height: 1; color: rgba(244, 239, 230, 0.12); margin-bottom: 24px; font-weight: 300; }
  .step h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--paper); margin-bottom: 10px; }
  .step p { font-size: 14px; color: rgba(244, 239, 230, 0.65); line-height: 1.65; }

  /* ─── DETAILED COMPARISON TABLE ─── */
  .compare { padding: 90px 0; background: var(--paper); }
  .compare-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 48px; align-items: end; }
  .table-wrap { overflow-x: auto; border: 1px solid var(--rule); background: var(--paper); }
  table.process-table { width: 100%; border-collapse: collapse; font-size: 14px; }
  table.process-table thead th {
    background: var(--ink); color: var(--paper);
    padding: 24px 22px; text-align: left;
    font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 22px;
    border-bottom: 2px solid var(--accent);
  }
  table.process-table thead th:first-child {
    font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
    font-family: 'Inter', sans-serif; font-weight: 500; color: var(--accent-soft);
  }
  table.process-table thead th:not(:first-child) { text-align: center; }
  table.process-table thead th .price {
    display: block; margin-top: 14px; padding-top: 12px;
    border-top: 1px solid rgba(244,239,230,0.18);
    font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 26px;
    color: var(--paper); line-height: 1.2;
  }
  table.process-table thead th .price .vat {
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
    letter-spacing: 0.04em; color: var(--accent-soft); margin-left: 6px; vertical-align: baseline;
  }
  table.process-table thead th .price .alt {
    display: block; margin-top: 6px;
    font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 26px;
    color: var(--paper); line-height: 1.2;
  }
  table.process-table thead th .price .alt em {
    font-family: 'Inter', sans-serif; font-style: normal; font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; color: rgba(244,239,230,0.72); margin-right: 6px; text-transform: uppercase;
  }
  table.process-table tbody td {
    padding: 16px 22px;
    border-top: 1px solid var(--rule-soft);
    color: var(--bark); vertical-align: middle;
    line-height: 1.5;
  }
  table.process-table tbody td:first-child { color: var(--ink); font-weight: 400; font-size: 14px; }
  table.process-table tbody td:not(:first-child) { text-align: center; font-weight: 500; color: var(--ink-mid); width: 22%; }
  table.process-table tbody tr:nth-child(even) td { background: var(--paper-soft); }
  table.process-table tbody td .mark { color: var(--accent); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 30px; font-weight: 600; line-height: 1; }
  table.process-table tbody tr.addon td:first-child {
    color: var(--ink-mid); font-weight: 400; font-family: 'Cormorant Garamond', serif; font-size: 17px;
    font-style: italic; letter-spacing: 0;
  }
  table.process-table tbody tr.addon td:first-child::before {
    content: "— "; color: var(--accent); font-weight: 600; font-style: normal;
  }
  table.process-table tbody tr.addon td { background: #EDE3D2 !important; border-top: 1px solid var(--rule); }
  /* fine-print block beneath the table */
  .table-note {
    margin-top: 36px; padding: 32px 36px;
    background: var(--paper-soft); border-left: 3px solid var(--accent);
    font-size: 15.5px; line-height: 1.75; color: var(--ink-mid);
  }
  .table-note p { margin: 0; }
  .table-note p + p { margin-top: 14px; }
  .table-note strong { color: var(--ink); font-weight: 500; }
  .table-footnote {
    margin-top: 22px; font-size: 15px; color: var(--ink-mid); line-height: 1.65;
    font-family: 'Inter', sans-serif; font-weight: 400;
  }
  .table-footnote + .table-footnote { margin-top: 8px; }
  .table-footnote .num { color: var(--accent); font-weight: 500; margin-right: 4px; }
  /* note overlaid on banner image */
  .note-banner {
    margin: 56px 0 0; padding: 0;
    position: relative; isolation: isolate;
    width: 100%; min-height: clamp(420px, 50vw, 620px);
    overflow: hidden; background: var(--ink);
    display: grid; align-items: center;
  }
  .note-banner img {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
    display: block;
  }
  .note-banner::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg,
      rgba(20,30,28,0.82) 0%,
      rgba(20,30,28,0.65) 55%,
      rgba(20,30,28,0.35) 100%);
    pointer-events: none;
  }
  .note-banner .table-note {
    position: relative; z-index: 2;
    background: transparent; border-left: 3px solid var(--accent);
    padding: 56px 56px 56px 40px;
    max-width: 760px; margin: 60px;
    color: rgba(244,239,230,0.92);
    font-size: 16px; line-height: 1.75;
  }
  .note-banner .table-note strong { color: var(--paper); }
  @media (max-width: 760px) {
    .note-banner .table-note { margin: 24px; padding: 32px 24px 32px 22px; font-size: 15px; }
    .note-banner::after { background: linear-gradient(180deg, rgba(20,30,28,0.55) 0%, rgba(20,30,28,0.80) 100%); }
  }

  /* ─── NETWORK ─── */
  .network { padding: 90px 0; background: var(--paper-soft); }
  .network-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 48px; align-items: end; }
  .network-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
  .network-item { background: var(--paper); padding: 36px 28px; transition: background 0.3s; }
  .network-item:hover { background: var(--paper-soft); }
  .network-item .num { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: var(--accent); margin-bottom: 14px; }
  .network-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
  .network-item p { font-size: 13px; color: var(--bark); line-height: 1.55; }

  @media (max-width: 980px) {
    .services-grid, .process-head, .network-head, .compare-head { grid-template-columns: 1fr; gap: 48px; }
    .banner-hero .wrap { grid-template-columns: 1fr; gap: 24px; padding-top: 60px; padding-bottom: 50px; }
    .banner-hero { min-height: 480px; }
    .process-rail, .network-grid { grid-template-columns: 1fr; }
    .services, .process, .network, .compare { padding: 60px 0; }
    table.process-table { font-size: 13px; }
    table.process-table tbody td { padding: 12px 14px; }
    table.process-table thead th { padding: 16px 14px; }
  }

/* ════════════════════════ CONTACT ════════════════════════ */
/* ─── BANNER HERO with overlaid title ─── */
  .banner-hero {
    width: 100%;
    min-height: clamp(420px, 64vh, 620px);
    position: relative;
    isolation: isolate;
    background: var(--ink);
    display: grid;
    align-items: end;
    overflow: hidden;
    padding-top: 90px;
  }
  .banner-hero img {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
    display: block;
  }
  .banner-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
      rgba(20,30,28,0.25) 0%,
      rgba(20,30,28,0.15) 35%,
      rgba(20,30,28,0.72) 100%);
    pointer-events: none;
  }
  .banner-hero .wrap {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
    align-items: end;
    padding-top: 80px; padding-bottom: 70px;
    color: var(--paper);
  }
  .banner-hero .crumb { color: rgba(244,239,230,0.72); margin-bottom: 18px; }
  .banner-hero .crumb a { color: rgba(244,239,230,0.92); }
  .banner-hero h1 {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: clamp(44px, 5.6vw, 84px); line-height: 1.02;
    letter-spacing: -0.01em; color: var(--paper);
  }
  .banner-hero h1 em { font-style: italic; font-weight: 300; color: rgba(244,239,230,0.82); }
  .banner-hero .lede {
    font-size: 17px; line-height: 1.65; color: rgba(244,239,230,0.92);
    max-width: 520px;
  }

  .contact-body { padding: 100px 0 140px; background: var(--paper); }
  .contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }

  /* FORM */
  .contact-form { background: var(--paper-soft); padding: 56px 48px; border: 1px solid var(--rule); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
  .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
  .field-row .field { margin-bottom: 0; }
  .field label {
    font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--clay); font-weight: 500;
  }
  .field input, .field select, .field textarea {
    background: var(--paper); border: 1px solid var(--rule);
    padding: 14px 16px; font-family: 'Inter', sans-serif; font-size: 15px;
    color: var(--ink); font-weight: 300; transition: border-color 0.2s, background 0.2s;
    width: 100%; border-radius: 0;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); background: #fff;
  }
  .field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
  .field select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23B16A2E' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat; background-position: right 16px center;
    padding-right: 40px;
  }
  .form-foot {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    margin-top: 8px; flex-wrap: wrap;
  }
  .form-foot .note {
    font-size: 12px; color: var(--clay); font-style: italic;
    font-family: 'Cormorant Garamond', serif; font-size: 14.5px;
  }

  /* APPOINTMENT NOTICE */
  .appointment-notice {
    margin-top: 28px;
    padding: 22px 24px;
    background: var(--ink); color: var(--paper);
    border-left: 3px solid var(--accent);
    display: flex; gap: 16px; align-items: center;
  }
  .appointment-notice .ico {
    width: 36px; height: 36px; flex-shrink: 0;
    color: var(--accent);
  }
  .appointment-notice .txt .k {
    font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--accent-soft); font-weight: 500; margin-bottom: 6px;
  }
  .appointment-notice .txt .v {
    font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.3; font-weight: 400;
  }
  .appointment-notice .txt .v em { font-style: italic; color: var(--accent-soft); }

  /* DIRECT */
  .direct-block { padding: 16px 0; }
  .direct-block h2 { margin-bottom: 16px; font-size: clamp(32px, 3.2vw, 44px); }
  .direct-block .lede { margin-bottom: 40px; }
  .direct-list { list-style: none; padding: 0; margin: 0 0 40px; }
  .direct-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid var(--rule);
    align-items: baseline;
  }
  .direct-list li:last-child { border-bottom: 1px solid var(--rule); }
  .direct-list .ico {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent);
  }
  .direct-list .ico svg { width: 18px; height: 18px; }
  .direct-list .meta-k {
    font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--clay); font-weight: 500; margin-bottom: 6px;
  }
  .direct-list .meta-v { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--ink); line-height: 1.35; }
  .direct-list .meta-v a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
  .direct-list .meta-v a:hover { color: var(--accent); }

  /* MAP */
  .map-section { padding: 0 0 0; background: var(--paper); }
  .map-wrap {
    position: relative;
    height: 480px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
  }
  .map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(0.95); }
  .map-overlay {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: var(--paper);
    padding: 24px 28px;
    border-left: 2px solid var(--accent);
    box-shadow: 0 12px 40px -12px rgba(20,48,42,0.25);
    max-width: 320px;
    z-index: 5;
  }
  .map-overlay .k {
    font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--clay); font-weight: 500; margin-bottom: 8px;
  }
  .map-overlay .v { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ink); line-height: 1.35; }

  /* SUCCESS state */
  .form-success {
    display: none; text-align: center; padding: 60px 20px;
  }
  .form-success.shown { display: block; }
  .form-success .check {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--accent); color: var(--paper);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
  }
  .form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; margin-bottom: 12px; }
  .form-success p { color: var(--bark); max-width: 380px; margin: 0 auto; }
  .contact-form.sent .form-actual { display: none; }

  @media (max-width: 980px) {
    .banner-hero .wrap { grid-template-columns: 1fr; gap: 24px; padding-top: 60px; padding-bottom: 50px; }
    .banner-hero { min-height: 480px; }
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .contact-form { padding: 36px 24px; }
    .field-row { grid-template-columns: 1fr; gap: 20px; }
    .contact-body { padding: 60px 0 90px; }
  }
