/* ==========================================================================
   VENA CAVA — style.css
   One stylesheet for the whole site.

   RETHEME THE WHOLE SITE by editing the six color lines below.
   Everything else inherits from them.
   ========================================================================== */

:root {
  /* ---- COLOR TOKENS (edit these six lines to retheme) ---- */
  --night:  #191210;   /* page background — charred wood, not pure black */
  --coal:   #241a15;   /* raised panels and cards */
  --ember:  #e4572e;   /* primary flame — links, buttons, the pulse */
  --amber:  #f2a65a;   /* secondary glow — highlights, eyebrows */
  --bone:   #f3e9dc;   /* body text — warm off-white */
  --leaf:   #8fae8b;   /* the garden thread — grown-food green */

  /* ---- DERIVED (rarely need editing) ---- */
  --vein:   #93323b;             /* the deep red of the vein motif */
  --faint:  rgba(243,233,220,.62); /* quieter text */
  --line:   rgba(243,233,220,.14); /* hairline borders */

  /* ---- TYPE SCALE ---- */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", -apple-system, Segoe UI, sans-serif;
  --size-hero: clamp(2.6rem, 7vw, 4.6rem);
  --size-h2:   clamp(1.9rem, 4.5vw, 2.9rem);
  --size-h3:   clamp(1.25rem, 2.5vw, 1.5rem);
  --size-body: 1.0625rem;
  --measure: 62ch;  /* max width of a text column */
}

/* ==========================================================================
   RESET + BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--amber); text-decoration-color: rgba(242,166,90,.4); text-underline-offset: 3px; }
a:hover { color: var(--ember); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--vein); color: var(--bone); }

/* Skip link for keyboard users */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ember); color: var(--night);
  padding: .6rem 1rem; z-index: 100; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   TYPE
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-h2); margin-bottom: 1.2rem; }
h3 { font-size: var(--size-h3); margin: 2rem 0 .5rem; color: var(--amber); }

em { font-family: var(--font-display); font-style: italic; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.lede { font-size: 1.2rem; color: var(--faint); max-width: var(--measure); }

p { max-width: var(--measure); }
p + p { margin-top: 1em; }

.quiet { color: var(--faint); font-size: .95rem; }

/* ==========================================================================
   HEADER + FOOTER
   ========================================================================== */

.site-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem clamp(1.2rem, 5vw, 3.5rem);
  position: relative; z-index: 5;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 560;
  color: var(--bone); text-decoration: none; letter-spacing: .01em;
}
.wordmark:hover { color: var(--amber); }

.site-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.site-nav a {
  color: var(--faint); text-decoration: none;
  font-size: .92rem; letter-spacing: .04em;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--amber); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem clamp(1.2rem, 5vw, 3.5rem) 4rem;
  display: grid; gap: 2rem;
  color: var(--faint); font-size: .95rem;
}
@media (min-width: 700px) {
  .site-footer { grid-template-columns: 2fr 1fr 1fr; }
}
.site-footer h3 { font-size: 1rem; margin-top: 0; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .4rem; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  min-height: 82vh;
  display: grid; align-content: center; justify-items: start;
  padding: 4rem clamp(1.2rem, 5vw, 3.5rem) 7rem;
  position: relative;
  overflow: hidden;
}

/* The fire below the fold: a warm glow rising from the bottom edge */
.hero::after {
  content: "";
  position: absolute; inset: auto 0 -35vh 0; height: 70vh;
  background: radial-gradient(ellipse 90% 60% at 50% 100%,
    rgba(228,87,46,.34) 0%,
    rgba(147,50,59,.18) 45%,
    transparent 72%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero .lede { margin-top: 1.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }

/* ==========================================================================
   BUTTONS — buttons say what happens
   ========================================================================== */

.btn {
  display: inline-block;
  font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.btn:active { transform: scale(.98); }

.btn-ember { background: var(--ember); color: #1b0d07; }
.btn-ember:hover { background: var(--amber); color: #1b0d07; }

.btn-ghost { border-color: var(--line); color: var(--bone); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ==========================================================================
   THE VEIN — the signature element.
   A single line runs down the page connecting every section, and a slow
   pulse of light travels it: blood returning to the heart. Each section
   is a station (a node) on the vein.
   ========================================================================== */

.vein-wrap { position: relative; }

.vein {
  position: absolute;
  top: 0; bottom: 0;
  left: clamp(1.2rem, 5vw, 3.5rem);
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--vein) 6%, var(--vein) 94%, transparent);
}

.vein .pulse {
  position: absolute; left: 50%; top: 0;
  width: 10px; height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 14px 5px rgba(228,87,46,.55);
  animation: travel 9s linear infinite;
}

@keyframes travel {
  from { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  to   { top: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .vein .pulse { animation: none; opacity: 0; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Sections sit to the right of the vein */
.station {
  position: relative;
  padding: 5rem clamp(1.2rem, 5vw, 3.5rem);
  padding-left: clamp(3.2rem, 10vw, 7rem);
}

/* The node: where this section meets the vein */
.station::before {
  content: "";
  position: absolute;
  left: calc(clamp(1.2rem, 5vw, 3.5rem) - 5px);
  top: 5.6rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--night);
  border: 2px solid var(--vein);
}

.station.heart::before { background: var(--ember); border-color: var(--ember); box-shadow: 0 0 12px 3px rgba(228,87,46,.5); }

/* ==========================================================================
   SIX PRINCIPLES
   ========================================================================== */

.principles { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 0; max-width: 44rem; counter-reset: p; }
.principles li {
  counter-increment: p;
  padding: 1.3rem 0 1.3rem 3.4rem;
  border-top: 1px solid var(--line);
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.3;
}
.principles li:last-child { border-bottom: 1px solid var(--line); }
.principles li::before {
  content: counter(p);
  position: absolute; left: 0; top: 1.35rem;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600;
  color: var(--vein);
  border: 1px solid var(--vein);
  border-radius: 50%;
  width: 1.7rem; height: 1.7rem;
  display: grid; place-items: center;
}
.principles .draft { display: block; font-family: var(--font-body); font-size: .8rem; color: var(--leaf); letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; }

/* ==========================================================================
   THE RHYTHM — cadence list. The label encodes real information:
   how often the community breathes this breath.
   ========================================================================== */

.rhythm { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 1.6rem; max-width: 46rem; }
.rhythm li { display: grid; grid-template-columns: 6.4rem 1fr; gap: 1.2rem; align-items: baseline; }
.rhythm .cadence {
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--leaf);
  padding-top: .3rem;
}
.rhythm strong { font-family: var(--font-display); font-weight: 520; font-size: 1.2rem; display: block; }
.rhythm p { color: var(--faint); font-size: .98rem; margin-top: .2rem; }

/* ==========================================================================
   REFLECTIONS — "what the fire taught us"
   ========================================================================== */

.reflections { display: grid; gap: 1.4rem; margin-top: 2rem; max-width: 46rem; }
.reflection {
  background: var(--coal);
  border-left: 3px solid var(--vein);
  padding: 1.4rem 1.6rem;
  border-radius: 0 8px 8px 0;
}
.reflection blockquote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.45; }
.reflection cite { display: block; margin-top: .8rem; font-style: normal; font-size: .85rem; color: var(--faint); }

/* ==========================================================================
   COME CLOSER — the inward arc
   ========================================================================== */

.arc { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 0; max-width: 44rem; }
.arc li { padding: 1.4rem 0; border-top: 1px solid var(--line); }
.arc li:last-child { border-bottom: 1px solid var(--line); }
.arc strong { font-family: var(--font-display); font-weight: 520; font-size: 1.2rem; color: var(--amber); display: block; margin-bottom: .3rem; }
.arc p { color: var(--faint); font-size: .98rem; }

/* ==========================================================================
   FIRE JAM PAGE
   ========================================================================== */

.notice {
  background: var(--coal);
  border: 1px solid var(--amber);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin: 1.6rem 0;
  max-width: 46rem;
  color: var(--amber);
  font-weight: 500;
}

.norms { list-style: none; padding: 0; display: grid; gap: 1rem; margin-top: 1.4rem; max-width: var(--measure); }
.norms li { padding-left: 1.6rem; position: relative; }
.norms li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
}

.rsvp-box {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.6rem;
  max-width: 46rem;
}
.rsvp-box .btn { margin-top: 1.2rem; }

/* ==========================================================================
   404
   ========================================================================== */

.lost { min-height: 70vh; display: grid; place-content: center; text-align: center; padding: 2rem; }
.lost .btn { margin-top: 2rem; justify-self: center; }

/* ==========================================================================
   SMALL SCREENS
   ========================================================================== */

@media (max-width: 560px) {
  .rhythm li { grid-template-columns: 1fr; gap: .2rem; }
  .vein { left: .8rem; }
  .station { padding-left: 2.4rem; }
  .station::before { left: calc(.8rem - 5px); }
}

/* ==========================================================================
   v1 ADDITIONS — the land map, the portal, forms
   ========================================================================== */

/* ---- The land map (public + portal) ---- */
.map-wrap {
  position: relative;
  max-width: 52rem;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--coal);
}
.map-wrap svg { display: block; width: 100%; height: auto; }

.bed-dot {
  position: absolute;
  width: 26px; height: 26px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--night);
  cursor: pointer;
  display: grid; place-items: center;
  font: 600 .68rem var(--font-body);
  color: var(--night);
  transition: transform .15s ease;
  padding: 0;
}
.bed-dot:hover { transform: translate(-50%, -50%) scale(1.2); }
.bed-dot.open    { background: var(--leaf); }
.bed-dot.claimed { background: var(--ember); }
.bed-dot.resting { background: var(--faint); }

.map-legend { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 1rem; font-size: .88rem; color: var(--faint); }
.map-legend span::before {
  content: ""; display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; margin-right: .45rem;
}
.map-legend .lg-open::before { background: var(--leaf); }
.map-legend .lg-claimed::before { background: var(--ember); }
.map-legend .lg-resting::before { background: var(--faint); }

.bed-panel {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem;
  margin-top: 1.2rem;
  max-width: 52rem;
}
.bed-panel h3 { margin-top: 0; }
.bed-panel img { border-radius: 8px; margin-top: 1rem; max-height: 260px; object-fit: cover; }

/* ---- Portal chrome ---- */
.portal-tabs {
  display: flex; gap: .4rem; flex-wrap: wrap;
  padding: 0 clamp(1.2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.portal-tabs button {
  background: none; border: none;
  color: var(--faint);
  font: 500 .95rem var(--font-body);
  padding: .9rem 1.1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.portal-tabs button[aria-selected="true"] { color: var(--amber); border-bottom-color: var(--ember); }

.panel { padding: 3rem clamp(1.2rem, 5vw, 3.5rem); }
.panel[hidden] { display: none; }

.card {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem;
  max-width: 46rem;
  margin-top: 1.4rem;
}
.card h3 { margin-top: 0; }

.item-list { list-style: none; padding: 0; display: grid; gap: .8rem; margin-top: 1rem; }
.item-list li {
  border-top: 1px solid var(--line);
  padding-top: .8rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  font-size: .98rem;
}
.item-list .meta { color: var(--faint); font-size: .85rem; white-space: nowrap; }

/* ---- Forms ---- */
label { display: block; font-size: .85rem; color: var(--faint); margin: 1rem 0 .3rem; }
input[type="text"], input[type="email"], input[type="date"], textarea, select {
  width: 100%; max-width: 30rem;
  background: var(--night);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  font: 400 1rem var(--font-body);
  padding: .7rem .9rem;
}
input:focus, textarea:focus, select:focus { border-color: var(--amber); outline: none; }
textarea { min-height: 5.5rem; resize: vertical; }
.check { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .95rem; color: var(--bone); }
.check input { width: auto; }
button.btn { cursor: pointer; font-family: var(--font-body); margin-top: 1.2rem; }
.btn-small { padding: .4rem .9rem; font-size: .85rem; margin-top: 0; }

/* ---- Toast + badges ---- */
.toast {
  position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  background: var(--ember); color: var(--night);
  font-weight: 600; padding: .8rem 1.4rem; border-radius: 999px;
  z-index: 50; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.toast.show { opacity: 1; }

.badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 999px;
  background: var(--vein); color: var(--bone);
  vertical-align: middle;
}
.badge.leaf { background: var(--leaf); color: var(--night); }

.demo-banner {
  background: var(--vein); color: var(--bone);
  text-align: center; font-size: .88rem;
  padding: .55rem 1rem;
}

/* ==========================================================================
   v3a ADDITIONS — the story, the mirror wall, things we make
   ========================================================================== */

/* ---- The keepers ---- */
.keepers-card { display: grid; gap: 1.6rem; margin-top: 2rem; max-width: 46rem; }
@media (min-width: 640px) { .keepers-card { grid-template-columns: 240px 1fr; align-items: start; } }
.keepers-card img { border-radius: 12px; border: 1px solid var(--line); }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: grid; place-content: center;
  text-align: center;
  color: var(--faint); font-size: .85rem; font-style: italic;
  background: var(--coal);
}

/* ---- The ledger ---- */
.ledger {
  list-style: none; padding: 0; margin-top: 2.4rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 1.6rem 2.4rem; max-width: 52rem;
}
.ledger li {
  border-top: 1px solid var(--line);
  padding-top: .8rem;
  font-size: .95rem; color: var(--faint);
}
.ledger .count {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 520; line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}

/* ---- The clothespin wall ---- */
.wall { max-width: 62rem; }
.twine-row { margin-bottom: .6rem; }
.twine { display: block; width: 100%; height: 26px; }
.pins {
  display: flex; flex-wrap: wrap; gap: 1.8rem;
  justify-content: center;
  padding: 0 .5rem 2.6rem;
  margin-top: -8px; /* cards hang from the line */
}
.pin-card {
  position: relative;
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem 1.4rem 1.2rem;
  width: min(19rem, 100%);
  margin: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.pin-card:nth-child(3n+1) { transform: rotate(-1.4deg); }
.pin-card:nth-child(3n+2) { transform: rotate(1.1deg) translateY(6px); }
.pin-card:nth-child(3n)   { transform: rotate(-0.6deg) translateY(2px); }
.pin-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem; line-height: 1.5;
}
.pin-card figcaption { margin-top: .9rem; font-size: .82rem; color: var(--faint); }
.clothespin {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 12px; height: 26px;
  background: linear-gradient(#8a6d3b, #6d5530);
  border-radius: 3px;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,.18);
}
.clothespin::after {
  content: ""; position: absolute; left: 50%; top: 9px;
  transform: translateX(-50%);
  width: 3px; height: 8px; background: #362a1a; border-radius: 2px;
}

/* ---- Things we make ---- */
.goods {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  max-width: 62rem;
}
.goods .card { margin-top: 0; max-width: none; }
.price {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--amber);
  margin-top: .8rem;
}

/* ==========================================================================
   v3b ADDITIONS — the tentpoles and the year
   ========================================================================== */

/* ---- The Firewalk: deeper darkness ---- */
body.ceremony {
  --night: #0e0a08;
  --coal: #1a120e;
  --line: rgba(243,233,220,.12);
}
body.ceremony .hero::after {
  background: radial-gradient(ellipse 90% 65% at 50% 100%,
    rgba(228,87,46,.5) 0%, rgba(147,50,59,.24) 45%, transparent 74%);
}

/* ---- The Retreat: the dawn inversion ---- */
body.dawn {
  --night: #f0e6d2;
  --coal: #e6d8bd;
  --bone: #2b2018;
  --faint: rgba(43,32,24,.66);
  --line: rgba(43,32,24,.16);
  --amber: #a95f1e;
  --leaf: #5d7a58;
  --vein: #a2444d;
}
body.dawn .hero::after {
  background: radial-gradient(ellipse 90% 60% at 50% 100%,
    rgba(228,87,46,.22) 0%, rgba(242,166,90,.18) 45%, transparent 72%);
}
body.dawn .pin-card, body.dawn .reflection { box-shadow: 0 10px 24px rgba(43,32,24,.15); }
body.dawn ::selection { background: var(--amber); color: #fff; }
body.dawn .btn-ember { color: #fff; }

/* ---- Ceremony figures (stations with imagery) ---- */
.ceremony-fig { margin: 3.5rem 0 0; max-width: 52rem; }
.ceremony-fig .photo-placeholder.wide,
.ceremony-fig img {
  aspect-ratio: 16 / 7; width: 100%;
  border-radius: 12px; object-fit: cover;
}
.ceremony-fig figcaption { margin-top: 1.2rem; }
.ceremony-fig h3 { margin-top: 0; }

/* ---- Seat tiers ---- */
.tiers { list-style: none; padding: 0; margin: 1.8rem 0 0; max-width: 44rem; display: grid; gap: 0; }
.tiers li {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  flex-wrap: wrap;
  font-size: 1.02rem;
}
.tiers li:last-child { border-bottom: 1px solid var(--line); }
.tiers strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--amber); }
.tier-left { font-size: .85rem; color: var(--leaf); white-space: nowrap; }
.tier-left.gone { color: var(--faint); text-decoration: line-through; }

/* ---- Email capture ---- */
.capture { margin-top: 2.4rem; max-width: 34rem; }
.capture-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .4rem; }
.capture-row input { flex: 1 1 14rem; max-width: none; }
.capture-row .btn { margin-top: 0; }
.capture-msg { margin-top: .8rem; }

/* ---- The Year ring ---- */
.ring-wrap { max-width: 46rem; margin: 0 auto; }
.ring-wrap svg { width: 100%; height: auto; display: block; }
.ring-wrap a { text-decoration: none; }
.ring-wrap a:hover circle { filter: brightness(1.3); }
@media (prefers-reduced-motion: reduce) {
  .ring-pulse { display: none; }
}

/* ---- Keeper's desk: tentpole tier grid ---- */
.tier-grid {
  display: grid;
  grid-template-columns: 5rem 1fr 1fr;
  gap: .6rem 1rem;
  align-items: center;
  max-width: 26rem;
  margin-top: .6rem;
}
.tier-grid span { font-family: var(--font-display); color: var(--amber); font-size: 1rem; }
.tier-grid label { margin: 0; display: flex; align-items: center; gap: .5rem; font-size: .8rem; }
.tier-grid input { width: 4rem; padding: .4rem .6rem; }

/* ==========================================================================
   v3c ADDITIONS — native RSVP + waiver, ledger, gigs
   ========================================================================== */

.waiver-text {
  max-height: 14rem; overflow-y: auto;
  background: var(--night);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: .9rem; color: var(--faint);
  margin-top: .6rem;
}

#sig-pad {
  display: block; width: 100%; max-width: 30rem; height: 180px;
  background: var(--night);
  border: 1px dashed var(--amber);
  border-radius: 8px;
  touch-action: none;
  cursor: crosshair;
  margin-top: .4rem;
}
#sig-clear { margin-top: .8rem; }

#rsvp-form label { color: var(--bone); }
#rsvp-form .quiet { color: var(--faint); }

.donation-input {
  width: 4.4rem; padding: .35rem .5rem;
  background: var(--night); border: 1px solid var(--line);
  border-radius: 6px; color: var(--bone);
  font: 400 .9rem var(--font-body);
}

.ledger-cols { display: grid; gap: 1.6rem; }
@media (min-width: 640px) { .ledger-cols { grid-template-columns: 1fr 1fr; } }
