/* Sacred Ember Kitchen — site styles
   Mobile-first. Breakpoints: 640 (sm), 900 (md), 1200 (lg). */

:root {
  --kraft: #ede4d3;
  --cream: #fbf6ec;
  --cream-2: #f1ecdc;
  --olive: #4f5d2f;
  --olive-dark: #36411e;
  --olive-light: #7a8a55;
  --ember: #b85f2c;
  --ember-light: #d9773f;
  --ink: #2f3323;
  --ink-soft: #4a4f3a;
  --muted: #6e6650;
  --muted-2: #8a8470;
  --line: #b9ad93;
  --gold: #e8c990;
  --board-line: #5b6047;
  --board-text: #b9b39c;
  --board-text-2: #d9dcc4;

  --serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --sans: 'Work Sans', 'Segoe UI', system-ui, sans-serif;
  --hand: 'Caveat', 'Segoe Script', cursive;

  --pad: 20px;
  --maxw: 1200px;
  --radius: 6px;
  --shadow: 0 8px 24px rgba(50, 40, 20, 0.08);
  --shadow-lg: 0 12px 30px rgba(30, 30, 15, 0.25);
}

@media (min-width: 640px) { :root { --pad: 32px; } }
@media (min-width: 900px) { :root { --pad: 48px; } }
@media (min-width: 1200px) { :root { --pad: 64px; } }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--kraft);
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.015) 0 2px, transparent 2px 4px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); }
a:hover { color: var(--olive-dark); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; line-height: 1.12; text-wrap: balance; }
p { margin: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: 56px; padding-bottom: 56px; }
@media (min-width: 900px) { .section { padding-top: 88px; padding-bottom: 88px; } }

.hand { font-family: var(--hand); font-weight: 500; color: var(--ember); font-size: 28px; line-height: 1.1; }
.hand--olive { color: var(--olive); }
.hand--gold { color: var(--gold); }
@media (min-width: 900px) { .hand { font-size: 32px; } }

.lede { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
@media (min-width: 900px) { .lede { font-size: 18px; } }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 14px 26px;
  border-radius: 4px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 16px; text-decoration: none; cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn--olive { background: var(--olive); color: var(--kraft); }
.btn--olive:hover { background: var(--olive-dark); color: var(--kraft); }
.btn--ember { background: var(--ember); color: var(--cream); }
.btn--ember:hover { background: #9a4d22; color: var(--cream); }
.btn--outline { background: transparent; border-color: var(--olive); color: var(--olive); }
.btn--outline:hover { background: rgba(79, 93, 47, 0.08); }
.btn--outline-light { background: transparent; border-color: var(--board-text); color: var(--kraft); }
.btn--outline-light:hover { border-color: var(--kraft); color: var(--kraft); }
.btn--cream { background: var(--cream); color: var(--ember); }
.btn--cream:hover { background: #fff; color: var(--ember); }
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: 15px; }

/* ---------- banner + nav ---------- */
.banner {
  background: var(--olive); color: var(--kraft);
  text-align: center; padding: 8px var(--pad);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
@media (min-width: 640px) { .banner { font-size: 13px; letter-spacing: 0.1em; padding: 10px var(--pad); } }

.nav { position: relative; }
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 16px; padding-bottom: 16px; }
@media (min-width: 900px) { .nav__row { padding-top: 26px; padding-bottom: 26px; } }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo svg { width: 38px; height: 38px; flex: none; }
@media (min-width: 900px) { .logo svg { width: 48px; height: 48px; } .logo { gap: 14px; } }
.logo__name { white-space: nowrap; font-family: var(--serif); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; }
.logo__sub { font-family: var(--hand); font-size: 16px; color: var(--olive); line-height: 1; margin-top: 2px; }
@media (min-width: 900px) { .logo__name { font-size: 20px; letter-spacing: 0.12em; } .logo__sub { font-size: 18px; } }

.nav__links { display: none; }
.nav__actions { display: none; }
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: 0; color: var(--ink); cursor: pointer;
}
@media (min-width: 900px) {
  .nav__links { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
  .nav__links a { color: var(--ink); text-decoration: none; }
  .nav__links a:hover { color: var(--olive); }
  .nav__actions { display: flex; align-items: center; gap: 22px; }
  .nav__actions .link { font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
  .nav__toggle { display: none; }
}
.nav__drawer {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px var(--pad) 20px; border-bottom: 2px dashed var(--line);
}
.nav__drawer a { padding: 12px 0; font-size: 18px; font-weight: 500; color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(185, 173, 147, 0.4); }
.nav__drawer .btn { margin-top: 12px; }
.nav.is-open .nav__drawer { display: flex; }
@media (min-width: 900px) { .nav__drawer { display: none !important; } }

/* ---------- hero ---------- */
.hero { padding-top: 32px; padding-bottom: 48px; }
.hero__grid { display: grid; gap: 32px; }
.hero__copy { display: flex; flex-direction: column; gap: 18px; }
.hero__kicker { transform: rotate(-2deg); align-self: flex-start; }
.hero h1 { font-size: clamp(38px, 7vw, 76px); letter-spacing: -0.01em; line-height: 1.04; }
.hero__actions { display: flex; flex-direction: column; gap: 12px; }
.hero__promise { font-family: var(--hand); font-size: 22px; color: var(--olive); }
.hero__media { position: relative; }
.polaroid {
  background: var(--cream); padding: 8px 8px 0; box-shadow: 0 10px 30px rgba(50, 40, 20, 0.18);
  transform: rotate(1.5deg);
}
.polaroid__img { aspect-ratio: 4 / 3; background: #d7c7ab; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px; color: var(--muted); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.polaroid__img img { width: 100%; height: 100%; object-fit: cover; }
.polaroid__caption { font-family: var(--hand); font-size: 20px; color: var(--ink-soft); text-align: center; padding: 10px 8px 12px; }
.stamp {
  position: absolute; top: -18px; right: -6px; width: 104px; height: 104px; border-radius: 50%;
  border: 2px dashed var(--ember); background: var(--kraft); transform: rotate(12deg);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--ember); font-family: var(--serif); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.4;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; align-items: center; }
}
@media (min-width: 900px) {
  .hero { padding-top: 56px; padding-bottom: 80px; }
  .hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; align-items: center; }
  .hero__copy { gap: 26px; }
  .polaroid { transform: rotate(2deg); }
  .stamp { width: 128px; height: 128px; font-size: 12px; top: -34px; right: -26px; }
}

/* ---------- trust strip ---------- */
.trust { border-top: 2px dashed var(--line); border-bottom: 2px dashed var(--line); padding: 24px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.trust__item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.4; }
.trust__item svg { flex: none; width: 24px; height: 24px; color: var(--olive); }
.trust__item strong { display: block; }
.trust__item span { color: var(--muted); }
@media (min-width: 900px) {
  .trust { padding: 36px 0; }
  .trust__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .trust__item { font-size: 15px; gap: 14px; }
  .trust__item svg { width: 28px; height: 28px; }
}

/* ---------- section headers ---------- */
.sh { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.sh--center { align-items: center; text-align: center; }
.sh h2 { font-size: clamp(30px, 4.5vw, 48px); }
@media (min-width: 900px) { .sh { margin-bottom: 48px; } }

/* ---------- steps ---------- */
.steps { display: grid; gap: 16px; }
.step { background: var(--cream); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.step__n { font-family: var(--hand); font-size: 30px; color: var(--ember); line-height: 1; }
.step p { color: var(--ink-soft); }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1200px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; } .step { padding: 32px 28px; } .step__n { font-size: 34px; } }

/* ---------- menu ---------- */
.menu__grid { display: grid; gap: 32px; }
.menu__copy { display: flex; flex-direction: column; gap: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { border: 1.5px solid var(--olive); color: var(--olive); padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.board {
  background: var(--ink); color: var(--kraft); padding: 28px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); transform: rotate(-1deg);
  display: flex; flex-direction: column; gap: 18px;
}
.board__title { font-family: var(--hand); font-size: 30px; text-align: center; color: var(--gold); border-bottom: 1px solid var(--board-line); padding-bottom: 10px; }
.board__item { display: flex; align-items: center; gap: 14px; }
.board__img { flex: none; width: 56px; height: 56px; object-fit: cover; border-radius: 4px; border: 2px solid var(--cream); transform: rotate(-2deg); box-shadow: 0 3px 8px rgba(0,0,0,0.3); }
.board__item:nth-child(even) .board__img { transform: rotate(2deg); }
.board__body { flex: 1; min-width: 0; }
.board__tags { margin-left: auto; }
.board__name { font-family: var(--serif); font-size: 17px; }
.board__desc { font-size: 13px; color: var(--board-text); }
.board__tags { font-size: 11px; font-weight: 600; color: var(--gold); white-space: nowrap; letter-spacing: 0.04em; padding-top: 4px; }
.board__note { font-family: var(--hand); font-size: 20px; color: var(--board-text); text-align: center; border-top: 1px solid var(--board-line); padding-top: 10px; }
@media (min-width: 900px) {
  .menu__grid { grid-template-columns: minmax(0, 1fr) 520px; gap: 72px; align-items: start; }
  .board { padding: 44px 40px; gap: 22px; }
  .board__title { font-size: 34px; }
  .board__name { font-size: 19px; }
  .board__img { width: 72px; height: 72px; }
  .board__desc { font-size: 14px; }
  .board__tags { font-size: 12px; }
  .tag { font-size: 13px; padding: 6px 12px; }
}

/* ---------- packages ---------- */
.packages { background: var(--cream); }
.packs { display: grid; gap: 20px; }
.pack { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; background: var(--cream); position: relative; }
.pack__nick { font-family: var(--hand); font-size: 28px; color: var(--olive); line-height: 1; }
.pack h3 { font-size: 22px; }
.pack__price { font-family: var(--serif); font-size: 34px; line-height: 1; }
.pack__price small { font-family: var(--sans); font-size: 15px; color: var(--muted); }
.pack ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: var(--ink-soft); }
.pack .btn { margin-top: auto; }
.pack--featured { background: var(--olive); color: var(--kraft); border-color: var(--olive); box-shadow: 0 16px 36px rgba(40, 50, 20, 0.25); }
.pack--featured .pack__nick { color: var(--gold); }
.pack--featured .pack__price small { color: var(--board-text); }
.pack--featured ul { color: var(--board-text-2); }
.pack__badge { position: absolute; top: -14px; right: 20px; background: var(--ember); color: var(--cream); font-family: var(--hand); font-size: 19px; padding: 3px 14px; border-radius: 999px; transform: rotate(3deg); }
.packs__intro { text-align: center; color: var(--muted); font-size: 16px; }
@media (min-width: 900px) {
  .packs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
  .pack { padding: 36px 32px; }
  .pack--featured { transform: translateY(-14px); }
  .pack h3 { font-size: 24px; }
  .pack__price { font-size: 40px; }
}

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 18px; }
.quote { background: var(--cream); padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.6; }
.quote cite { font-family: var(--hand); font-style: normal; font-size: 21px; color: var(--olive); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.quote__date { font-family: var(--sans); font-size: 12px; color: var(--muted-2); }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } .quote { padding: 32px; } .quote p { font-size: 17px; } }

/* ---------- sam ---------- */
.sam { background: var(--olive); color: var(--kraft); }
.sam__grid { display: grid; gap: 28px; }
.sam__photo { aspect-ratio: 4 / 5; max-width: 340px; background: var(--olive-light); border: 8px solid var(--kraft); transform: rotate(-2deg); display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.sam__photo img { width: 100%; height: 100%; object-fit: cover; }
.sam__copy { display: flex; flex-direction: column; gap: 16px; }
.sam__copy h2 { font-size: clamp(28px, 4vw, 44px); }
.sam__copy .lede { color: var(--board-text-2); }
.sam__facts { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; color: var(--board-text-2); }
.sam .hand { color: var(--gold); }
@media (min-width: 900px) { .sam__grid { grid-template-columns: 340px minmax(0, 1fr); gap: 72px; align-items: center; } }

/* ---------- area ---------- */
.area__grid { display: grid; gap: 20px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { background: var(--cream); border: 1.5px solid var(--line); padding: 7px 13px; border-radius: 999px; font-size: 14px; }

/* ---------- gift ---------- */
.gift { background: var(--ember); color: var(--cream); border-radius: var(--radius); padding: 32px 24px; display: flex; flex-direction: column; gap: 18px; }
.gift .hand { color: var(--cream); font-size: 26px; }
.gift h3 { font-size: clamp(22px, 3vw, 30px); line-height: 1.2; }
.gift p { opacity: 0.92; }
@media (min-width: 900px) { .gift { flex-direction: row; justify-content: space-between; align-items: center; gap: 40px; padding: 44px 56px; } .gift__copy { display: flex; flex-direction: column; gap: 8px; } .gift .btn { white-space: nowrap; flex: none; } }

/* ---------- faq ---------- */
.faq__grid { display: grid; gap: 28px; }
.faq__list { display: flex; flex-direction: column; }
.faq details { border-bottom: 1.5px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--serif); font-weight: 700; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--hand); font-size: 30px; color: var(--ember); line-height: 1; flex: none; }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); }
@media (min-width: 900px) { .faq__grid { grid-template-columns: 360px minmax(0, 1fr); gap: 72px; } .faq summary { font-size: 20px; padding: 24px 0; } }

/* ---------- final cta + footer ---------- */
.cta { background: var(--ink); color: var(--kraft); text-align: center; }
.cta__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta h2 { font-size: clamp(32px, 5vw, 60px); max-width: 820px; }
.cta p { color: var(--board-text); }
.cta__actions { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 420px; }
.cta__mail a { color: var(--gold); }
@media (min-width: 640px) { .cta__actions { flex-direction: row; width: auto; max-width: none; } }

.footer { background: var(--ink); color: var(--muted-2); padding: 32px 0 100px; border-top: 1px solid var(--board-line); font-size: 13px; }
.footer__grid { display: grid; gap: 28px; }
.footer__news { display: flex; flex-direction: column; gap: 10px; }
.footer__news label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--board-text); }
.footer__news form { display: flex; gap: 8px; }
.footer__news input { flex: 1; min-width: 0; background: var(--kraft); border: 1.5px solid var(--line); border-radius: 4px; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink); }
.footer__meta { display: flex; flex-direction: column; gap: 8px; }
.footer__meta a { color: var(--board-text); text-decoration: none; }
.footer__meta a:hover { color: var(--kraft); }
@media (min-width: 900px) { .footer { padding-bottom: 40px; } .footer__grid { grid-template-columns: 1fr auto; align-items: end; } .footer__meta { text-align: right; } }

/* ---------- sticky mobile bar ---------- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--cream); border-top: 1.5px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px;
}
.stickybar .btn { flex: 1; min-height: 48px; padding: 10px 12px; font-size: 14px; }
.stickybar .btn--olive { flex: 1.4; }
@media (min-width: 900px) { .stickybar { display: none; } }

/* ---------- forms (booking page) ---------- */
.form-page { padding-top: 40px; padding-bottom: 72px; }
.form-page__grid { display: grid; gap: 40px; }
.form-intro { display: flex; flex-direction: column; gap: 18px; }
.form-intro h1 { font-size: clamp(34px, 5vw, 56px); }
.form-intro__steps { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.form-intro__steps div { display: flex; align-items: center; gap: 12px; }
.form-intro__steps span { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--olive); color: var(--kraft); display: inline-flex; align-items: center; justify-content: center; font-family: var(--hand); font-size: 18px; }
.card { background: var(--cream); border-radius: var(--radius); padding: 28px 22px; box-shadow: 0 12px 30px rgba(50, 40, 20, 0.1); }
.form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field .label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 4px; padding: 14px 16px;
  font: inherit; font-size: 16px; color: var(--ink); background: #fff;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(79, 93, 47, 0.15); }
.field__row { display: flex; gap: 10px; }
.field__row input { flex: 1; min-width: 0; }
.field__hint { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; min-height: 22px; }
.field__hint--ok { color: var(--olive); }
.field__hint--warn { color: var(--ember); }
.grid-2 { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span { display: inline-flex; align-items: center; min-height: 44px; border: 1.5px solid var(--line); padding: 10px 18px; border-radius: 999px; font-size: 15px; cursor: pointer; background: #fff; user-select: none; }
.chip input:checked + span { background: var(--olive); color: var(--kraft); border-color: var(--olive); font-weight: 600; }
.chip input:focus-visible + span { outline: 3px solid var(--ember); outline-offset: 2px; }
.chip--square span { border-radius: 4px; }
.choice-grid { display: grid; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice span { display: flex; flex-direction: column; gap: 4px; border: 1.5px solid var(--line); border-radius: 4px; padding: 14px 16px; cursor: pointer; background: #fff; }
.choice span b { font-family: var(--hand); font-weight: 500; font-size: 22px; color: var(--olive); line-height: 1; }
.choice span small { font-size: 13px; color: var(--muted); }
.choice input:checked + span { border-color: var(--olive); background: var(--cream-2); }
.choice input:focus-visible + span { outline: 3px solid var(--ember); outline-offset: 2px; }
@media (min-width: 640px) { .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.form__fine { font-size: 13px; color: var(--muted-2); text-align: center; line-height: 1.5; }
.form__status { display: none; padding: 14px 16px; border-radius: 4px; font-weight: 600; }
.form__status.is-ok { display: block; background: rgba(79, 93, 47, 0.12); color: var(--olive); }
.form__status.is-err { display: block; background: rgba(184, 95, 44, 0.12); color: var(--ember); }
@media (min-width: 900px) {
  .form-page { padding-top: 64px; padding-bottom: 100px; }
  .form-page__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; align-items: start; }
  .form-intro { position: sticky; top: 32px; }
  .card { padding: 48px; }
}

/* ---------- simple content pages ---------- */
.prose { max-width: 720px; display: flex; flex-direction: column; gap: 18px; }
.prose h1 { font-size: clamp(32px, 5vw, 48px); }
.prose h2 { font-size: 24px; margin-top: 12px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { margin: 0; padding-left: 22px; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 0.9s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}

.nav__back { font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav__back:hover { color: var(--olive); }

.field__error { font-size: 14px; font-weight: 600; color: var(--ember); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(184, 95, 44, 0.15); }
