/* ============================================================
   Tucker Group — v4 "Gold & Green" concept
   Palette: brand kit + champagne gold accent
   ============================================================ */

:root {
  --green: #00401A;
  --green-deep: #012D13;
  --sage: #588467;
  --blush: #E2CEBF;
  --cream: #F1EFE7;
  --bone: #E6E6DD;
  --ink: #131511;
  --gold: #C9A96A;
  --gold-light: #E8D5A8;
  --gold-deep: #A98643;
  --serif: 'Marcellus', 'Cormorant Garamond', serif;
  --serif-2: 'Cormorant Garamond', Georgia, serif;
  --sans: 'League Spartan', 'Avenir', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 6vw; }

h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 em { font-family: var(--serif-2); font-style: italic; font-weight: 500; }

/* ---------- kicker + gold shimmer ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.kicker-green { color: var(--sage); }

.gold-shimmer {
  background: linear-gradient(100deg,
    var(--gold-deep) 0%, var(--gold) 22%, var(--gold-light) 40%,
    #F6ECD4 50%, var(--gold-light) 60%, var(--gold) 78%, var(--gold-deep) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 110% center; }
  100% { background-position: -110% center; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border-radius: 100px;
  transition: transform .35s ease, box-shadow .35s ease, background-position .6s ease;
}
.btn-gold {
  color: var(--green-deep);
  background: linear-gradient(110deg,
    var(--gold-deep), var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-deep));
  background-size: 200% auto;
  box-shadow: 0 6px 24px rgba(169, 134, 67, 0.35);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(169, 134, 67, 0.5);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(241, 239, 231, 0.55);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.text-link {
  display: inline-block;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.35rem;
  transition: color .3s, border-color .3s;
}
.text-link:hover { color: var(--gold-deep); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1.3rem 3.2vw;
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
}
.nav-logo img { height: 30px; width: auto; }
.nav .logo-black { display: none; }
.nav-links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav-links a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color .3s;
}
.nav-links a:first-child { color: var(--gold-light); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(241, 239, 231, 0.5);
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  transition: all .3s;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold-light); }

.nav.scrolled { background: rgba(241, 239, 231, 0.96); box-shadow: 0 1px 24px rgba(19, 21, 17, 0.08); padding: 0.9rem 3.2vw; }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-black { display: block; }
.nav.scrolled .nav-links a { color: var(--green); }
.nav.scrolled .nav-links a:first-child { color: var(--gold-deep); }
.nav.scrolled .nav-cta { color: var(--green); border-color: var(--green); }
.nav.scrolled .nav-cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.nav-burger { display: none; background: none; border: none; cursor: pointer; margin-left: auto; padding: 8px; }
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 6px 0; transition: background .3s; }
.nav.scrolled .nav-burger span { background: var(--green); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--green-deep);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-family: var(--serif); font-size: 1.6rem; color: var(--cream);
}
.nav-drawer a:hover { color: var(--gold-light); }
.nav-drawer .drawer-cta { font-family: var(--sans); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; border: 1px solid var(--gold); border-radius: 100px; padding: 1rem 2rem; color: var(--gold-light); margin-top: 1rem; }

/* ---------- hero walkthrough ---------- */
.hero-track { height: 420vh; position: relative; background: var(--green-deep); }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#walkCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* scrub mode: real walkthrough film, scrolled frame-by-frame */
#scrubCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: none;
  /* the golden grade, applied to the real footage */
  filter: sepia(0.16) saturate(1.15) contrast(1.05) brightness(0.97);
}
.scrub-grade { display: none; position: absolute; inset: 0; pointer-events: none; }
.hero-sticky.scrub #walkCanvas { display: none; }
.hero-sticky.scrub #scrubCanvas {
  display: block;
  /* melt the film into the page rather than hard full-bleed */
  -webkit-mask-image: radial-gradient(ellipse 135% 105% at 50% 42%, black 50%, transparent 99%);
  mask-image: radial-gradient(ellipse 135% 105% at 50% 42%, black 50%, transparent 99%);
  will-change: transform;
}
.hero-sticky.scrub .scrub-grade {
  display: block;
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(1, 30, 13, 0.42) 100%),
    linear-gradient(180deg, rgba(1, 45, 19, 0.30) 0%, transparent 30%, transparent 68%, rgba(1, 45, 19, 0.38) 100%);
}

.hero-fallback { position: absolute; inset: 0; display: none; }
.hero-fallback img { width: 100%; height: 100%; object-fit: cover; }
.hero-fallback::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,45,19,0.55) 0%, rgba(1,45,19,0.25) 45%, rgba(1,45,19,0.6) 100%);
}
.hero-sticky.no-webgl .hero-fallback { display: block; }
.hero-sticky.no-webgl #walkCanvas { display: none; }

.hero-stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s linear;
  text-shadow: 0 2px 30px rgba(1, 45, 19, 0.45);
}
.hero-stage[data-stage="1"], .hero-stage[data-stage="2"] { align-items: center; text-align: center; }
.hero-stage.active { opacity: 1; pointer-events: auto; }
.hero-sub {
  max-width: 34rem;
  margin-top: 1.6rem;
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(241, 239, 231, 0.92);
}
.hero-ctas { display: flex; gap: 1.1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.stage-line { font-size: clamp(1.8rem, 4vw, 3.2rem); margin-bottom: 1.4rem; }

.scroll-hint {
  position: absolute; bottom: 3.4vh; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: rgba(241, 239, 231, 0.75);
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  transition: opacity .4s;
}
.hint-line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: hintPulse 2.2s ease-in-out infinite; }
@keyframes hintPulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ---------- bands ---------- */
.band { position: relative; padding: 9rem 0; }
.band-green { background: var(--green); color: var(--cream); }
.band-green h2 { color: var(--cream); }
.band-cream { background: var(--cream); }
.band-bone { background: var(--bone); }
.band-blush { background: var(--blush); }

/* subtle diagonal gold sheen on green bands (the A&V texture) */
.band-green::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg,
    transparent 0px, transparent 22px,
    rgba(201, 169, 106, 0.05) 22px, rgba(201, 169, 106, 0.05) 24px);
  pointer-events: none;
}
.band-green .wrap { position: relative; }

.philosophy .lede {
  max-width: 38rem;
  margin-top: 1.8rem;
  font-family: var(--serif-2);
  font-size: 1.35rem;
  line-height: 1.55;
  color: rgba(241, 239, 231, 0.9);
}
.stats { display: flex; gap: 5rem; margin-top: 4.5rem; flex-wrap: wrap; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-light) 50%, var(--gold-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
.stat-label { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241, 239, 231, 0.72); margin-top: 0.5rem; display: block; max-width: 13rem; }

/* ---------- services index ---------- */
.services h2 { color: var(--green); }
.index-list { list-style: none; margin-top: 4rem; }
.index-list li { border-top: 1px solid rgba(0, 64, 26, 0.18); }
.index-list li:last-child { border-bottom: 1px solid rgba(0, 64, 26, 0.18); }
.index-list a {
  display: grid;
  grid-template-columns: 3.4rem 1fr 1.6fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: 1.9rem 0.4rem;
  transition: background .35s ease, padding-left .35s ease;
}
.index-list a:hover { background: rgba(226, 206, 191, 0.25); padding-left: 1.2rem; }
.idx { font-size: 0.72rem; letter-spacing: 0.18em; color: var(--gold-deep); font-weight: 500; }
.idx-title { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.75rem); color: var(--green); }
.idx-desc { font-size: 0.92rem; color: rgba(19, 21, 17, 0.62); }
.idx-arrow { color: var(--gold-deep); font-size: 1.2rem; transition: transform .35s ease; }
.index-list a:hover .idx-arrow { transform: translateX(8px); }

/* ---------- editorial split ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6vw;
}
.split-photo { position: relative; }
.split-photo img { border-radius: 2px; aspect-ratio: 4 / 5; object-fit: cover; }
.split-photo::after {
  content: '';
  position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold);
  z-index: -1;
}
.split-copy h2 { color: var(--green); margin-bottom: 1.4rem; }
.split-copy p { max-width: 30rem; color: rgba(19, 21, 17, 0.75); }

/* ---------- quote ---------- */
.quote blockquote { max-width: 46rem; margin: 0 auto; text-align: center; }
.quote p {
  font-family: var(--serif-2);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--green);
}
.quote cite {
  display: block;
  margin-top: 2.2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- closing ---------- */
.closing { background: var(--green-deep); overflow: hidden; padding: 11rem 0; }
#houseCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.6;
}
.closing-copy { position: relative; text-align: center; }
.closing h2 { color: var(--cream); }
.closing .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(241, 239, 231, 0.8); padding: 5rem 0 2.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-logo { height: 26px; width: auto; margin-bottom: 1rem; }
.footer-tag { font-family: var(--serif-2); font-style: italic; font-size: 1.05rem; color: var(--gold-light); }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a, .footer-contact a { font-size: 0.82rem; letter-spacing: 0.08em; transition: color .3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.82rem; margin-top: 0.7rem; }
.footer-legal { margin-top: 3.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(241, 239, 231, 0.14); }
.footer-legal p { font-size: 0.72rem; color: rgba(241, 239, 231, 0.45); }

/* ---------- custom cursor ---------- */
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 999;
    pointer-events: none; border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot { width: 7px; height: 7px; background: var(--gold); }
  .cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(201, 169, 106, 0.55);
    transition: width .3s ease, height .3s ease, border-color .3s ease;
  }
  .cursor-ring.expanded { width: 58px; height: 58px; border-color: rgba(201, 169, 106, 0.9); }
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- magnetic buttons + shine sweep ---------- */
.btn { position: relative; overflow: hidden; will-change: transform; }
.btn .btn-label { position: relative; z-index: 1; display: inline-block; }
.btn::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 252, 240, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left .7s cubic-bezier(.22,.61,.36,1);
}
.btn:hover::after { left: 130%; }

/* ---------- headline line reveals ---------- */
.line-reveal .lr-line { display: block; overflow: hidden; }
.line-reveal .lr-inner { display: block; transform: translateY(115%); transition: transform 1s cubic-bezier(.19,1,.22,1); }
.line-reveal.in .lr-inner { transform: none; }
.line-reveal.in .lr-line:nth-child(2) .lr-inner { transition-delay: .12s; }
.line-reveal.in .lr-line:nth-child(3) .lr-inner { transition-delay: .24s; }

/* ---------- ambient film band ---------- */
.band-film { padding: 0; background: var(--green-deep); position: relative; overflow: hidden; }
.film-frame { position: relative; height: 92vh; }
.film-frame iframe, .film-poster {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;             /* 16:9 cover */
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  object-fit: cover; border: 0;
  pointer-events: none;
}
.film-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,45,19,.62), rgba(1,45,19,.15) 40%, rgba(1,45,19,.66));
}
.film-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 8vw 9vh;
  color: var(--cream); pointer-events: none;
}
.film-copy h2 { color: var(--cream); }

/* ---------- giant blend typography ---------- */
.typo-band { position: relative; overflow: hidden; background: var(--green-deep); }
.typo-photo { width: 100%; height: 110vh; object-fit: cover; will-change: transform; }
.typo-word {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  font-family: var(--serif-2); font-style: italic; font-weight: 500;
  font-size: clamp(6rem, 22vw, 22rem);
  line-height: 1;
  color: var(--cream);
  mix-blend-mode: overlay;
  white-space: nowrap;
  pointer-events: none;
}
.typo-caption {
  position: absolute; left: 50%; bottom: 9vh; transform: translateX(-50%);
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(241,239,231,.85);
}

/* ---------- gold hairline dividers ---------- */
.band-cream .wrap > .kicker::before, .philosophy .wrap > .kicker::before {
  content: '';
  display: block; width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.6rem;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   subpage components
   ============================================================ */

/* ---------- page hero (photo) ---------- */
.page-hero {
  position: relative; height: 68vh; min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 8vw 9vh; overflow: hidden; color: var(--cream);
}
.page-hero img.ph-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -1;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(1,45,19,.5), rgba(1,45,19,.18) 45%, rgba(1,45,19,.72));
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); text-shadow: 0 2px 26px rgba(1,45,19,.5); }
.page-hero .ph-sub { max-width: 34rem; margin-top: 1.2rem; color: rgba(241,239,231,.92); }

/* ---------- numbered serif step cards ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.6rem; margin-top: 4rem;
}
.step-card {
  background: #FBFAF5; border: 1px solid rgba(0,64,26,.1);
  padding: 2.2rem 1.9rem 2rem; position: relative;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,64,26,.12); border-color: var(--gold); }
.step-num {
  font-family: var(--serif-2); font-style: italic; font-size: 2.6rem;
  color: var(--gold-deep); line-height: 1; display: block; margin-bottom: 1rem;
}
.step-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--green); margin-bottom: .6rem; }
.step-card p { font-size: .92rem; color: rgba(19,21,17,.68); line-height: 1.55; }

/* ---------- service / value cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.8rem; margin-top: 4rem; }
.tg-card {
  background: #FBFAF5; border: 1px solid rgba(0,64,26,.1);
  padding: 2.8rem 2.3rem; transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.tg-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,64,26,.12); border-color: var(--gold); }
.tg-card .kicker { margin-bottom: .9rem; }
.tg-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; color: var(--green); margin-bottom: .9rem; }
.tg-card p { font-size: .95rem; color: rgba(19,21,17,.7); }
.tg-card .text-link { margin-top: 1.4rem; }
a.tg-card { display: block; }

/* ---------- FAQ accordions ---------- */
.faq { max-width: 760px; margin: 3.6rem auto 0; }
.faq details { border-top: 1px solid rgba(0,64,26,.16); }
.faq details:last-child { border-bottom: 1px solid rgba(0,64,26,.16); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  font-family: var(--serif); font-size: 1.15rem; color: var(--green);
  padding: 1.5rem 3rem 1.5rem .2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: .4rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif-2); font-size: 1.6rem; color: var(--gold-deep);
  transition: transform .3s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 .2rem 1.6rem; color: rgba(19,21,17,.72); max-width: 42rem; }

/* ---------- testimonial cards ---------- */
.quote-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; margin-top: 4rem; }
.q-card { background: rgba(241,239,231,.55); padding: 2.6rem 2.2rem; border-left: 2px solid var(--gold); }
.q-card p { font-family: var(--serif-2); font-size: 1.12rem; line-height: 1.6; color: var(--green-deep); }
.q-card cite {
  display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal;
  font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep);
}

/* ---------- contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 3.4rem; max-width: 760px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label {
  display: block; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sage); margin-bottom: .55rem;
}
.form-grid input, .form-grid textarea {
  width: 100%; padding: 1rem 1.1rem;
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  background: #FBFAF5; border: 1px solid rgba(0,64,26,.18); border-radius: 2px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201,169,106,.18);
}
.form-grid textarea { min-height: 150px; resize: vertical; }
.form-side { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }
.contact-aside p { margin-bottom: .5rem; }
.contact-aside a { color: var(--green); border-bottom: 1px solid var(--gold); }

/* ---------- footer legal ---------- */
.footer-legal .fine { font-size: .68rem; color: rgba(241,239,231,.38); margin-top: .5rem; max-width: 46rem; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .index-list a { grid-template-columns: 2.4rem 1fr auto; }
  .idx-desc { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .split-photo::after { display: none; }
  .stats { gap: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-track { height: 340vh; }
  .form-grid, .form-side { grid-template-columns: 1fr; }
  .page-hero { height: 56vh; }
}

@media (prefers-reduced-motion: reduce) {
  .gold-shimmer, .stat-num, .hint-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .line-reveal .lr-inner { transform: none; transition: none; }
  .btn::after { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  html { scroll-behavior: auto; }
}
