:root {
  --ink: #14231d;
  --ink-soft: #24372f;
  --cream: #f1eee6;
  --paper: #f8f6f0;
  --sand: #c2aa7a;
  --sage: #879786;
  --line: rgba(20, 35, 29, .16);
  color: var(--ink);
  background: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; background: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
#app { overflow-x: clip; }
@supports not (overflow: clip) { #app { overflow-x: hidden; } }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  height: 82px; padding: 0 clamp(24px, 5vw, 76px);
  color: #fff; transition: transform .45s ease, background .45s ease, opacity .45s ease;
}
.site-header.scrolled { background: rgba(20, 35, 29, .78); backdrop-filter: blur(14px); }
.site-header.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.site-header.is-scrolled { color: var(--ink); background: var(--paper); }
.site-header.is-scrolled .brand-mark { border-color: rgba(20,35,29,.6); color: var(--ink); }
.site-header.is-scrolled .brand-copy small { color: rgba(20,35,29,.55); }
.site-header.is-scrolled .site-nav a { color: rgba(20,35,29,.72); }
.site-header.is-scrolled .site-nav a:hover { color: #80663c; }
.site-header.is-scrolled .menu-toggle { color: var(--ink); }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.62); color: #fff; font: 600 12px/1 Georgia, serif; letter-spacing: .07em; }
.brand-mark span { color: var(--sand); margin: 0 1px; }
.brand-copy { display: grid; gap: 2px; text-transform: uppercase; letter-spacing: .18em; }
.brand-copy strong { font: 500 13px/1.1 Georgia, serif; }
.brand-copy small { color: rgba(255,255,255,.63); font-size: 9px; letter-spacing: .28em; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.site-nav a { text-decoration: none; color: rgba(255,255,255,.78); transition: color .25s ease; }
.site-nav a:hover { color: var(--sand); }
.site-nav .nav-cta { border-bottom: 1px solid var(--sand); padding-bottom: 7px; color: #fff; }
.menu-toggle, .mobile-nav { display: none; }

.hero { position: relative; height: 152svh; min-height: 780px; background: var(--ink); contain: paint; }
.hero-viewport { position: sticky; top: 0; height: 100svh; min-height: 620px; overflow: hidden; isolation: isolate; background: #1b2e25; }
.hero-image-scale { position: absolute; inset: -5%; transform: scale(1.08); animation: hero-breathe 22s ease-in-out infinite alternate; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; will-change: transform; backface-visibility: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; opacity: 0; transition: opacity .9s ease; will-change: transform; backface-visibility: hidden; }
.hero-video.is-ready { opacity: 1; }

.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,17,.84) 0%, rgba(10,24,17,.57) 38%, rgba(10,24,17,.12) 74%, rgba(10,24,17,.25) 100%), linear-gradient(0deg, rgba(8,18,13,.68), transparent 48%, rgba(8,18,13,.2)); }
.hero-grain { position: absolute; inset: 0; opacity: .13; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.26) .7px, transparent .7px); background-size: 5px 5px; mix-blend-mode: soft-light; }
.hero-content { position: absolute; z-index: 5; top: 50%; left: clamp(22px, 11vw, 170px); width: min(650px, calc(100% - 44px)); transform: translateY(-50%); color: #fff; }
.hero-content.reveal, .hero-content.reveal.is-visible { transform: translateY(-50%); }
.eyebrow { margin: 0 0 22px; color: var(--sand); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .26em; }
.eyebrow-dark { color: #9d8357; }
.hero h1, h2 { margin: 0; font: 400 clamp(52px, 7vw, 104px)/.96 Georgia, "Times New Roman", serif; letter-spacing: -.03em; }
.hero h1 em, h2 em { color: var(--sand); font-style: italic; }
.hero-lead { max-width: 470px; margin: 28px 0 34px; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.55vw, 20px); font-weight: 300; line-height: 1.6; }
.hero-rule { display: block; width: 66px; height: 1px; margin-top: 27px; background: var(--sand); }
.button { display: inline-flex; align-items: center; gap: 16px; min-height: 50px; padding: 0 22px; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
.button span { font-size: 16px; line-height: 0; }
.button:hover { transform: translateY(-2px); }
.button-light { border-color: rgba(255,255,255,.62); color: #fff; }
.button-light:hover { border-color: var(--sand); background: var(--sand); color: var(--ink); }
.button-outline { border-color: var(--sand); color: var(--sand); }
.button-outline:hover { background: var(--sand); color: var(--ink); }
.hero-meta { position: absolute; z-index: 5; bottom: 54px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.hero-meta i, .chapter-label i { display: block; width: 48px; height: 1px; background: currentColor; opacity: .55; }
.hero-meta-left { left: clamp(22px, 5vw, 76px); }
.hero-meta-right { right: clamp(22px, 5vw, 76px); }
.scroll-cue { position: absolute; z-index: 5; bottom: 48px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.65); text-decoration: none; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { display: block; width: 1px; height: 42px; background: var(--sand); }

.section-light { background: var(--paper); }
.section-dark { color: #fff; background: var(--ink); }
.section-inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: clamp(72px, 8vw, 124px) 0; }
.chapter-label { display: flex; align-items: center; gap: 13px; color: #9d8357; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.chapter-label span:first-child { font-family: Georgia, serif; font-size: 18px; letter-spacing: 0; }
.chapter-label-light { color: rgba(255,255,255,.58); }
.chapter-label-light i { color: var(--sand); }
.why { position: relative; }
.why-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: clamp(56px, 10vw, 140px); margin-top: 72px; }
.why h2, .faq h2 { color: var(--ink); font-size: clamp(48px, 5.4vw, 78px); }
.why-copy { padding-top: 20px; }
.large-copy { max-width: 500px; margin: 0; color: var(--ink-soft); font: 400 clamp(22px, 2.35vw, 32px)/1.24 Georgia, serif; letter-spacing: -.018em; }
.body-copy { max-width: 400px; margin: 26px 0 30px; color: rgba(20,35,29,.62); font-size: 15px; line-height: 1.68; }
.text-link { display: inline-flex; gap: 16px; align-items: center; color: #80663c; font-size: 10px; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid rgba(128,102,60,.45); padding-bottom: 8px; }
.text-link span { font-size: 16px; }
.trust-line { display: flex; justify-content: space-between; gap: 25px; margin-top: 76px; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(20,35,29,.7); font: 400 clamp(18px, 1.85vw, 25px) Georgia, serif; }
.trust-line span::before { content: "—"; margin-right: 15px; color: var(--sand); }
.chapter { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); min-height: 650px; }
.chapter-image-wrap { position: relative; min-height: 560px; overflow: hidden; }
.chapter-image { position: absolute; inset: -5% 0; width: 100%; height: 110%; object-fit: cover; object-position: center; will-change: transform; backface-visibility: hidden; }
.image-caption { position: absolute; bottom: 28px; left: 32px; color: rgba(255,255,255,.7); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.chapter-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 7vw, 100px) clamp(30px, 7vw, 104px); }
.chapter-copy .chapter-label { margin-bottom: 64px; }
.chapter-copy h2 { max-width: 620px; font-size: clamp(48px, 4.7vw, 72px); }
.chapter-copy > p:not(.eyebrow):not(.muted-copy) { max-width: 470px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.68; }
.chapter-copy .muted-copy { max-width: 440px; margin: 16px 0 28px; color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.65; }
.faq-inner { padding-bottom: clamp(76px, 9vw, 124px); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(56px, 10vw, 140px); margin-top: 72px; }
.faq-heading h2 { font-size: clamp(48px, 5.2vw, 74px); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; color: var(--ink); cursor: pointer; list-style: none; font: 400 clamp(17px, 1.6vw, 22px) Georgia, serif; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--sand); font: 300 25px Georgia, serif; transition: transform .25s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 650px; margin: -2px 36px 21px 0; color: rgba(20,35,29,.63); font-size: 14px; line-height: 1.68; }
.contact-inner { padding-top: clamp(76px, 9vw, 124px); padding-bottom: clamp(76px, 9vw, 120px); }
.contact-layout { display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(56px, 7vw, 90px); margin-top: 72px; }
.contact h2 { max-width: 670px; font-size: clamp(50px, 5.8vw, 86px); }
.contact-action { padding-top: 10px; }
.contact-action p { max-width: 440px; margin: 0 0 30px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.8; }
.contact-action .button { margin-bottom: 25px; }
.contact-action small { display: block; max-width: 390px; color: rgba(255,255,255,.4); font-size: 11px; line-height: 1.6; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 29px clamp(22px, 5vw, 76px); color: rgba(255,255,255,.54); background: #0c1712; font-size: 10px; letter-spacing: .08em; }
.footer-brand, .footer-links { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { width: 30px; height: 30px; font-size: 9px; }
.footer-links { gap: 23px; text-transform: uppercase; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--sand); }

/* Legal pages reuse the same quiet editorial language. */
.legal-page { min-height: 100svh; padding: 150px max(22px, 8vw) 100px; color: var(--ink); background: var(--paper); }
.legal-page .site-header { color: var(--ink); background: var(--paper); }
.legal-page h1 { margin: 0 0 65px; font: 400 clamp(52px, 8vw, 100px)/.95 Georgia, serif; letter-spacing: -.04em; }
.legal-page section { max-width: 760px; margin: 0 0 38px; }
.legal-page h2 { margin: 0 0 15px; color: var(--ink); font: 400 27px/1.15 Georgia, serif; letter-spacing: -.02em; }
.legal-page h3, .legal-page h4 { color: var(--ink); font-size: 16px; }
.legal-page p { color: rgba(20,35,29,.68); font-size: 15px; line-height: 1.8; }
.legal-page a { color: #80663c; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.why-copy.reveal { transition-delay: .1s; }
.trust-line.reveal { transition-delay: .18s; }
.faq-list details:nth-child(2).reveal { transition-delay: .06s; }
.faq-list details:nth-child(3).reveal { transition-delay: .12s; }
.faq-list details:nth-child(4).reveal { transition-delay: .18s; }

@keyframes hero-breathe {
  from { transform: scale(1.08); }
  to { transform: scale(1.11); }
}

@media (max-height: 700px) and (min-width: 821px) {
  .hero-content { top: 43%; }
  .hero h1 { font-size: clamp(54px, 7vw, 88px); }
  .hero-lead { margin: 22px 0 28px; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 6px; width: 40px; padding: 10px 5px; border: 0; color: #fff; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 29px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: absolute; top: 72px; left: 0; right: 0; display: flex; flex-direction: column; padding: 18px 23px 24px; background: rgba(20,35,29,.96); border-top: 1px solid rgba(255,255,255,.1); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 11px 0; color: #fff; font-size: 11px; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; }
  .hero { height: 132svh; min-height: 700px; }
  .hero-viewport { min-height: 620px; }
  .hero-image { object-position: 57% center; }

  .hero-content { top: 48%; }
  .hero h1 { font-size: clamp(57px, 16vw, 88px); }
  .hero-meta-right { display: none; }
  .scroll-cue { left: auto; right: 25px; transform: none; }
  .why-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-layout, .faq-layout, .contact-layout { margin-top: 56px; }
  .why-copy { padding-top: 0; }
  .trust-line { align-items: flex-start; flex-direction: column; gap: 13px; margin-top: 58px; }
  .chapter { display: flex; flex-direction: column; }
  .chapter-image-wrap { min-height: 58svh; order: 1; }
  .chapter-copy { order: 2; padding: 58px 24px 72px; }
  .chapter-copy .chapter-label { margin-bottom: 50px; }
  .contact-action { padding-top: 0; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-links { align-items: flex-start; flex-wrap: wrap; line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-image-scale { animation: none; }
  .hero-video { display: none; }
}
