/* palette: bg=#EEF1E8 fg=#1B2A20 accent=#1FA85C */
/* fonts: display="Fraunces" body="Work Sans" mono="Space Mono" */

:root {
  --bg: #EEF1E8;        /* pale sage cream — dominant */
  --bg-alt: #E3E9DB;    /* alternating sage section */
  --bg-deep: #132019;   /* dark forest band */
  --fg: #1B2A20;        /* deep forest text */
  --fg-soft: #35463B;   /* softened forest */
  --muted: #6E7C70;     /* sage-gray secondary */
  --accent: #1FA85C;    /* emerald from reference */
  --accent-deep: #15743E;
  --accent-soft: #D6E7D2;
  --cream: #F6F4EC;
  --border: rgba(27, 42, 32, 0.14);
  --border-soft: rgba(27, 42, 32, 0.08);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Work Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 4px 24px -4px rgba(19, 32, 25, 0.10);
  --shadow-lg: 0 18px 48px -12px rgba(19, 32, 25, 0.20);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-block;
  margin: 0 0 20px;
}
.eyebrow::before { content: '❧ '; opacity: 0.7; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
}
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; line-height: 1.15; }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--fg-soft); line-height: 1.6; }

em { font-style: italic; color: var(--accent-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 9999px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease), color 0.3s;
  will-change: transform;
}
.btn--primary { background: var(--accent-deep); color: var(--cream); }
.btn--primary:hover { background: var(--fg); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent-deep); color: var(--accent-deep); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--fg); }
.btn--light:hover { background: var(--accent); color: var(--cream); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 500; font-size: 15px; color: var(--accent-deep);
  transition: gap 0.35s var(--ease);
}
.arrow-link::after { content: '→'; transition: transform 0.35s var(--ease); }
.arrow-link:hover { gap: 0.8em; }
.arrow-link:hover::after { transform: translateX(3px); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(238, 241, 232, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header[data-scrolled="true"] { box-shadow: 0 1px 0 var(--border-soft); border-bottom-color: var(--border-soft); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--accent), var(--accent-deep));
  position: relative; flex-shrink: 0;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35);
}
.brand__mark::after {
  content: ''; position: absolute; inset: 8px;
  border: 1.5px solid rgba(246,244,236,0.85); border-radius: 50%;
  border-left-color: transparent; border-bottom-color: transparent;
  transform: rotate(-30deg);
}
.nav { display: none; gap: 34px; }
.nav a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em; color: var(--fg-soft);
  position: relative; transition: color 0.3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--accent-deep); transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--accent-deep); }
.header__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--fg); transition: transform 0.35s var(--ease), opacity 0.3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% 10%, #2CBE6E 0%, #1FA85C 42%, #12703F 100%);
  color: var(--cream);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.16;
  background-image: url('images/img-00ca3172d6a6.webp');
  background-size: cover; background-position: center;
  animation: heroZoom 9s var(--ease) forwards; mix-blend-mode: soft-light;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__ornament {
  position: absolute; z-index: 1; pointer-events: none; opacity: 0.5;
  color: rgba(246,244,236,0.5);
}
.hero__ornament--tl { top: 22px; left: 22px; }
.hero__ornament--br { bottom: 22px; right: 22px; transform: rotate(180deg); }
.hero__inner { position: relative; z-index: 2; display: grid; gap: 48px; padding: 120px 0 90px; }
@media (min-width: 940px) {
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 60px; }
}
.hero .eyebrow { color: rgba(246,244,236,0.9); }
.hero .eyebrow::before { content: '❧ '; opacity: 0.8; }
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 8.4rem);
  line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 28px;
}
.hero h1 em { color: var(--cream); font-style: italic; position: relative; }
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 3px;
  background: rgba(246,244,236,0.55); border-radius: 2px;
}
.hero__sub { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(246,244,236,0.92); max-width: 30ch; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero stat card (mirrors reference phone number) */
.stat-card {
  background: var(--cream); color: var(--fg);
  border-radius: 22px; padding: 34px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.stat-card::before {
  content: ''; position: absolute; inset: 10px; border: 1px solid var(--border-soft); border-radius: 14px; pointer-events: none;
}
.stat-card__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.stat-card__num { font-family: var(--serif); font-size: clamp(3.4rem, 8vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; color: var(--accent-deep); margin: 10px 0 6px; }
.stat-card__cap { font-size: 15px; color: var(--fg-soft); margin: 0; }
.stat-card__bar { height: 6px; border-radius: 3px; background: var(--accent-soft); margin: 22px 0 10px; overflow: hidden; }
.stat-card__bar span { display: block; height: 100%; width: 74%; background: var(--accent); border-radius: 3px; }
.stat-card__row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- feature icons row (mirrors reference 4-icon band) ---------- */
.features { background: var(--cream); border-bottom: 1px solid var(--border-soft); }
.features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; }
@media (min-width: 860px) { .features__grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--cream); padding: 40px 28px; text-align: center;
  transition: background 0.4s var(--ease);
}
.feature:hover { background: var(--bg); }
.feature__ic { width: 54px; height: 54px; margin: 0 auto 20px; color: var(--accent-deep); }
.feature h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- services / catalog cards ---------- */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { color: var(--fg-soft); margin-top: 18px; }

.cards { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--cream); border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 34px 30px 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }
.card__no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.card h3 { margin: 14px 0 12px; }
.card p { color: var(--fg-soft); font-size: 16px; }
.card__meta { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }
.card__img { border-radius: 14px; overflow: hidden; margin: -6px -4px 22px; aspect-ratio: 16 / 10; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }

/* ---------- manifesto dark band ---------- */
.manifesto { background: var(--bg-deep); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.manifesto__quote { max-width: 940px; margin: 0 auto; }
.manifesto__mark { font-family: var(--serif); font-size: clamp(6rem, 14vw, 11rem); line-height: 0.4; color: var(--accent); display: block; height: 0.5em; opacity: 0.85; }
.manifesto p.big {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.9rem); line-height: 1.16; letter-spacing: -0.02em;
  margin: 40px 0 30px;
}
.manifesto em { color: var(--accent); }
.manifesto__by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,244,236,0.6); }
.manifesto__deco { position: absolute; inset: 26px; border: 1px solid rgba(246,244,236,0.12); border-radius: 8px; pointer-events: none; }

/* ---------- feature spotlight (split) ---------- */
.spotlight__grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .spotlight__grid { grid-template-columns: 1fr 1fr; gap: 64px; } .spotlight__grid.reverse > .spotlight__media { order: 2; } }
.spotlight__media { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); position: relative; }
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__media::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(246,244,236,0.35); border-radius: 12px; pointer-events: none; }
.spotlight ul.ticks { margin: 26px 0 32px; display: grid; gap: 14px; }
.spotlight ul.ticks li { position: relative; padding-left: 34px; color: var(--fg-soft); }
.spotlight ul.ticks li::before {
  content: '✦'; position: absolute; left: 0; top: 0; color: var(--accent-deep); font-size: 18px;
}

/* ---------- stats band ---------- */
.stats { background: var(--bg-alt); }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; text-align: center; }
@media (min-width: 820px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.2rem); line-height: 1; letter-spacing: -0.03em; color: var(--accent-deep); }
.stat__lbl { font-size: 14px; color: var(--fg-soft); margin-top: 12px; max-width: 22ch; margin-inline: auto; }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--cream); border: 1px solid var(--border-soft); border-radius: 18px;
  padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.quote__stars { color: var(--accent); letter-spacing: 3px; font-size: 14px; margin-bottom: 18px; }
.quote p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; color: var(--fg); }
.quote__who { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 14px; }
.avatar--mono {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--serif); font-size: 18px; color: var(--cream);
}
.quote__name { font-weight: 600; font-size: 15px; }
.quote__role { font-size: 13px; color: var(--muted); }
.ph-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; opacity: 0.7; margin-top: 6px; }

/* ---------- team / principles text cards ---------- */
.people { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .people { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .people { grid-template-columns: repeat(4, 1fr); } }
.person { background: var(--cream); border: 1px solid var(--border-soft); border-radius: 16px; padding: 30px 26px; }
.person .avatar--mono { width: 58px; height: 58px; font-size: 22px; margin-bottom: 20px; }
.person h3 { font-size: 1.25rem; margin-bottom: 4px; }
.person__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent-deep); text-transform: uppercase; }
.person p { font-size: 15px; color: var(--fg-soft); margin: 16px 0 0; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 30px 0; font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.6rem); letter-spacing: -0.01em; }
.faq__q span.sign { flex-shrink: 0; width: 30px; height: 30px; position: relative; }
.faq__q span.sign::before, .faq__q span.sign::after { content: ''; position: absolute; background: var(--accent-deep); left: 50%; top: 50%; transition: transform 0.4s var(--ease); }
.faq__q span.sign::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq__q span.sign::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq__item[data-open="true"] .faq__q span.sign::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { padding: 0 40px 30px 0; color: var(--fg-soft); margin: 0; }
.faq__item[data-open="true"] .faq__a { max-height: 340px; }

/* ---------- CTA / form ---------- */
.cta { background: var(--bg-deep); color: var(--cream); }
.cta__grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .cta__grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; } }
.cta h2 { color: var(--cream); }
.cta h2 em { color: var(--accent); }
.cta p { color: rgba(246,244,236,0.82); }
.cta__contact { margin-top: 30px; display: grid; gap: 6px; font-size: 15px; }
.cta__contact a { color: var(--accent); }
.form { background: rgba(246,244,236,0.05); border: 1px solid rgba(246,244,236,0.14); border-radius: 20px; padding: 34px 30px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,244,236,0.7); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 15px;
  background: rgba(246,244,236,0.06); border: 1px solid rgba(246,244,236,0.18); border-radius: 10px;
  color: var(--cream); transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,244,236,0.4); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: rgba(246,244,236,0.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form__note { font-size: 12px; color: rgba(246,244,236,0.55); margin: 16px 0 0; line-height: 1.5; }
.form__note a { color: var(--accent); }

/* ---------- footer ---------- */
.footer { background: var(--cream); border-top: 1px solid var(--border-soft); padding: 72px 0 40px; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 34ch; margin-top: 18px; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin: 0 0 18px; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 15px; color: var(--fg-soft); transition: color 0.3s; }
.footer li a:hover { color: var(--accent-deep); }
.footer__bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border-soft); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent-deep); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: center; padding: 24px; background: rgba(19,32,25,0.42); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 36px; max-width: 480px; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; margin: 0; }
.cookie-popup__card p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--border); border-radius: 9999px; cursor: pointer; font-size: 14px; font-weight: 500; flex: 1; transition: background 0.3s, color 0.3s; }
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--accent-deep); color: var(--cream); border-color: var(--accent-deep); }
.cookie-popup__actions button:last-child:hover { background: var(--fg); }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: clamp(120px, 18vw, 200px) 0 clamp(60px, 8vw, 100px); background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 8vw, 6rem); line-height: 0.98; letter-spacing: -0.03em; max-width: 16ch; }
.page-hero p { max-width: 54ch; margin-top: 26px; color: var(--fg-soft); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

/* ---------- prose (legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 48px 0 18px; }
.prose h3 { margin: 32px 0 12px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.7; }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-deep); text-decoration: underline; }
.prose__meta { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* ---------- thanks ---------- */
.thanks { min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks__mark { width: 84px; height: 84px; margin: 0 auto 32px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-deep); }
.thanks h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 7vw, 4.5rem); letter-spacing: -0.02em; }
.thanks p { max-width: 46ch; margin: 22px auto 34px; color: var(--fg-soft); }
