/* ==========================================================================
   Ringback shared styles
   Warm, human, trustworthy. The opposite of a techbro AI startup.
   Palette direction: "Main Street". Warm ivory ground, deep walnut ink,
   a saturated terracotta CTA, and a quiet forest-green trust accent.
   ========================================================================== */

:root {
  /* --- Surfaces & ground --- */
  --ivory:        #fcf8f1;   /* page background, feels like daylight */
  --ivory-deep:   #f5eee1;   /* alternating section / sand panels */
  --card:         #ffffff;
  --sand:         #f1e7d6;   /* soft warm accent fill */

  /* --- Ink / text --- */
  --ink:          #2c2723;   /* primary text, warm near-black */
  --ink-soft:     #574d44;   /* secondary text */
  --ink-muted:    #857a6e;   /* tertiary / captions */

  /* --- Terracotta (the CTA, most saturated, inviting thing on the page) --- */
  --clay:         #c25a3c;
  --clay-deep:    #a8462c;
  --clay-soft:    #f7e6dd;

  /* --- Forest green (quiet trust accent) --- */
  --forest:       #3c5a48;
  --forest-soft:  #e8efe8;

  /* --- Lines & shadows --- */
  --line:         #e7ddcd;
  --line-strong:  #d8cbb6;
  --shadow-sm:    0 1px 2px rgba(58, 45, 32, 0.05);
  --shadow-md:    0 12px 30px -12px rgba(58, 45, 32, 0.18);
  --shadow-lg:    0 30px 60px -24px rgba(58, 45, 32, 0.28);

  /* --- Type --- */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Rhythm --- */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* --------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--clay-soft); color: var(--clay-deep); }

/* ----------------------------- Layout helpers ---------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 112px); }
.section--sand { background: var(--ivory-deep); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 16px;
}

/* ------------------------------ Typography -------------------------------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; }

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); line-height: 1.25; }

.lede { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }

.section__head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head p { margin-top: 16px; }

/* -------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  min-height: 52px;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }

.btn--primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(168, 70, 44, 0.7);
}
.btn--primary:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(168, 70, 44, 0.65); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }

.btn--lg { padding: 19px 36px; font-size: 1.08rem; min-height: 60px; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--clay-deep);
  transition: gap 0.18s ease, color 0.18s ease;
}
.textlink:hover { gap: 11px; color: var(--clay); }

/* --------------------------------- Header -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 248, 241, 0.82);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--clay);
  flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__menu-btn { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta .btn { padding: 13px 22px; min-height: 46px; }
}

/* ---------------------------------- Hero --------------------------------- */
.hero { position: relative; padding-block: clamp(56px, 8vw, 92px); }
.hero::before {
  /* soft warm wash behind the hero, never a tech gradient */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 520px at 78% 18%, var(--sand) 0%, rgba(241,231,214,0) 62%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--forest-soft);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 15px 7px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--forest); flex: none; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero__sub { max-width: 32ch; margin-bottom: 34px; }
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__reassure {
  margin-top: 26px;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-muted); font-size: 0.92rem; font-weight: 600;
}
.hero__reassure svg { color: var(--forest); flex: none; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__sub { max-width: 46ch; }
  .hero__visual { order: -1; max-width: 360px; margin-inline: auto; }
}

/* ----------------------------- Phone mockup ------------------------------ */
.phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  background: #1f1b18;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}
.phone::after { /* speaker */
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 5px; border-radius: 3px; background: #3a342f;
}
.phone__screen {
  background: linear-gradient(180deg, #fdfaf4 0%, #f6efe3 100%);
  border-radius: 30px;
  padding: 40px 16px 22px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone__status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; font-weight: 800; color: var(--ink-soft); padding: 0 6px 4px;
}
.missed-call {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--clay);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.missed-call__icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--clay-soft); color: var(--clay-deep);
  display: grid; place-items: center; flex: none;
}
.missed-call__t { font-weight: 800; font-size: 0.9rem; }
.missed-call__s { font-size: 0.76rem; color: var(--ink-muted); }
.chat-day { text-align: center; font-size: 0.7rem; color: var(--ink-muted); font-weight: 700; margin: 4px 0; }
.bubble {
  max-width: 84%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 0.86rem;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
}
.bubble--them {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
  color: var(--ink-soft);
}
.bubble--us {
  align-self: flex-end;
  background: var(--forest);
  color: #f3f8f3;
  border-bottom-right-radius: 6px;
}
.bubble--us .who { display: block; font-size: 0.68rem; font-weight: 800; opacity: 0.75; margin-bottom: 3px; }
.bubble__meta { align-self: flex-end; font-size: 0.66rem; color: var(--ink-muted); font-weight: 700; margin-top: -4px; }
.phone__auto {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px; align-self: center;
  background: var(--forest-soft); color: var(--forest);
  font-size: 0.72rem; font-weight: 800;
  padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ------------------------------- Problem --------------------------------- */
.problem { text-align: center; }
.problem .quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto;
}
.problem .quote strong { color: var(--clay); font-weight: 600; }
.problem .kicker { margin-top: 26px; color: var(--ink-soft); font-size: 1.05rem; }

/* ------------------------------ How it works ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--clay-soft); color: var(--clay-deep);
  font-family: var(--serif); font-weight: 600; font-size: 1.25rem;
  margin-bottom: 22px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }
.step__line {
  display: block; margin-top: 16px;
  font-size: 0.86rem; font-style: italic; color: var(--ink-muted);
  border-left: 2px solid var(--line-strong); padding-left: 12px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Two flow tracks: calls (clay) and messages (forest) */
.flow { display: grid; gap: clamp(40px, 6vw, 64px); }
.flow__label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--ink); margin-bottom: 24px;
}
.flow__label .pin {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: var(--clay-soft); color: var(--clay-deep);
}
.flow__track--msg .flow__label .pin { background: var(--forest-soft); color: var(--forest); }
.flow__track--msg .step__num { background: var(--forest-soft); color: var(--forest); }

/* ------------------------------- Services -------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 28px); }
.card {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card--feature { border-color: var(--clay); box-shadow: 0 18px 40px -20px rgba(194, 90, 60, 0.4); position: relative; }
.card__tag {
  position: absolute; top: -13px; left: 30px;
  background: var(--clay); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 6px 13px; border-radius: var(--radius-pill);
}
.card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--forest-soft); color: var(--forest);
  margin-bottom: 22px;
}
.card--feature .card__icon { background: var(--clay-soft); color: var(--clay-deep); }
.card h3 { margin-bottom: 4px; }
.card__label { font-size: 0.82rem; font-weight: 700; color: var(--ink-muted); margin-bottom: 14px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; margin-bottom: 22px; }
.card .textlink { margin-top: auto; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* -------------------------------- Why us --------------------------------- */
.why__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.reasons { display: grid; gap: 26px; }
.reason { display: flex; gap: 18px; }
.reason__icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: var(--sand); color: var(--clay-deep);
}
.reason h3 { font-size: 1.18rem; margin-bottom: 5px; }
.reason p { color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 860px) { .why__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ------------------------------- Who it's for ---------------------------- */
.audience { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.audience__chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 12px 20px 12px 16px;
  font-weight: 700; font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.audience__chip:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.audience__chip svg { color: var(--clay); flex: none; }

/* ----------------------------- Founder's note ---------------------------- */
.founder {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.founder__avatars { display: flex; justify-content: center; margin-bottom: 24px; }
.founder__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest); color: #f3f8f3;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem;
  border: 3px solid var(--card);
}
.founder__avatar:nth-child(2) { margin-left: -16px; background: var(--clay); }
.founder blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.founder__sig { margin-top: 24px; font-weight: 800; color: var(--ink-soft); }
.founder__sig span { display: block; font-weight: 600; color: var(--ink-muted); font-size: 0.9rem; }

/* ---------------------------------- FAQ ---------------------------------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 800; font-size: 1.08rem; color: var(--ink);
  text-align: left;
  padding: 24px 4px;
}
.faq__q:focus-visible { outline: 3px solid var(--clay); outline-offset: 2px; border-radius: 6px; }
.faq__icon {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--line-strong); color: var(--clay-deep);
  display: grid; place-items: center;
  transition: transform 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--clay); color: #fff; border-color: var(--clay); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq__a-inner { padding: 0 4px 26px; color: var(--ink-soft); font-size: 1rem; max-width: 62ch; }

/* ------------------------------- Final CTA ------------------------------- */
.final {
  position: relative;
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 88px) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 50% 0%, rgba(255,255,255,0.08), transparent 70%);
}
.final > * { position: relative; }
.final h2 { color: #fdfaf4; }
.final p { color: #d6e2d8; margin: 18px auto 34px; max-width: 44ch; font-size: 1.12rem; }
.final .btn--primary { box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4); }
.final__note { margin-top: 20px; color: #a9c0ad; font-size: 0.9rem; font-weight: 600; }

/* --------------------------------- Footer -------------------------------- */
.site-footer { background: var(--ivory-deep); border-top: 1px solid var(--line); padding-block: 54px; }
.footer__grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__tagline { color: var(--ink-soft); margin-top: 10px; max-width: 30ch; font-size: 0.98rem; }
.footer__right { text-align: right; }
.footer__right a { font-weight: 800; color: var(--clay-deep); }
.footer__right a:hover { color: var(--clay); }
.footer__legal { margin-top: 10px; color: var(--ink-muted); font-size: 0.86rem; }
@media (max-width: 620px) { .footer__right { text-align: left; } }

/* ------------------------------ Quote page ------------------------------- */
.quote-hero { padding-block: clamp(48px, 7vw, 72px) clamp(20px, 3vw, 32px); text-align: center; }
.quote-hero .lede { max-width: 52ch; margin: 18px auto 0; }
.quote-wrap { max-width: 680px; margin-inline: auto; padding-bottom: clamp(64px, 9vw, 110px); }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 26px; }
.field > label, .field__legend {
  display: block;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 9px;
}
.field__hint { font-weight: 600; color: var(--ink-muted); font-size: 0.85rem; margin: -4px 0 10px; }
.req { color: var(--clay); }

.input, .select, .textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23857a6e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 46px; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--clay); background: #fff; box-shadow: 0 0 0 4px var(--clay-soft); }

.input.invalid, .select.invalid, .textarea.invalid { border-color: #c0392b; }
.field__error { display: none; color: #c0392b; font-size: 0.86rem; font-weight: 700; margin-top: 8px; }
.field.has-error .field__error { display: block; }

.choices { display: grid; gap: 12px; border: none; padding: 0; margin: 0; }
.choice {
  display: flex; align-items: flex-start; gap: 13px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 15px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.choice:hover { border-color: var(--ink-muted); }
.choice input { margin-top: 3px; accent-color: var(--clay); width: 18px; height: 18px; flex: none; }
.choice span { font-weight: 600; color: var(--ink-soft); }
.choice:has(input:checked) { border-color: var(--clay); background: var(--clay-soft); }
.choice:has(input:checked) span { color: var(--ink); font-weight: 700; }
.choice:has(input:focus-visible) { outline: 3px solid var(--clay); outline-offset: 2px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; }
.form-reassure {
  margin-top: 16px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: var(--ink-muted); font-size: 0.9rem; font-weight: 600;
}
.form-reassure svg { color: var(--forest); flex: none; }

/* Thank-you state */
.thanks { text-align: center; padding: clamp(36px, 6vw, 64px) 20px; }
.thanks__icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--forest-soft); color: var(--forest);
  display: grid; place-items: center; margin: 0 auto 26px;
}
.thanks h2 { margin-bottom: 14px; }
.thanks p { color: var(--ink-soft); max-width: 42ch; margin: 0 auto 12px; font-size: 1.08rem; }
.thanks__sig { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 1.15rem; margin-top: 18px; }
[hidden] { display: none !important; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.05ms !important; }
}
