/* ============================================================
   LIFAFAA V8 — the paper world
   Swiss in its bones, Indian in its heart.
   One serif (the grandmother) · one grotesk (the accountant)
   Paper ivory · warm ink · shagun red <5% · gold as foil only
   ============================================================ */

:root {
  --paper:    #F7F1E4;
  --paper-2:  #F1E9D6;
  --paper-3:  #EBE1C9;
  --ink:      #26201A;
  --ink-72:   rgba(38,32,26,0.72);
  --ink-55:   rgba(38,32,26,0.55);
  --ink-38:   rgba(38,32,26,0.40);
  --line:     rgba(38,32,26,0.16);
  --line-2:   rgba(38,32,26,0.09);
  --red:      #A8402C;
  --red-deep: #8C3322;
  --gold:     #B98A3A;
  --gold-hi:  #E3C58B;
  --night:    #191310;
  --night-2:  #221A14;

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Familjen Grotesk", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-ceremony: 680ms;   /* seal moments only */
  --t-entr: 520ms;
  --t-fast: 180ms;

  --mx: clamp(1.4rem, 5.5vw, 6.5rem);
  --maxw: 1200px;

  --h1: clamp(2.6rem, 3.4vw + 1rem, 4.4rem);
  --h2: clamp(2.1rem, 2.8vw + 1rem, 3.6rem);
  --body: 1.0625rem;
}

* { box-sizing: border-box; }
::selection { background: rgba(168,64,44,0.18); color: var(--ink); }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* paper grain over everything, faint */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer, section { position: relative; z-index: 2; }

.shell { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--mx); }
.shell.narrow { max-width: 880px; }
.center { text-align: center; }

/* ---------- type voices ---------- */
h1, h2, h3, .wordmark, .serif-note, .turn-law {
  font-family: var(--serif); font-optical-sizing: auto; font-weight: 380;
  letter-spacing: -0.015em; margin: 0;
}
h1 { font-size: var(--h1); line-height: 1.06; max-width: 17ch; }
h2 { font-size: var(--h2); line-height: 1.08; max-width: 17ch; margin-bottom: 1.5rem; }
h1 em, h2 em { font-style: italic; font-weight: 360; }
h3 { font-size: 1.35rem; font-weight: 480; letter-spacing: 0; }

.kicker {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; font-weight: 420;
  letter-spacing: 0; text-transform: none; color: var(--red);
  margin: 0 0 1.4rem;
}
.plain { color: var(--ink-72); max-width: 52ch; font-size: 1.1rem; line-height: 1.6; }
.serif-note { font-size: clamp(1.25rem, 1.6vw, 1.6rem); font-style: italic; color: var(--ink-72); max-width: 36ch; line-height: 1.45; }
.fine { font-size: 0.85rem; line-height: 1.55; color: var(--ink-38); max-width: 60ch; }
.legal { font-size: 0.8rem; line-height: 1.6; color: var(--ink-38); max-width: 86ch; border-top: 1px solid var(--line-2); padding-top: 1.4rem; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity var(--t-entr) var(--ease) var(--d,0ms), transform var(--t-entr) var(--ease) var(--d,0ms); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- emblem & nav ---------- */
.emblem { width: 30px; height: auto; color: var(--ink); flex: none; }
.emblem .coin { fill: var(--gold); }
.emblem.big { width: 44px; margin-bottom: 1.4rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); }
.wordmark { font-size: 1.45rem; font-weight: 460; letter-spacing: 0.005em; }

.nav {
  position: fixed; left: 0; right: 0; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--mx);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom-color: var(--line-2);
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.95rem; color: var(--ink-72); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink); border-radius: 2px; padding: 0.5em 1.2em;
  color: var(--ink) !important; font-weight: 600;
}
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
@media (max-width: 620px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---------- acts ---------- */
.act { padding-block: clamp(6rem, 13vh, 11rem); }
.act.paper-2 { background: var(--paper-2); }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding-block: clamp(6.5rem, 13vh, 9rem) clamp(3rem, 8vh, 6rem);
  background: url("paper-bg.jpg") center / cover no-repeat;
  position: relative;
}
.hero::after { /* blend the photographic paper into the flat page color */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 22%;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.hero .hero-grid { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; width: 100%; }
.hero h1 { margin: 0 0 1.7rem; }
.actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero .fine { margin-top: 2.4rem; }
.hero-object { margin: 0; display: flex; justify-content: center; }
.hero-env {
  display: block; width: min(100%, 440px); height: auto;
  filter: drop-shadow(0 26px 38px rgba(38,32,26,0.16));
}
.hero-object svg { width: min(100%, 430px); height: auto; filter: drop-shadow(0 34px 50px rgba(38,32,26,0.18)); }
.coin-one { font-family: var(--serif); font-size: 26px; font-weight: 500; fill: #5F471D; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-object svg { width: min(78vw, 360px); } }

/* ---------- cta ---------- */
.cta {
  display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 1rem;
  color: var(--paper); background: var(--red); border: 1px solid var(--red-deep);
  border-radius: 2px; padding: 0.95em 1.9em; text-decoration: none; cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.cta:active { transform: none; }
.quiet-link {
  font-size: 1rem; color: var(--ink-72); text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.quiet-link:hover { color: var(--red); border-color: var(--red); }

/* ---------- the ledger (museum labels) ---------- */
.ledger { margin-top: clamp(2.4rem, 5vw, 3.6rem); border-top: 1px solid var(--line); }
.entry {
  display: grid; grid-template-columns: 0.7fr 1.3fr auto; gap: 1.2rem; align-items: baseline;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
}
.entry .who { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 440; }
.entry .meta { font-size: 0.92rem; color: var(--ink-55); }
.entry .amt { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-variant-numeric: tabular-nums lining-nums; color: var(--red); white-space: nowrap; }
.ledger + .fine { margin-top: 1.4rem; }
@media (max-width: 640px) { .entry { grid-template-columns: 1fr auto; } .entry .meta { grid-column: 1 / -1; order: 3; } }

/* ---------- sealed card ---------- */
.seal-stage { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.sealed-card {
  margin: 0; background: linear-gradient(172deg, #FCF8EE, #EFE5CD);
  border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(2rem, 4vw, 3rem); text-align: center;
  box-shadow: 0 28px 44px -22px rgba(38,32,26,0.28);
}
.sc-top { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink-72); margin: 0 0 1.6rem; }
.sc-coin {
  position: relative; width: 64px; height: 64px; margin: 0 auto 1.6rem; border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, var(--gold-hi), var(--gold) 55%, #7E5E26 100%);
  border: 1px solid #6E5220; display: grid; place-items: center; overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(255,244,214,0.7), inset 0 -2px 4px rgba(70,50,14,0.5);
}
.sc-coin span { font-family: var(--serif); font-size: 1.5rem; color: #5F471D; }
.sc-coin span.deva, .coin-one { font-family: "Tiro Devanagari Hindi", var(--serif); }
.sc-coin span.deva { font-size: 1.35rem; text-shadow: 0 1px 0 rgba(255,244,214,0.5), 0 -1px 1px rgba(70,50,14,0.4); }
.sc-coin .glint { position: absolute; top: -60%; left: -130%; width: 50%; height: 220%; transform: rotate(10deg);
  background: linear-gradient(100deg, transparent, rgba(255,250,235,0.85), transparent); }
.sc-coin.shimmer .glint { animation: glint var(--t-ceremony) var(--ease) 1 both; }
@keyframes glint { 0% { left: -130%; } 100% { left: 170%; } }
@media (prefers-reduced-motion: reduce) { .sc-coin.shimmer .glint { animation: none; } }
.sc-dates { font-size: 0.88rem; color: var(--ink-55); margin: 0; }
@media (max-width: 760px) { .seal-stage { grid-template-columns: 1fr; gap: 2.4rem; } .sealed-card { max-width: 380px; margin-inline: auto; } }

/* ---------- the quiet part: postmarks + entries not yet written ---------- */
.postmarks { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: clamp(2rem, 4vw, 2.8rem); }
.pm {
  width: 50px; height: 50px; border-radius: 50%; flex: none;
  border: 1.5px solid rgba(38,32,26,0.28); color: rgba(38,32,26,0.30);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em; line-height: 1.1;
}
.pm b { font-family: var(--serif); font-weight: 440; font-size: 0.62rem; letter-spacing: 0.02em; }
.pm.on { border-color: rgba(38,32,26,0.82); color: rgba(38,32,26,0.85);
  background: radial-gradient(circle at 38% 32%, rgba(38,32,26,0.05), transparent 70%); }
.pm.on.red { border-color: rgba(168,64,44,0.85); color: var(--red); background: radial-gradient(circle at 38% 32%, rgba(168,64,44,0.06), transparent 70%); }
.pm:nth-child(3n) { transform: rotate(2deg); }
.pm:nth-child(3n+1) { transform: rotate(-1.6deg); }
.pm:nth-child(4n) { transform: rotate(1deg); }
.postmarks + .fine { margin-top: 1.2rem; }

.sealed-opened {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem);
  margin: 0 0 clamp(2.8rem, 5.5vw, 4rem);
}
.so-label { display: flex; flex-direction: column; gap: 0.15rem;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--ink-55); }
.so-label b { font-family: var(--serif); font-style: normal; font-weight: 440; font-size: clamp(1.6rem, 2.4vw, 2.1rem); color: var(--ink); letter-spacing: 0.01em; }
.so-dots { flex: 1; display: flex; justify-content: space-between; align-items: center; min-width: 0; }
.so-dots i { width: 3.5px; height: 3.5px; border-radius: 50%; background: rgba(38,32,26,0.28); flex: none; }
.so-dots i:last-child { background: var(--gold); width: 5px; height: 5px; }

.stitch-fig { margin: clamp(1.8rem, 3.5vw, 2.6rem) 0 0; }
.stitch-fig img { display: block; width: min(58%, 270px); height: auto; opacity: 0.9; }
.ledger.future .entry.has-fig { grid-template-columns: 128px 0.9fr 1.2fr auto; align-items: center; }
.fent { display: flex; align-items: center; }
.fent img { display: block; width: 112px; height: auto; opacity: 0.95; }
.fent.empty { min-height: 1px; }
@media (max-width: 640px) {
  .ledger.future .entry.has-fig { grid-template-columns: 72px 1fr auto; }
  .ledger.future .entry.has-fig .meta { grid-column: 2 / -1; order: 3; }
  .fent img { width: 62px; }
}
.how-fig { margin: clamp(3rem, 6vw, 4.5rem) 0 0; }
.how-fig img { display: block; width: min(50%, 250px); height: auto; opacity: 0.9; }
.ledger.future .entry .who, .ledger.future .entry .amt { color: rgba(38,32,26,0.55); }
.ledger.future .entry .meta { color: rgba(38,32,26,0.42); font-family: var(--serif); font-style: italic; font-size: 0.95rem; text-transform: none; letter-spacing: 0; }
.ledger.future .entry .amt { color: rgba(168,64,44,0.55); }
.ledger.future .entry.hers .who, .ledger.future .entry.hers .meta { color: var(--ink); }
.ledger.future .entry.hers .amt { color: var(--red); }
#quiet .ledger { margin-top: clamp(1.6rem, 3vw, 2.2rem); }
@media (max-width: 560px) { .pm { width: 44px; height: 44px; } }

/* ---------- the demonstration (seal a gift) ---------- */
.demo { margin-top: 2.2rem; max-width: 460px; }
.demo-q { font-family: var(--serif); font-size: 1.35rem; font-weight: 440; margin: 0 0 1.1rem; }
.demo-field { min-height: 96px; }
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink); cursor: pointer;
  background: #FCF8EE; border: 1px solid var(--line); border-radius: 2px; padding: 0.55em 1em;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.chip:hover { border-color: var(--red); }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.demo textarea {
  width: 100%; min-height: 92px; resize: none;
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.45; color: var(--ink);
  background: #FCF8EE; border: 1px solid var(--line); border-radius: 2px; padding: 0.8em 0.9em;
}
.demo textarea:focus { outline: none; border-color: var(--ink-55); }
.demo textarea::placeholder { color: var(--ink-38); }
.demo-hint { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink-55); min-height: 1.5em; margin: 0.9rem 0 0; }
.demo-nav { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.3rem; min-height: 44px; }
.demo-next {
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; cursor: pointer;
  color: var(--paper); background: var(--ink); border: 1px solid var(--ink); border-radius: 2px;
  padding: 0.7em 1.5em; transition: background var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.demo-next:hover { background: #000; }
.demo-next[disabled] { opacity: 0.3; cursor: default; }
.demo-back { font-family: var(--sans); font-size: 0.92rem; color: var(--ink-55); background: none; border: 0; cursor: pointer; padding: 0.4em; }
.demo-back:hover { color: var(--ink); }
.sealed-card.sealed { box-shadow: 0 28px 44px -22px rgba(168,64,44,0.3); border-color: rgba(168,64,44,0.3); }

/* ---------- asked plainly ---------- */
.asked { margin-top: clamp(3.5rem, 7vw, 5.5rem); max-width: 880px; }
.ask-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.5rem 3rem; padding: 1.7rem 0; border-top: 1px solid var(--line); align-items: baseline; }
.ask-row h3 { font-family: var(--serif); font-weight: 440; font-style: italic; font-size: clamp(1.25rem, 1.8vw, 1.55rem); line-height: 1.3; margin: 0; }
.ask-row p { margin: 0; color: var(--ink-72); font-size: 0.99rem; line-height: 1.65; }
@media (max-width: 720px) { .ask-row { grid-template-columns: 1fr; gap: 0.7rem; } }

/* ---------- ceremony (the turn) ---------- */
.ceremony { background: var(--night); color: #F3EBDC; }
.ceremony::before {
  content: ""; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.turn-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.turn-copy h2 { color: #F7F1E4; margin-bottom: 1.6rem; }
.turn-copy p { color: rgba(243,235,220,0.75); max-width: 46ch; font-size: 1.1rem; line-height: 1.6; }
.turn-law { font-size: clamp(1.3rem, 1.8vw, 1.7rem); font-style: italic; color: var(--gold-hi) !important; margin-top: 1.8rem; }
.turn-photo { margin: 0; border-radius: 4px; overflow: hidden; border: 1px solid rgba(243,235,220,0.14);
  box-shadow: 0 44px 70px -36px rgba(0,0,0,0.8); }
.turn-photo img { display: block; width: 100%; height: auto; }
@media (max-width: 820px) { .turn-grid { grid-template-columns: 1fr; gap: 2.6rem; } .turn-photo { max-width: 420px; margin-inline: auto; } }

/* ---------- machinery ---------- */
#machinery h2 { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.8rem, 3.5vw, 3.5rem); }
.step { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.step .n { font-family: var(--serif); font-size: 1rem; color: var(--red); letter-spacing: 0.08em; }
.step h3 { margin: 0.7rem 0 0.6rem; }
.step p { margin: 0; color: var(--ink-72); font-size: 0.98rem; line-height: 1.6; max-width: 32ch; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; gap: 0; } .step { padding-block: 1.5rem; } }

.proofs {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}
.proof { background: #FCF8EE; border: 1px solid var(--line-2); border-radius: 4px; padding: clamp(1.6rem, 3vw, 2.4rem); }
.proof h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; margin: 0 0 0.6rem; }
.proof p { margin: 0; color: var(--ink-72); font-size: 0.97rem; line-height: 1.6; }
@media (max-width: 720px) { .proofs { grid-template-columns: 1fr; } }

.charter-panel {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  border: 1px solid var(--ink); border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--paper);
}
.charter-panel .kicker { margin-bottom: 1.2rem; }
.charter-panel ul { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.charter-panel li {
  font-family: var(--serif); font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.4;
  padding: 0.65rem 0; border-bottom: 1px solid var(--line-2);
}
.charter-panel li:last-child { border-bottom: 0; }
#machinery .fine { margin-top: 2.4rem; }

/* ---------- begin ---------- */
.begin { background: var(--paper-2); }
.begin h2 { margin: 0 auto 1.4rem; }
.begin .plain { margin: 0 auto 2.4rem; }
.invite { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.invite input {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #FCF8EE; border: 1px solid var(--line); border-radius: 2px;
  padding: 0.95em 1.2em; min-width: min(320px, 80vw);
}
.invite input:focus { outline: none; border-color: var(--ink-55); }
.invite input::placeholder { color: var(--ink-38); }
.invite.err input { border-color: var(--red); }
.invite-done { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink-72); }
.begin .fine { margin: 1.4rem auto 0; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-2); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.foot-grid .fine { margin-top: 0.7rem; }
.foot-links { display: flex; flex-direction: column; gap: 0.6rem; }
.foot-links a { font-size: 0.92rem; color: var(--ink-55); text-decoration: none; }
.foot-links a:hover { color: var(--red); }

/* ============================================================
   Subpages — charter & how
   ============================================================ */
.page-head { padding: clamp(5rem, 11vh, 8rem) 0 clamp(2.5rem, 5vw, 4rem); }
.page-head h1 { font-size: clamp(2.6rem, 4vw + 1rem, 4.6rem); }
.page-head .plain { margin-top: 1.6rem; }

.vows { list-style: none; margin: 0; padding: 0; counter-reset: vow; max-width: 760px; }
.vows li {
  counter-increment: vow; position: relative;
  font-family: var(--serif); font-size: clamp(1.3rem, 1.9vw, 1.7rem); line-height: 1.4;
  padding: clamp(1.4rem, 2.5vw, 2rem) 0 clamp(1.4rem, 2.5vw, 2rem) 3.6rem;
  border-bottom: 1px solid var(--line);
}
.vows li::before {
  content: counter(vow, decimal-leading-zero); position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; color: var(--red);
}
.vows li small { display: block; font-family: var(--sans); font-size: 0.9rem; color: var(--ink-55); margin-top: 0.4rem; }
.signed { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink-72); margin-top: 2.6rem; }

.closure { margin-top: clamp(4rem, 8vw, 6rem); border: 1px solid var(--ink); border-radius: 4px; padding: clamp(2rem, 4vw, 3rem); max-width: 760px; }
.closure h2 { font-size: clamp(1.7rem, 2.4vw, 2.4rem); margin-bottom: 1.2rem; }
.closure p { color: var(--ink-72); max-width: 58ch; }

/* the Because page */
.because { list-style: none; margin: clamp(2.5rem, 5vw, 4rem) 0 0; padding: 0; max-width: 820px; }
.because li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--line);
}
.because .b-line { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.4; }
.because .b-meta { font-size: 0.88rem; color: var(--ink-55); white-space: nowrap; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .because li { flex-direction: column; gap: 0.4rem; } }
.so-that {
  font-family: var(--serif); font-style: italic; font-weight: 380;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.5; color: var(--ink-72);
  max-width: 34ch; margin: clamp(3.5rem, 7vw, 5rem) 0 0;
}
.stop-block { margin-top: clamp(4rem, 8vw, 6rem); text-align: center; }
.stop-block h2 { margin: 0 auto 1rem; }
.stop-block .serif-note { margin: 0 auto; }
.page-cta { text-align: center; padding-block: clamp(4rem, 8vw, 6rem); }
.back-link { display: inline-block; margin-top: 2.5rem; }
