/* ============================================================
   GREEN STREET HOLDINGS — Design System
   Institutional / editorial. Forest green · bronze · cream.
   ============================================================ */

:root {
  /* Forest greens */
  --forest-900: #0C231A;   /* near-black green, dark sections */
  --forest-800: #103027;
  --forest-700: #163E30;   /* primary */
  --forest-600: #1E4D3C;
  --forest-500: #2F6650;
  --forest-300: #6E9384;   /* muted green text on dark */

  /* Bronze / gold */
  --bronze-700: #8A6A3C;
  --bronze-500: #B08D52;   /* accent */
  --bronze-400: #C2A56E;
  --bronze-200: #E3D4B4;

  /* Neutrals / paper */
  --cream:   #F4F0E6;      /* primary light bg */
  --paper:   #FBF9F3;      /* card / raised */
  --sand:    #ECE6D7;      /* subtle alt bg */
  --line:    #DAD3C2;      /* hairlines on light */
  --line-dk: rgba(226, 214, 188, 0.16); /* hairlines on dark */

  /* Ink */
  --ink-900: #1A201C;      /* headings */
  --ink-700: #353B35;      /* body */
  --ink-500: #5E655D;      /* muted */
  --ink-300: #8B9189;

  /* Type */
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink-700);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--bronze-500); color: #fff; }

/* ---------- type scale ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink-900); line-height: 1.08; letter-spacing: -0.01em; }
.display {
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.022em;
}
.h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { text-wrap: pretty; }
.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-700);
}
em, .italic { font-style: italic; }

/* eyebrow / kicker */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-700);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--bronze-500);
  display: inline-block;
}
.eyebrow.center::before { display: none; }
.on-dark .eyebrow { color: var(--bronze-400); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1360px; margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.section { padding-block: clamp(72px, 11vw, 150px); }
.section-sm { padding-block: clamp(56px, 8vw, 104px); }

.grid { display: grid; gap: clamp(24px, 4vw, 56px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .cols-2, .cols-3 { grid-template-columns: 1fr; } }

/* ---------- surfaces ---------- */
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-sand  { background: var(--sand); }
.bg-forest { background: var(--forest-900); color: var(--cream); }
.on-dark, .bg-forest { color: var(--cream); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(244,240,230,0.78); }
.hairline { border-top: 1px solid var(--line); }
.on-dark .hairline { border-top: 1px solid var(--line-dk); }

/* contour texture (forestry/topo nod) */
.contours::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/contours.svg");
  background-size: 1100px auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.contours > * { position: relative; z-index: 1; }
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/grain.svg");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--forest-700);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.6em;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arw { transform: translateX(4px); }
.btn--bronze { --bg: var(--bronze-500); border-color: var(--bronze-500); }
.btn--bronze:hover { --bg: var(--bronze-700); border-color: var(--bronze-700); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink-900);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink-900); background: transparent; }
.on-dark .btn--ghost { --fg: #fff; border-color: rgba(255,255,255,0.28); }
.on-dark .btn--ghost:hover { border-color: rgba(255,255,255,0.7); }
.btn--light { --bg: var(--cream); --fg: var(--forest-900); border-color: var(--cream); }
.btn--light:hover { --bg: #fff; border-color: #fff; }

/* text link with underline sweep */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest-700);
  padding-bottom: 2px;
  position: relative;
  white-space: nowrap;
}
.on-dark .tlink { color: var(--bronze-400); }
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink .arw { transition: transform .35s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  max-width: 1360px; margin: 0 auto;
  padding: 0 var(--gutter);
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
/* default = over dark hero */
.site-header { color: #fff; }
.site-header.scrolled {
  background: rgba(251,249,243,0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  color: var(--ink-900);
}

/* logotype */
.logo { display: flex; align-items: center; gap: 12px; }
.logo .mark { width: 34px; height: 34px; flex: none; }
.logo .mark .stroke-fg { stroke: currentColor; }
.logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo .wm-1 {
  font-family: var(--serif); font-weight: 500; font-size: 1.18rem;
  letter-spacing: 0.01em; color: currentColor;
}
.logo .wm-2 {
  font-family: var(--sans); font-weight: 600; font-size: 0.56rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--bronze-400); margin-top: 3px;
}
.site-header.scrolled .logo .wm-2 { color: var(--bronze-700); }

/* nav links */
.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; padding: 4px 0; opacity: 0.92;
  transition: opacity .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--bronze-500); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* language switch */
.lang {
  display: inline-flex; align-items: center; border: 1px solid currentColor;
  border-radius: 999px; padding: 3px; opacity: 0.8; font-family: var(--sans);
}
.site-header.scrolled .lang { border-color: var(--line); opacity: 1; }
.lang button {
  background: none; border: none; color: inherit;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 999px; line-height: 1;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang button.on { background: var(--bronze-500); color: #fff; }
.site-header.scrolled .lang button.on { background: var(--forest-700); color: #fff; }

.nav-cta { font-size: 0.82rem; padding: 0.7em 1.2em; }

/* hamburger */
.burger { display: none; width: 40px; height: 40px; background: none; border: none; color: inherit; position: relative; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), opacity .25s; }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: block; }
  .nav { gap: 14px; }
  .nav-links {
    position: fixed; inset: 80px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--forest-900); color: #fff;
    padding: 8px var(--gutter) 32px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .4s var(--ease), opacity .3s var(--ease);
    border-bottom: 1px solid var(--line-dk);
  }
  body.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 18px 0; font-size: 1rem; border-bottom: 1px solid var(--line-dk); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--forest-900);
  color: var(--cream);
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(48px, 7vw, 92px);
  padding-top: 140px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% 8%, rgba(46,102,80,0.55) 0%, rgba(12,35,26,0) 55%),
    radial-gradient(90% 80% at 8% 100%, rgba(176,141,82,0.18) 0%, rgba(12,35,26,0) 50%),
    linear-gradient(180deg, #0C231A 0%, #0E2A20 100%);
}
.hero__bg .contour-art {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.45; object-fit: cover;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,35,26,0.2) 0%, rgba(12,35,26,0) 30%, rgba(12,35,26,0.55) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__inner .wrap-wide { display: block; }
.hero .display { color: #fff; max-width: 16ch; padding-bottom: 0.82em; }
.hero .display .hl-1, .hero .display .hl-2 { display: block; }
.hero .btn--ghost, .cta .btn--ghost { --fg: #fff; border-color: rgba(255,255,255,0.28); }
.hero .btn--ghost:hover, .cta .btn--ghost:hover { border-color: rgba(255,255,255,0.7); }
.hero .display .accent { color: var(--bronze-400); font-style: italic; }
.hero__lead { max-width: 52ch; margin-top: clamp(22px, 2.6vw, 34px); color: rgba(244,240,230,0.82); }
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  margin-top: clamp(48px, 7vw, 84px);
  display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 72px);
  padding-top: 28px; border-top: 1px solid var(--line-dk);
}
.hero__meta .stat { }
.hero__meta .stat .n { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; line-height: 1; }
.hero__meta .stat .n .u { color: var(--bronze-400); }
.hero__meta .stat .l { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest-300); margin-top: 8px; }

.scrollcue {
  position: absolute; left: var(--gutter); bottom: 28px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest-300);
}
@media (max-width: 700px){ .scrollcue { display: none; } }
.scrollcue .ln { width: 1px; height: 36px; background: linear-gradient(var(--bronze-400), transparent); }

/* page hero (interior pages) */
.page-hero {
  background: var(--forest-900); color: var(--cream);
  position: relative; overflow: hidden;
  padding-top: clamp(150px, 18vw, 220px);
  padding-bottom: clamp(60px, 9vw, 110px);
}
.page-hero .display { color: #fff; max-width: 18ch; }
.page-hero .display .accent { color: var(--bronze-400); font-style: italic; }
.page-hero__lead { max-width: 56ch; margin-top: 24px; color: rgba(244,240,230,0.8); }
.crumb { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest-300); margin-bottom: 26px; }
.crumb a { color: var(--bronze-400); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head .h2 { margin-bottom: 0; }
.sec-head p { margin-top: 22px; color: var(--ink-500); font-size: 1.06rem; }
.sec-num { font-family: var(--serif); font-style: italic; color: var(--bronze-500); font-size: 0.95rem; }

/* ============================================================
   STATEMENT / POSITIONING
   ============================================================ */
.statement .big {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.85rem); line-height: 1.22;
  letter-spacing: -0.015em; color: var(--ink-900);
  max-width: 22ch;
}
.statement .big .hl { color: var(--forest-600); }
.statement .big em { color: var(--bronze-700); }
.statement__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
@media (max-width: 880px){ .statement__grid { grid-template-columns: 1fr; } }
.statement__aside p { color: var(--ink-500); }
.statement__aside p + p { margin-top: 18px; }

/* ============================================================
   APPROACH (numbered rows)
   ============================================================ */
.approach-row {
  display: grid; grid-template-columns: 100px 1fr 1.1fr; gap: clamp(20px, 4vw, 60px);
  padding-block: clamp(28px, 4vw, 44px); align-items: start;
  border-top: 1px solid var(--line);
}
.approach-row:last-child { border-bottom: 1px solid var(--line); }
.approach-row .idx { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--bronze-500); }
.approach-row h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); }
.approach-row p { color: var(--ink-500); max-width: 46ch; }
@media (max-width: 760px){
  .approach-row { grid-template-columns: 1fr; gap: 12px; padding-block: 30px; }
  .approach-row .idx { font-size: 1.2rem; }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px){ .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--paper); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 16px; min-height: 280px;
  position: relative; transition: background .4s var(--ease);
}
.svc:hover { background: var(--forest-900); }
.svc:hover * { color: var(--cream); }
.svc:hover .svc__no { color: var(--bronze-400); }
.svc:hover .svc__ic { border-color: var(--bronze-400); color: var(--bronze-400); }
.svc__top { display: flex; align-items: center; justify-content: space-between; }
.svc__no { font-family: var(--serif); font-style: italic; color: var(--bronze-500); font-size: 0.95rem; transition: color .4s var(--ease); }
.svc__ic {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--forest-600);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.svc__ic svg { width: 22px; height: 22px; }
.svc h3 { font-size: 1.3rem; transition: color .4s var(--ease); margin-top: 4px; }
.svc p { color: var(--ink-500); font-size: 0.98rem; transition: color .4s var(--ease); }
.svc__more { margin-top: auto; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--bronze-700); opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease), color .4s; }
.svc:hover .svc__more { opacity: 1; transform: translateY(0); color: var(--bronze-400); }

/* detailed service rows (services page) */
.svc-detail {
  display: grid; grid-template-columns: 0.5fr 1fr 1.2fr; gap: clamp(20px, 4vw, 56px);
  padding-block: clamp(36px, 5vw, 60px); align-items: start; border-top: 1px solid var(--line);
}
.svc-detail:last-child { border-bottom: 1px solid var(--line); }
.svc-detail .num { font-family: var(--serif); font-style: italic; color: var(--bronze-500); font-size: 1.4rem; }
.svc-detail h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.svc-detail .tag { display: inline-block; margin-top: 14px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-300); }
.svc-detail p { color: var(--ink-500); }
.svc-detail ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.svc-detail li { padding-left: 22px; position: relative; color: var(--ink-700); font-size: 0.98rem; }
.svc-detail li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; border: 1px solid var(--bronze-500); border-radius: 50%; }
@media (max-width: 820px){ .svc-detail { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founder {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 72px); align-items: center;
}
.founder.rev { grid-template-columns: 1.15fr 0.85fr; }
.founder.rev .founder__media { order: 2; }
@media (max-width: 860px){
  .founder, .founder.rev { grid-template-columns: 1fr; gap: 28px; }
  .founder.rev .founder__media { order: 0; }
}
.founder__media { position: relative; }
.founder__media .ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--sand);
}
.founder__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(1) contrast(1.02); transition: filter .6s var(--ease), transform .9s var(--ease); }
.founder__media:hover img { transform: scale(1.03); }
.founder__media .frame { position: absolute; inset: 0; border: 1px solid var(--line); border-radius: var(--radius); pointer-events: none; }
.founder__media .badge {
  position: absolute; left: -1px; bottom: 24px; background: var(--bronze-500); color: #fff;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  padding: 8px 16px;
}
.founder__body .role { color: var(--bronze-700); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.founder__body .name { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.founder__body p { color: var(--ink-700); }
.founder__body p + p { margin-top: 16px; }
.founder__creds { list-style: none; display: grid; gap: 16px; margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.founder__creds li { display: flex; gap: 12px; align-items: baseline; font-size: 0.95rem; line-height: 1.4; color: var(--ink-700); }
.founder__creds li .k { color: var(--bronze-700); flex: none; }
.founder__body.on-dark p { color: rgba(247,243,236,0.95); }
.on-dark .founder__creds { border-top-color: var(--line-dk); }
.on-dark .founder__creds li { color: rgba(244,240,230,0.86); }

/* founder teaser (home) */
.lead-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dk); }
@media (max-width: 720px){ .lead-teaser { grid-template-columns: 1fr; } }
.lead-card { background: var(--forest-900); padding: clamp(26px,3vw,40px); display: flex; gap: 22px; align-items: center; }
.lead-card img { width: 96px; height: 120px; object-fit: cover; filter: grayscale(1); border-radius: 2px; flex: none; }
.lead-card .nm { font-family: var(--serif); font-size: 1.4rem; color: #fff; }
.lead-card .rl { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-400); margin-top: 6px; }
.lead-card .ds { color: rgba(244,240,230,0.66); font-size: 0.9rem; margin-top: 12px; }

/* ============================================================
   PRINCIPLES / VALUES
   ============================================================ */
.principle { padding-block: 6px; }
.principle .pn { font-family: var(--serif); font-style: italic; color: var(--bronze-500); font-size: 1.1rem; margin-bottom: 14px; display: block; }
.principle h3 { font-size: 1.4rem; margin-bottom: 12px; }
.principle p { color: var(--ink-500); font-size: 0.98rem; }
.on-dark .principle p { color: rgba(244,240,230,0.74); }
.on-dark .principle h3 { color: #fff; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--forest-900); color: var(--cream); position: relative; overflow: hidden; }
.cta__inner { text-align: center; max-width: 760px; margin-inline: auto; position: relative; z-index: 2; }
.cta .h1 { color: #fff; font-weight: 400; }
.cta .h1 em { color: var(--bronze-400); }
.cta p { color: rgba(244,240,230,0.78); margin-top: 22px; max-width: 52ch; margin-inline: auto; }
.cta__actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info .row { padding-block: 22px; border-top: 1px solid var(--line); }
.contact-info .row:last-child { border-bottom: 1px solid var(--line); }
.contact-info .k { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-700); margin-bottom: 8px; }
.contact-info .v { font-family: var(--serif); font-size: 1.25rem; color: var(--ink-900); }
.contact-info .v a:hover { color: var(--forest-600); }
.contact-info .sub { color: var(--ink-500); font-size: 0.95rem; margin-top: 4px; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 48px); }
.form-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.form-card .sub { color: var(--ink-500); margin-bottom: 28px; font-size: 0.98rem; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink-700); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink-900);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.85em 1em; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--forest-600); box-shadow: 0 0 0 3px rgba(30,77,60,0.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--ink-300); margin-top: 16px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-900); color: var(--cream); position: relative; overflow: hidden; }
.site-footer .ft-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(56px, 7vw, 90px); position: relative; z-index: 2;
}
@media (max-width: 820px){ .site-footer .ft-top { grid-template-columns: 1fr 1fr; gap: 40px 28px; } }
@media (max-width: 520px){ .site-footer .ft-top { grid-template-columns: 1fr; } }
.ft-brand .logo .wm-1 { color: #fff; }
.ft-brand p { color: rgba(244,240,230,0.6); margin-top: 22px; max-width: 34ch; font-size: 0.95rem; }
.ft-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-400); margin-bottom: 20px; font-weight: 700; }
.ft-col ul { list-style: none; display: grid; gap: 13px; }
.ft-col a, .ft-col li { color: rgba(244,240,230,0.74); font-size: 0.95rem; transition: color .3s var(--ease); }
.ft-col a:hover { color: #fff; }
.ft-bottom {
  border-top: 1px solid var(--line-dk); padding-block: 26px; position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(244,240,230,0.5);
}
.ft-bottom a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: .08s; }
  .reveal[data-d="2"] { transition-delay: .16s; }
  .reveal[data-d="3"] { transition-delay: .24s; }
  .reveal[data-d="4"] { transition-delay: .32s; }
  /* Hero entrance: resting state is VISIBLE; we animate FROM hidden via
     keyframe `from` with fill-mode both, so paused/throttled/print contexts
     still show content rather than a blank hero. */
  .hero .display, .hero__lead, .hero__actions, .hero__meta { animation: heroIn 1.05s var(--ease) both; }
  .hero__lead { animation-delay: .12s; }
  .hero__actions { animation-delay: .22s; }
  .hero__meta { animation-delay: .34s; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
}

/* utilities */
.mt-s { margin-top: 18px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 48px; }
.center { text-align: center; }
.muted { color: var(--ink-500); }
.maxw-prose { max-width: 60ch; }
