/* ============================================================
   VIS GERYN — Life Coaching
   Design system: sage & cream · Jost + Mulish · refined motion
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --cream:        #FBF8F2;
  --cream-deep:   #F4EEE3;
  --sand:         #EAE1D1;
  --paper:        #FFFFFF;

  /* Sage scale */
  --sage-50:      #EEF1E9;
  --sage-100:     #DCE3D0;
  --sage-200:     #C7D2B6;
  --sage-300:     #AEBD97;
  --sage:         #8C9C77;
  --sage-600:     #72855A;
  --sage-700:     #5A6B47;
  --sage-800:     #485636;
  --sage-900:     #353F28;

  /* Ink */
  --ink:          #34373A;
  --ink-2:        #595E63;
  --ink-soft:     #868B90;

  /* Lines & misc */
  --line:         rgba(52, 55, 58, .12);
  --line-soft:    rgba(52, 55, 58, .07);

  /* Type */
  --font-display: 'Jost', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Mulish', ui-sans-serif, system-ui, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: .82rem;
  --fs-body:    clamp(1rem, .96rem + .25vw, 1.12rem);
  --fs-lead:    clamp(1.12rem, 1.02rem + .55vw, 1.4rem);
  --fs-h4:      clamp(1.15rem, 1.05rem + .4vw, 1.35rem);
  --fs-h3:      clamp(1.4rem, 1.2rem + .9vw, 1.9rem);
  --fs-h2:      clamp(1.9rem, 1.5rem + 1.9vw, 3rem);
  --fs-h1:      clamp(2.5rem, 1.9rem + 3.2vw, 4.6rem);

  /* Spacing */
  --container:   1180px;
  --container-narrow: 820px;
  --gutter:      clamp(1.25rem, 4vw, 3rem);
  --section-y:   clamp(4.5rem, 9vw, 8.5rem);

  /* Radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 30px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(52,55,58,.05), 0 4px 14px rgba(52,55,58,.05);
  --shadow-md: 0 10px 30px -8px rgba(53,63,40,.13);
  --shadow-lg: 0 26px 60px -18px rgba(53,63,40,.28);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .55s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--sage-200); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); font-weight: 300; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 500; }
p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-700);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sage);
}
.eyebrow.is-centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sage);
}

.lead { font-size: var(--fs-lead); color: var(--ink-2); line-height: 1.6; }
.text-balance { text-wrap: balance; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.is-narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-sage-soft  { background: var(--sage-50); }
.bg-paper { background: var(--paper); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: var(--fs-lead); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--sage-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.7em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background .3s ease;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--sage-800);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(-1px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost::after { background: var(--sage-50); }
.btn--ghost:hover { --btn-fg: var(--sage-800); border-color: var(--sage-300); }

.btn--light {
  --btn-bg: var(--paper);
  --btn-fg: var(--sage-800);
}
.btn--light::after { background: var(--cream-deep); }

.btn .arrow { transition: transform .4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Text link with animated underline */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  color: var(--sage-700);
  position: relative;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline .arrow { transition: transform .4s var(--ease-out); }
.link-underline:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--sage-900);
  color: var(--sage-50);
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .55rem;
  min-height: 40px;
}
.topbar__tagline { letter-spacing: .03em; opacity: .85; }
.topbar a.topbar__call {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  transition: color .3s ease;
}
.topbar a.topbar__call svg { width: 16px; height: 16px; }
.topbar a.topbar__call:hover { color: var(--sage-200); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px -16px rgba(53,63,40,.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(.85rem, 1.5vw, 1.2rem);
}

/* Brand / logo */
.brand { display: inline-flex; align-items: center; color: var(--ink); }
.brand__img {
  height: clamp(50px, 5.2vw, 64px);
  width: auto;
  display: block;
  transition: transform .6s var(--ease-out), opacity .4s ease;
}
.brand:hover .brand__img { transform: translateY(-2px); }

/* Primary nav */
.nav__menu { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.6rem); }
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-2);
  padding-block: .4rem;
  transition: color .3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--sage-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--sage-800); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

/* Burger */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
  position: relative;
  border: 1px solid var(--line);
}
.nav__toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 1.6px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), opacity .3s ease;
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.nav__toggle span:nth-child(3) { transform: translate(-50%, 6px); }
body.nav-open .nav__toggle span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: var(--section-y); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__content { max-width: 620px; }
.hero h1 { margin: 1.2rem 0 1.4rem; }
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-700);
}
.hero__lead { max-width: 30em; margin-bottom: 2.2rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  margin-top: 2.8rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--sage-800); }
.hero__meta-item span { font-size: .85rem; color: var(--ink-soft); letter-spacing: .02em; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: -28px; bottom: 34px;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .85rem;
  max-width: 240px;
}
.hero__badge .dot { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--sage-50); display: grid; place-items: center; color: var(--sage-700); }
.hero__badge p { font-size: .85rem; line-height: 1.4; color: var(--ink-2); }
.hero__badge strong { display: block; color: var(--ink); }

/* floating decorative steps in hero bg */
.hero__deco {
  position: absolute;
  top: -6%; right: -8%;
  width: 46%;
  max-width: 540px;
  color: var(--sage-100);
  opacity: .8;
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   PLACEHOLDER MEDIA (sage gradient + label)
   ============================================================ */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 20% 10%, var(--sage-100), transparent 60%),
    linear-gradient(150deg, var(--sage-200), var(--sage-50));
  color: var(--sage-700);
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  mask-image: radial-gradient(120% 120% at 50% 30%, #000, transparent 75%);
}
.ph__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}
.ph__label svg { width: 34px; height: 34px; opacity: .7; }
.ph__label small { display:block; font-weight:600; letter-spacing:.04em; text-transform:none; opacity:.7; font-size:.72rem; }

/* ============================================================
   CARDS — feature / value
   ============================================================ */
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s ease;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage-100); }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--sage-50);
  color: var(--sage-700);
  margin-bottom: 1.3rem;
  transition: background .4s ease, color .4s ease, transform .5s var(--ease-out);
}
.card:hover .card__icon { background: var(--sage-700); color: #fff; transform: rotate(-6deg); }
.card__icon svg { width: 26px; height: 26px; }
.card h3, .card h4 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }
.card__num {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 500;
  color: var(--sage);
  letter-spacing: .08em;
}

/* Situation chips/cards grid */
.tile {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 1.5rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile__mark { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--sage-50); color: var(--sage-700); display: grid; place-items: center; }
.tile__mark svg { width: 22px; height: 22px; }
.tile h4 { margin-bottom: .3rem; }
.tile p { font-size: .92rem; line-height: 1.55; }

/* ============================================================
   PROCESS — numbered steps with connector
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); position: relative; counter-reset: step; }
.steps::before {
  content: "";
  position: absolute;
  top: 34px; left: 12%; right: 12%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--sage-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step__num {
  width: 68px; height: 68px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--sage-200);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sage-800);
  position: relative;
  transition: transform .5s var(--ease-out), background .4s ease, color .4s ease, border-color .4s;
}
.step:hover .step__num { background: var(--sage-700); color: #fff; border-color: var(--sage-700); transform: translateY(-4px) scale(1.04); }
.step h4 { margin-bottom: .5rem; }
.step p { font-size: .96rem; }

/* ============================================================
   SPLIT feature (image + text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-lg);
}
.split__media.is-wide { aspect-ratio: 5 / 5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 1.2rem; }
.split__body p + p { margin-top: 1rem; }
.signature {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sage-800);
}

/* Quote */
.quote {
  max-width: 880px; margin-inline: auto; text-align: center;
}
.quote blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -.01em;
}
.quote .mark { font-size: 4rem; line-height: 0; color: var(--sage-300); font-family: var(--font-display); display:block; margin-bottom: .4rem; }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-weight: 700; color: var(--sage-700); letter-spacing: .04em; font-size: .95rem; }

/* List with check marks */
.checklist { display: grid; gap: .9rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-2); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--sage-600); margin-top: .15rem; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta {
  position: relative;
  background: var(--sage-800);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(2.6rem, 6vw, 5rem);
  overflow: hidden;
  text-align: center;
}
.cta h2 { color: #fff; margin-bottom: 1rem; }
.cta p { color: var(--sage-100); font-size: var(--fs-lead); max-width: 46ch; margin: 0 auto 2rem; }
.cta__deco {
  position: absolute;
  right: -4%; bottom: -20%;
  width: 38%;
  color: rgba(255,255,255,.08);
  pointer-events: none;
}
.cta .btn--light { position: relative; z-index: 1; }

/* ============================================================
   FORMS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.contact-list { display: grid; gap: 1.3rem; margin-top: 2rem; }
.contact-list a, .contact-list div { display: flex; gap: 1rem; align-items: center; }
.contact-list .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--sage-50); color: var(--sage-700); display: grid; place-items: center; transition: background .4s, color .4s; }
.contact-list a:hover .ic { background: var(--sage-700); color: #fff; }
.contact-list span small { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .15rem; }
.contact-list span b { font-weight: 700; color: var(--ink); font-size: 1.05rem; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.3rem; position: relative; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .5rem; color: var(--ink); }
.field label .req { color: var(--sage-600); }
.field input, .field textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--paper);
  box-shadow: 0 0 0 4px var(--sage-50);
}
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .4rem; }
.form-status { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--r-sm); font-size: .95rem; display: none; }
.form-status.is-success { display: block; background: var(--sage-50); color: var(--sage-800); border: 1px solid var(--sage-200); }
.form-status.is-error { display: block; background: #FBEDE9; color: #93402B; border: 1px solid #E8C4B8; }
.form-card .btn { width: 100%; margin-top: .5rem; }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); position: relative; }
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero h1 { margin-bottom: 1.2rem; max-width: 16ch; }
.page-hero p { font-size: var(--fs-lead); max-width: 54ch; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--sage-700); }
.breadcrumb span { opacity: .5; }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { font-size: var(--fs-h3); margin: 2.6rem 0 1rem; }
.prose h3 { font-size: var(--fs-h4); margin: 1.8rem 0 .6rem; font-weight: 600; }
.prose p { margin-bottom: 1rem; }
.prose ul { display: grid; gap: .55rem; margin: .6rem 0 1.4rem; padding-left: 1.2rem; list-style: disc; }
.prose ul li { color: var(--ink-2); }
.prose a { color: var(--sage-700); text-decoration: underline; text-underline-offset: 3px; }
.prose .meta-table { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; }
.prose .meta-table th, .prose .meta-table td { text-align: left; padding: .8rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose .meta-table th { width: 38%; font-weight: 700; color: var(--ink); }
.prose .meta-table td { color: var(--ink-2); }
.note-box {
  background: var(--sage-50);
  border: 1px dashed var(--sage-200);
  border-radius: var(--r-sm);
  padding: 1rem 1.2rem;
  font-size: .9rem;
  color: var(--sage-800);
  margin: 1.5rem 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--sage-900); color: var(--sage-100); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: 3rem;
}
.site-footer .brand { margin-bottom: 1.3rem; }
.site-footer .brand__img { height: 78px; }
.footer-about p { color: var(--sage-200); font-size: .95rem; max-width: 34ch; }
.footer-col h5 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-300); margin-bottom: 1.1rem; font-weight: 700; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: var(--sage-100); font-size: .96rem; transition: color .3s ease, padding-left .3s ease; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact a { display: flex; gap: .6rem; align-items: center; }
.footer-contact svg { width: 17px; height: 17px; color: var(--sage-300); flex: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: .85rem; color: var(--sage-300);
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATION (refined & subtle)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .split__media { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.4rem; max-width: 460px; margin-inline: auto; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 68px 1fr; gap: 1.2rem; text-align: left; align-items: center; }
  .step__num { margin: 0; }
  .step .step__body { grid-column: 2; }

  /* Mobile nav */
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem var(--gutter);
    background: var(--cream);
    box-shadow: -20px 0 60px -20px rgba(53,63,40,.35);
    transform: translateX(100%);
    transition: transform .5s var(--ease-out);
    z-index: 90;
  }
  body.nav-open .nav__menu { transform: translateX(0); }
  .nav__link { font-size: 1.5rem; font-family: var(--font-display); font-weight: 300; color: var(--ink); }
  .nav__menu .btn { margin-top: 1rem; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(53,63,40,.35);
    opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s; z-index: 80;
    backdrop-filter: blur(2px);
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 620px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar__tagline { display: none; }
  .topbar__inner { justify-content: center; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -24px; }
  .hero__media { margin-bottom: 2rem; }
  .btn-row { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; }
}

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--sage-800); color: #fff; padding: .7rem 1.2rem;
  border-radius: var(--r-sm); z-index: 999;
  transition: top .3s ease;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--sage-700); outline-offset: 3px; border-radius: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
