/* ── Fonts loaded via <link> in HTML for reliability ─────── */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --cream:         #faf5eb;
  --cream-alt:     #f2e6cf;
  --surface:       #fffdf5;
  --sand:          #e6d9bf;

  --green:         #163b33;
  --green-mid:     #1f5142;
  --green-light:   #e6edea;
  --green-900:     #0e2620;

  --copper:        #b65225;
  --copper-light:  #f7ede6;

  --sage:          #8cad8e;
  --ink:           #0d1b17;
  --muted:         #52635c;
  --subtle:        #8a9990;

  --border:        rgba(22,59,51,.11);
  --border-strong: rgba(22,59,51,.22);

  --shadow-xs:  0 2px 8px  rgba(22,59,51,.07);
  --shadow-sm:  0 6px 20px rgba(22,59,51,.09);
  --shadow-md:  0 14px 44px rgba(22,59,51,.12);
  --shadow-lg:  0 28px 80px rgba(22,59,51,.16);
  --shadow-xl:  0 40px 110px rgba(22,59,51,.2);

  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 36px;
  --r-xl: 48px;

  --ease-out:    cubic-bezier(.23,1,.32,1);
  --ease-inout:  cubic-bezier(.77,0,.175,1);
  --t-fast:  160ms;
  --t-base:  280ms;
  --t-slow:  600ms;

  --section: clamp(80px,11vw,140px);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 55% 40% at 95% 0%,   rgba(140,173,142,.2)  0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 5%  100%, rgba(182,82,37,.07)   0%, transparent 55%);
  overflow-x: clip; /* clip (not hidden) so position:fixed children are never trapped on iOS */
  min-height: 100dvh;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }
ul  { list-style: none; padding: 0; }

/* ── Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: 20px; top: -70px;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 20px; }

/* ── Container ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.03em;
  line-height: 1.04;
  text-wrap: balance;
}
h1   { font-size: clamp(2.6rem,5.5vw,5.2rem); }
h2   { font-size: clamp(1.9rem,3.4vw,3.2rem); }
h3   { font-size: 1.28rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.3; }
p    { font-size: 1.05rem; line-height: 1.7; color: var(--muted); max-width: 60ch; }
p.lead { font-size: 1.18rem; }

.label {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(22,59,51,.25);
  transition: border-color var(--t-fast) var(--ease-out);
}
.text-link::after { content: '→'; transition: transform var(--t-fast) var(--ease-out); }
.text-link:hover { border-color: var(--green); }
.text-link:hover::after { transform: translateX(4px); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font: 700 1rem/1 'Plus Jakarta Sans', system-ui, sans-serif;
  white-space: nowrap;
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    background var(--t-fast) ease,
    color var(--t-fast) ease;
}
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 28px rgba(22,59,51,.28);
  transform: translateY(-2px);
}

.btn-outline { background: transparent; color: var(--green); border-color: var(--border-strong); }
.btn-outline:hover {
  background: var(--surface);
  border-color: var(--green);
  box-shadow: var(--shadow-xs);
  transform: translateY(-2px);
}

.btn-light { background: var(--cream); color: var(--green); }
.btn-light:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.13);
  color: #fff;
  border-color: rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(250,245,235,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: background var(--t-base) ease, box-shadow var(--t-base) ease;
}
.site-header.scrolled { background: rgba(250,245,235,.97); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img {
  height: 44px;
  width: auto;
  max-width: 180px;
  transition: transform var(--t-fast) var(--ease-out);
}
.brand:hover img { transform: scale(1.04); }

.site-nav { justify-self: center; display: flex; gap: 2px; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
  color: rgba(13,27,23,.72);
  transition: color var(--t-fast) ease, background var(--t-fast) ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out);
}
.site-nav a:hover { color: var(--green); background: rgba(22,59,51,.07); }
.site-nav a.active { color: var(--green); }
.site-nav a.active::after { transform: translateX(-50%) scaleX(1); }

.header-cta {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 700;
  transition: background var(--t-fast) ease, transform var(--t-fast) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.header-cta:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,59,51,.24); }
.header-cta:active { transform: scale(.97); }

.menu-button {
  display: none;
  width: 46px; height: 46px;
  position: relative;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  border-radius: 999px;
  cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column;
  gap: 5px; padding: 0;
  box-shadow: var(--shadow-xs);
  transition:
    background var(--t-fast) ease,
    border-color var(--t-fast) ease,
    transform var(--t-fast) var(--ease-out);
}
.menu-button:hover { background: var(--cream-alt); transform: translateY(-1px); }
.menu-button span {
  display: block; width: 18px; height: 1.5px;
  background: var(--green); border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-fast) ease;
}
.menu-button.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-button.open span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ── Sections ────────────────────────────────────────────── */
.section    { padding: var(--section) 0; }
.section-sm { padding: clamp(48px,7vw,80px) 0; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-band {
  overflow: hidden;
  background: var(--green-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.marquee-dot {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--copper); flex-shrink: 0;
}

/* ── Photo Card (tilted frame) ───────────────────────────── */
.photo-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.photo-card img {
  width: 100%;
  height: clamp(340px,42vw,520px);
  object-fit: cover;
  border-radius: calc(var(--r-xl) - 10px);
}
.hero-photo { transform: rotate(1.6deg); }
.photo-card-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--green);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: .82rem; font-weight: 700; letter-spacing: .05em;
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.photo-card-badge .badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400; line-height: 1; margin-bottom: 2px;
}

/* ── Hero (Homepage) ─────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(72px,10vw,120px) 0 clamp(80px,11vw,130px);
  overflow: hidden;
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-blob-1 {
  width: 600px; height: 500px; top: -120px; right: -100px;
  background: radial-gradient(ellipse, rgba(140,173,142,.28) 0%, transparent 70%);
}
.hero-blob-2 {
  width: 400px; height: 400px; bottom: -80px; left: -60px;
  background: radial-gradient(ellipse, rgba(182,82,37,.1) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: clamp(48px,7vw,88px);
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(2.8rem,6vw,5.6rem);
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 14ch;
}
.hero-copy h1 em { font-style: italic; color: var(--green-mid); }
.hero-copy p.lead { font-size: 1.18rem; }
.hero-photo-wrap { position: relative; }

/* ── Full-Bleed Hero (Training page) ─────────────────────── */
.hero-fullbleed {
  position: relative;
  min-height: 90dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-fullbleed-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-fullbleed-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,38,32,.92) 0%,
    rgba(14,38,32,.52) 45%,
    rgba(14,38,32,.15) 100%
  );
}
.hero-fullbleed-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(56px,9vw,110px) 0;
  max-width: 760px;
}
.hero-fullbleed-content .label { color: rgba(140,173,142,.9); }
.hero-fullbleed-content h1 { color: #fff; font-size: clamp(3rem,6.5vw,6rem); }
.hero-fullbleed-content p  { color: rgba(255,255,255,.78); font-size: 1.18rem; }
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: .9; transform: scaleY(1.15); }
}

/* ── Illustrated Hero (Methodiek page) ───────────────────── */
.hero-illustrated {
  position: relative;
  min-height: 72dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-illustrated-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-illustrated-scrim {
  position: absolute;
  inset: 0;
  background: rgba(250,245,235,.76);
}
.hero-illustrated-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(64px,10vw,120px) 0;
}
.hero-illustrated-content h1 { font-size: clamp(3rem,6.5vw,6rem); max-width: 14ch; }

/* ── Page Hero (generic) ─────────────────────────────────── */
.page-hero {
  padding: clamp(64px,9vw,110px) 0 clamp(64px,9vw,100px);
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
}
.page-hero-copy h1 { max-width: 16ch; margin-bottom: 18px; }
.page-hero-copy p  { font-size: 1.15rem; margin-bottom: 30px; }
.small-hero { padding-bottom: 48px; }

/* ── Pull Quote ──────────────────────────────────────────── */
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(2.1rem,4.5vw,4.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--green);
  text-wrap: balance;
}

/* ── Landscape Panel ─────────────────────────────────────── */
.landscape-panel {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}
.landscape-panel-image { overflow: hidden; position: relative; }
.landscape-panel-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.landscape-panel-body {
  padding: clamp(36px,5vw,60px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Bento Grid (Homepage feature section) ───────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.bento-tall  { grid-column: 1;   grid-row: 1 / 3; }
.bento-tr-a  { grid-column: 2;   grid-row: 1; }
.bento-tr-b  { grid-column: 3;   grid-row: 1; }
.bento-wide  { grid-column: 2/4; grid-row: 2; }

.bento-cell {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
}
.bento-cell-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out);
}
.bento-cell:hover .bento-cell-img { transform: scale(1.04); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,38,32,.82) 0%, rgba(14,38,32,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}
.bento-overlay h3 { color: #fff; margin-bottom: 6px; }
.bento-overlay p  { color: rgba(255,255,255,.75); font-size: .94rem; max-width: none; margin: 0; }

.bento-text {
  padding: clamp(24px,3vw,36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.bento-text h3 { margin-bottom: 10px; }
.bento-text p  { max-width: none; font-size: .97rem; flex: 1; }

.bento-stat {
  background: var(--green);
  color: #fff;
  padding: clamp(24px,3vw,36px);
}
.bento-stat .stat-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem,4.5vw,4.2rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.bento-stat p { color: rgba(255,255,255,.72); max-width: none; font-size: .94rem; }

/* ── Stats Row ───────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: clamp(28px,5vw,48px) clamp(24px,4vw,40px);
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem,5.5vw,5.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
  letter-spacing: -.04em;
}
.stat-label { font-size: .92rem; font-weight: 600; color: var(--muted); }

/* ── Timeline (Training steps) ───────────────────────────── */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 80px, var(--border) calc(100% - 80px), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 36px;
  padding: clamp(32px,5vw,56px) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  flex-shrink: 0;
}
.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(22,59,51,.1);
  transition: box-shadow var(--t-base) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 10px rgba(22,59,51,.1);
  transform: scale(1.06);
}
.timeline-body { padding-top: 2px; }
.timeline-body h2 { font-size: clamp(1.8rem,3.2vw,2.8rem); margin-bottom: 12px; }
.timeline-body p { font-size: 1.06rem; }
.timeline-photo {
  width: 100%;
  max-width: 440px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

/* ── Fullbleed Method Steps ──────────────────────────────── */
.method-steps { display: grid; gap: 0; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.method-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}
.method-step:nth-child(even) .method-step-img  { order: 2; }
.method-step:nth-child(even) .method-step-body { order: 1; }
.method-step + .method-step { border-top: 1px solid var(--border); }
.method-step-img {
  overflow: hidden;
  position: relative;
}
.method-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out);
}
.method-step:hover .method-step-img img { transform: scale(1.04); }
.method-step-body {
  padding: clamp(40px,6vw,72px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.method-step-body .step-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.method-step-body h2 { font-size: clamp(1.9rem,3.8vw,3.2rem); margin-bottom: 16px; }

/* ── Over page: Story + Quote ────────────────────────────── */
.story-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.story-quote-block { padding-bottom: clamp(24px,4vw,40px); }

/* ── Horizontal Values ───────────────────────────────────── */
.h-values { display: grid; gap: 0; }
.h-value-item {
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  gap: clamp(20px,3vw,40px);
  align-items: center;
  padding: clamp(28px,4vw,44px) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast) ease;
}
.h-value-item:first-child { border-top: 1px solid var(--border); }
.h-val-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: rgba(22,59,51,.2);
  line-height: 1;
}
.h-val-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.h-value-item p { max-width: 46ch; margin: 0; }

/* ── Photo Banner ────────────────────────────────────────── */
.photo-banner {
  width: 100%;
  height: clamp(260px,34vw,480px);
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

/* ── What Next List (Contact) ────────────────────────────── */
.what-next { display: grid; gap: 18px; margin-top: 28px; }
.what-next-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.what-next-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid rgba(22,59,51,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  color: var(--green);
  flex-shrink: 0;
}
.what-next-item h3 { margin-bottom: 4px; font-size: 1rem; }
.what-next-item p  { font-size: .94rem; max-width: none; margin: 0; }

/* ── CTA Box ─────────────────────────────────────────────── */
.cta-box {
  position: relative;
  background: var(--green);
  border-radius: var(--r-xl);
  padding: clamp(48px,8vw,80px) clamp(36px,6vw,72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(140,173,142,.12);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 30%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(182,82,37,.08);
  pointer-events: none;
}
.cta-box h2 { color: #fff; margin: 0; max-width: 22ch; flex: 1; }

/* ── Ron & Lucy green section ────────────────────────────── */
.green-section {
  background: var(--green);
  color: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.green-section h2 { color: #fff; max-width: 18ch; }
.green-section p  { color: rgba(255,255,255,.72); }
.green-section .label { color: rgba(140,173,142,.9); }
.green-section .text-link { color: rgba(255,255,255,.9); border-bottom-color: rgba(255,255,255,.28); }
.green-section .text-link:hover { border-bottom-color: rgba(255,255,255,.7); }
.green-section-inner { padding: clamp(48px,7vw,80px); }
.ron-lucy-wrap {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(44px,7vw,88px);
  align-items: center;
}

/* ── Checklist ───────────────────────────────────────────── */
.check-list { margin-top: 22px; display: grid; gap: 10px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ── Split grid ──────────────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(44px,7vw,88px);
  align-items: center;
}
.rounded-photo {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* ── Intro Panel ─────────────────────────────────────────── */
.intro-panel {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 32px;
  align-items: end;
  padding: clamp(36px,6vw,60px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-panel h2 { margin: 0; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.contact-info { display: grid; gap: 10px; margin-top: 28px; }
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(22,59,51,.14);
  padding: 13px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--t-fast) ease, transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) ease;
}
.contact-chip:hover { background: #d0e2d5; transform: translateY(-2px); box-shadow: var(--shadow-xs); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px,5vw,46px);
  box-shadow: var(--shadow-md);
}
.contact-form label {
  display: grid; gap: 7px;
  color: var(--green); font-weight: 700; font-size: .9rem; margin-bottom: 18px;
}
input, textarea {
  width: 100%;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  background: var(--cream);
  font: 400 1rem 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22,59,51,.1);
}
textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-note { min-height: 22px; margin-top: 14px; font-weight: 700; font-size: .9rem; }
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important; pointer-events: none !important;
}

/* ── Legal ───────────────────────────────────────────────── */
.narrow { max-width: 820px; }
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px,5vw,56px);
  box-shadow: var(--shadow-xs);
}
.legal h2 { font-size: clamp(1.35rem,2.4vw,2rem); margin-top: 36px; margin-bottom: 12px; max-width: none; }
.legal h2:first-child { margin-top: 0; }
.legal ul { list-style: disc; padding-left: 24px; color: var(--muted); line-height: 1.9; }


/* ── 404 page ───────────────────────────────────────────── */
.error-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px,10vw,126px) 0 clamp(44px,7vw,72px);
}
.error-hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(140,173,142,.28) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}
.error-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(36px,6vw,80px);
  align-items: center;
}
.error-copy h1 {
  font-size: clamp(3rem,6.6vw,6rem);
  max-width: 12ch;
  margin-bottom: 22px;
}
.error-card {
  min-height: 360px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,.2), transparent 34%),
    linear-gradient(145deg, var(--green), var(--green-900));
  color: #fff;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px,4vw,44px);
  transform: rotate(2deg);
  position: relative;
  overflow: hidden;
}
.error-card::after {
  content: 'KW';
  position: absolute;
  right: -18px;
  top: -24px;
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  line-height: 1;
  font-style: italic;
  color: rgba(255,255,255,.05);
}
.error-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem,11vw,9rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.error-card p {
  color: rgba(255,255,255,.7);
  margin-top: 14px;
}
.error-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.error-link-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: clamp(24px,3vw,34px);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    border-color var(--t-fast) ease;
}
.error-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.error-link-card span {
  font-family: 'Playfair Display', serif;
  color: rgba(22,59,51,.28);
  font-size: 2rem;
  line-height: 1;
}
.error-link-card strong {
  color: var(--green);
  font-size: 1.1rem;
}
.error-link-card small {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  margin-top: clamp(60px,8vw,100px);
  background: var(--green-900);
  color: #fff;
  padding: clamp(56px,8vw,88px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .65fr .8fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-about p { color: rgba(255,255,255,.6); font-size: .95rem; margin-top: 16px; max-width: 34ch; }
.footer-col h3 { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(140,173,142,.8); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.65); text-decoration: none; font-size: .92rem; margin-bottom: 10px; transition: color var(--t-fast) ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.45); font-size: .84rem;
}

/* ── Reveal Animations ─────────────────────────────────────
   Content stays visible when JavaScript is blocked or fails.
   When script.js loads, the .js class enables the animation state.
*/
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition:
    opacity  .75s var(--ease-out),
    transform .75s var(--ease-out);
}
.js .reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.stagger-1 { transition-delay: .07s; }
.stagger-2 { transition-delay: .14s; }
.stagger-3 { transition-delay: .21s; }
.stagger-4 { transition-delay: .28s; }

/* ── Scroll Progress Bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, var(--copper), var(--sage));
  z-index: 999;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ── Floating CTA (mobile only) ──────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 88;
  background: var(--green);
  color: #fff;
  padding: 15px 22px;
  border-radius: 999px;
  font: 700 .88rem/1 'Plus Jakarta Sans', system-ui, sans-serif;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(22,59,51,.32), 0 2px 8px rgba(22,59,51,.18);
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
  white-space: nowrap;
  letter-spacing: .01em;
}
.floating-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cta:active  { transform: scale(.97) !important; }
.floating-cta:hover   { box-shadow: 0 12px 40px rgba(22,59,51,.38); }
@media (min-width: 901px) { .floating-cta { display: none !important; } }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  /* Bento: editorial stack — hero · 2-col · hero */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .bento-tall { grid-column: 1 / 3; grid-row: 1; }
  .bento-tr-a { grid-column: 1;     grid-row: 2; }
  .bento-tr-b { grid-column: 2;     grid-row: 2; }
  .bento-wide { grid-column: 1 / 3; grid-row: 3; }
  .bento-tall .bento-cell-img { min-height: 360px; }
  .h-value-item { grid-template-columns: 48px 160px 1fr; }
}

@media (max-width: 1024px) {
  /* Hero: single column, photo card overlaps into marquee below */
  .hero { overflow: visible; padding-bottom: 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    padding-bottom: clamp(24px, 4vw, 40px);
  }
  .hero .hero-photo-wrap {
    display: block;
    position: relative;
    z-index: 2;
    margin-top: 40px;
    margin-bottom: -84px;
  }
  .hero .photo-card {
    transform: rotate(-0.7deg);
    max-width: min(540px, 92%);
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
  }
  /* Marquee sits below overlap photo card */
  .hero + .marquee-band {
    position: relative;
    z-index: 1;
    padding-top: 104px;
  }

  /* Landscape panel: single column with gradient fade at image bottom */
  .landscape-panel { grid-template-columns: 1fr; min-height: auto; }
  .landscape-panel-image { height: 300px; position: relative; overflow: hidden; }
  .landscape-panel-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: linear-gradient(to bottom, transparent, var(--surface));
    pointer-events: none;
  }

  /* Method steps: image on top, text below */
  .method-step { grid-template-columns: 1fr; min-height: auto; }
  .method-step:nth-child(even) .method-step-img  { order: 0; }
  .method-step:nth-child(even) .method-step-body { order: 0; }
  .method-step-img { height: 320px; }

  /* Story editorial */
  .story-editorial { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  /* ── Header ── */
  .site-header { z-index: 250; }
  .nav-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }
  .brand { justify-self: start; }
  .brand img { height: 40px; max-width: 158px; }
  .menu-button {
    display: inline-flex;
    justify-self: end;
    position: relative;
    z-index: 320;
  }
  .menu-button.open {
    position: fixed;
    top: 14px;
    right: 20px;
    background: rgba(250,245,235,.96);
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 12px 34px rgba(0,0,0,.22);
  }
  .header-cta { display: none; }

  /* ── Nav: fullscreen editorial overlay ── */
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 80px 32px 60px;
    background: var(--green);
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.38s var(--ease-out),
      transform 0.38s var(--ease-out),
      visibility 0s linear .38s;
    z-index: 300;
    overflow: hidden;
    min-height: 100dvh;
  }
  /* "MENU" micro label */
  .site-nav::before {
    content: 'Menu';
    position: absolute;
    top: clamp(96px, 13vh, 130px);
    left: 50%;
    transform: translateX(-50%);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(140,173,142,.5);
    white-space: nowrap;
    z-index: 1;
  }
  /* Decorative oversized watermark */
  .site-nav::after {
    content: 'KW';
    position: absolute;
    bottom: -8vw;
    right: -4vw;
    font-family: 'Playfair Display', serif;
    font-size: 46vw;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,.028);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.38s var(--ease-out),
      transform 0.38s var(--ease-out),
      visibility 0s;
  }

  /* Nav links: large italic Playfair with stagger entrance */
  .site-nav a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 7.5vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(250,245,235,.6);
    padding: 10px 24px;
    border-radius: var(--r-sm);
    width: 100%;
    text-align: center;
    letter-spacing: -.02em;
    background: transparent;
    opacity: 0;
    transform: translateY(16px);
    transition:
      color 0.22s ease,
      background 0.22s ease,
      opacity 0.42s var(--ease-out),
      transform 0.42s var(--ease-out);
    position: relative;
    z-index: 1;
  }
  .site-nav.open a              { opacity: 1; transform: translateY(0); }
  .site-nav.open a:nth-child(1) { transition-delay: .06s; }
  .site-nav.open a:nth-child(2) { transition-delay: .11s; }
  .site-nav.open a:nth-child(3) { transition-delay: .16s; }
  .site-nav.open a:nth-child(4) { transition-delay: .21s; }
  .site-nav.open a:nth-child(5) { transition-delay: .26s; }
  .site-nav a:hover  { color: var(--cream); background: rgba(255,255,255,.07); }
  .site-nav a.active { color: var(--cream); }
  .site-nav a::after { display: none; }

  /* ── Layout grids ── */
  .page-hero-grid,
  .split-grid,
  .ron-lucy-wrap,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .intro-panel { grid-template-columns: 1fr; align-items: start; gap: 16px; }

  /* ── Stats: horizontal scroll snap with no visible scrollbar ── */
  .stat-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    border-top: none;
    border-bottom: none;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .stat-row::-webkit-scrollbar { display: none; }
  .stat-item {
    flex: 0 0 clamp(168px, 52vw, 228px);
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--surface);
    box-shadow: var(--shadow-xs);
  }

  /* ── Bento: 2-column mosaic (hero · 2-col · hero) ── */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
  }
  .bento-tall { grid-column: 1 / 3; grid-row: 1; }
  .bento-tr-a { grid-column: 1;     grid-row: 2; }
  .bento-tr-b { grid-column: 2;     grid-row: 2; }
  .bento-wide { grid-column: 1 / 3; grid-row: 3; }
  .bento-tall .bento-cell-img { min-height: 260px; }
  .bento-cell-img { min-height: 180px; }

  /* ── Timeline: tighter with realigned connector ── */
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 20px; padding: clamp(24px,4vw,42px) 0; }
  .timeline-dot { width: 36px; height: 36px; font-size: .68rem; }

  /* ── Photo cards: reset inline rotations; hero keeps subtle tilt ── */
  .photo-card { transform: none !important; box-shadow: var(--shadow-md); }
  .hero .photo-card { transform: rotate(-0.7deg) !important; }

  /* ── CTA box ── */
  .cta-box { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-box h2 { max-width: none; font-size: clamp(1.6rem,5vw,2.4rem); }

  .rounded-photo { height: 280px; }

  /* ── Horizontal values: 2-col grid, num spans both rows ── */
  .h-value-item {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    align-items: start;
    padding: 28px 0;
  }
  .h-val-num {
    grid-column: 1; grid-row: 1 / 3;
    font-size: 1.6rem;
    display: flex;
    align-items: flex-start;
    padding-top: 3px;
  }
  .h-val-title  { grid-column: 2; grid-row: 1; }
  .h-value-item p { grid-column: 2; grid-row: 2; max-width: none; margin-top: 4px; }

  /* ── Footer ── */
  .error-grid,
  .error-links { grid-template-columns: 1fr; }
  .error-card {
    min-height: 260px;
    transform: rotate(-1deg);
  }

  .footer-grid { gap: 40px; }
}

@media (max-width: 560px) {
  .container, .container-wide { padding: 0 20px; }
  .brand img { height: 36px; max-width: 146px; }
  .menu-button { width: 44px; height: 44px; }
  .menu-button.open { top: 14px; right: 18px; }

  /* Typography */
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.72rem; }
  .hero-copy h1 { font-size: 2.45rem; }
  .hero-fullbleed-content h1 { font-size: 2.6rem; }
  .hero-illustrated-content h1 { font-size: 2.55rem; }
  .pull-quote { font-size: 1.85rem; }
  .stat-num { font-size: 2.7rem; }

  /* Hero overlap adjusted for phones */
  .hero .hero-photo-wrap { margin-bottom: -52px; }
  .hero .photo-card { transform: rotate(-0.4deg) !important; }
  .hero .photo-card img { height: 220px; }
  .hero + .marquee-band { padding-top: 68px; }

  /* Buttons */
  .btn-group { flex-direction: column; gap: 10px; }
  .btn-group .btn { width: 100%; justify-content: center; }

  /* Bento: single column on small phones */
  .bento-grid { grid-template-columns: 1fr; gap: 10px; }
  .bento-tall,
  .bento-tr-a,
  .bento-tr-b,
  .bento-wide { grid-column: auto; grid-row: auto; }
  .bento-tall .bento-cell-img,
  .bento-cell-img { min-height: 240px; }

  /* Stats: slightly smaller flex items */
  .stat-item { flex: 0 0 clamp(148px, 46vw, 200px); }

  /* Timeline */
  .timeline::before { left: 22px; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }
  .timeline-dot { width: 30px; height: 30px; font-size: .62rem; box-shadow: 0 0 0 5px rgba(22,59,51,.1); }
  .timeline-photo { height: 200px; max-width: 100%; }

  /* Method steps */
  .method-step-img { height: 240px; }
  .method-step-body { padding: 28px 22px; }

  /* Landscape panel */
  .landscape-panel-image { height: 220px; }
  .landscape-panel-body { padding: 28px 22px; }

  /* Photo card */
  .photo-card img { height: 240px; }
  .photo-card-badge { bottom: -12px; left: -8px; padding: 10px 14px; }
  .photo-card-badge .badge-num { font-size: 1.35rem; }

  /* CTA */
  .cta-box { padding: 36px 22px; border-radius: var(--r-lg); }

  /* Contact */
  .contact-form { padding: 24px 18px; border-radius: var(--r-md); }

  /* Legal */
  .legal-card { padding: 24px 18px; }

  /* 404 */
  .error-card { min-height: 220px; border-radius: var(--r-lg); }
  .error-number { font-size: 4.8rem; }
  .error-link-card { min-height: auto; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 6px; }

  /* Hero heights */
  .hero-fullbleed { min-height: 80dvh; }
  .hero-illustrated { min-height: 60dvh; }

  /* Photo banner */
  .photo-banner { height: 200px; border-radius: var(--r-md); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .bento-cell, .method-step, .timeline-item { transition: none; }
  .marquee-track { animation: none; }
  .scroll-hint-line { animation: none; }
  .site-nav a { transition: color 0.2s ease, background 0.2s ease; }
  .floating-cta { transition: none; }
}
