/* BirthdayDonuts.com — mobile-first, desktop-friendly.
   Palette and type extracted from the production mocks. */

:root {
  --bg-outer: #efe5d7;
  --bg-surface: #fbf6ee;
  --bg-card: #fff;
  --border: #f0e4d4;
  --border-strong: #e9d9c8;
  --ink: #33241e;
  --ink-soft: #5c4b42;
  --ink-muted: #6e5c52;
  --ink-faint: #9a8a80;
  --primary: #d23a6e;
  --primary-dark: #b92c5d;
  --pink-bg: #fbe9ef;
  --pink-bg-hover: #f7d8e3;
  --cream: #fdf3dc;
  --cream-hover: #fae9c4;
  --gold: #f2b33d;
  --gold-dark: #e8a626;
  --green: #4ca36a;
  --green-dark: #2e7d48;
  --green-bg: #e5f3e9;
  --dark: #33241e;
  --dark-soft: #4a362c;
  --dark-text: #cbb9ac;
  --dark-text-strong: #e8dacb;
  --error: #b3261e;
  --radius-card: 20px;
  --radius-pill: 999px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --font-hand: 'Caveat', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  background: var(--bg-outer);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
a { color: var(--primary-dark); }
a:hover { color: #8f2148; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-body); font-size: 16px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.12; margin: 0 0 12px; text-wrap: pretty; }
h1 { font-size: 38px; letter-spacing: -0.01em; }
h2 { font-size: 29px; }
h3 { font-size: 19px; }

.shell {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-surface);
  min-height: 100vh;
  box-shadow: 0 0 48px rgba(51, 36, 30, 0.12);
  position: relative;
  padding-bottom: 92px;
}
.shell--no-sticky { padding-bottom: 0; }
.section { padding: 44px 20px 12px; }
.section--hero { padding: 36px 20px 28px; }
.section--tight { padding-top: 8px; }

/* Announcement bar */
.announcement {
  background: var(--dark);
  color: var(--bg-surface);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.announcement--primary { background: var(--primary); color: #fff; font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #efe2d2;
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.logo__donut {
  width: 18px; height: 18px; border-radius: 50%;
  border: 6px solid var(--gold); background: var(--pink-bg);
  display: inline-block; flex: none;
}
.logo__donut--dark { background: var(--dark-soft); border-width: 5px; width: 14px; height: 14px; }
.logo__text { font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1; }
.logo__text em { font-style: normal; color: var(--primary); }
.logo__text small { font-weight: 600; font-size: 12px; color: var(--ink-faint); }
.site-nav {
  display: flex; gap: 18px; align-items: center;
  padding: 0 16px 10px;
  font-size: 13px; font-weight: 600;
  overflow-x: auto;
}
.site-nav a { color: var(--ink-muted); text-decoration: none; white-space: nowrap; }
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); }
.site-nav a.is-active { color: var(--primary); font-weight: 700; }
.site-nav__city {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  color: var(--ink-muted); font-weight: 600; white-space: nowrap;
}
.dot-green { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }

/* Buttons */
.btn {
  display: block; width: 100%;
  text-decoration: none; text-align: center;
  font-weight: 800; font-size: 16px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  border: none; cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(210, 58, 110, 0.28); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; }
.btn--secondary { background: #fff; border: 2px solid var(--border-strong); color: var(--ink); font-weight: 700; }
.btn--secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn--dark { background: var(--dark); color: #fff; font-weight: 700; }
.btn--dark:hover { background: var(--dark-soft); color: #fff; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-dark); color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f5efe6; color: var(--ink); }
.btn--sm { font-size: 13.5px; font-weight: 700; padding: 10px 16px; width: auto; display: inline-block; }
.btn--inline { width: auto; display: inline-block; padding: 14px 28px; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Hero */
.eyebrow {
  margin: 0 0 10px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary);
}
.lede { margin: 0 0 22px; font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.perks {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 13px; font-weight: 600; color: var(--ink-muted);
  margin: 0 0 22px; padding: 0; list-style: none;
}
.hero-figure { position: relative; margin: 0; }
.hero-figure img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-card); }
.hero-figure figcaption { position: absolute; bottom: 8px; right: 12px; font-size: 10px; color: rgba(255,255,255,0.85); text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.hero-figure figcaption a { color: inherit; }
.hero-card {
  position: absolute; top: 14px; right: 14px;
  background: #fff; border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 6px 18px rgba(51, 36, 30, 0.18);
  transform: rotate(2deg); pointer-events: none;
}
.hero-card strong { font-family: var(--font-hand); font-size: 19px; font-weight: 600; display: block; line-height: 1.1; }
.hero-card span { font-size: 11px; color: var(--ink-faint); font-weight: 600; }

/* Confidence strip / cards / lists */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-card); }
.confidence {
  margin: 0 20px; padding: 18px 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px;
}
.confidence div { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.confidence .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; margin-top: 5px; }

.check-list { margin: 0 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; font-size: 14.5px; line-height: 1.4; color: var(--ink-soft); }
.check-list li { display: flex; gap: 8px; }
.check-list .check { color: var(--primary); font-weight: 800; }
.check-list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; font-size: 14px; font-weight: 600; }
.check-list--light { color: var(--dark-text-strong); }
.check-list--light .check { color: var(--gold); }

/* Product cards */
.product-grid { display: flex; flex-direction: column; gap: 18px; }
.product-card { overflow: hidden; position: relative; display: flex; flex-direction: column; }
.product-card--popular { border: 2px solid var(--primary); box-shadow: 0 10px 28px rgba(210, 58, 110, 0.14); }
.product-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--primary); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.product-card__img { width: 100%; height: 190px; object-fit: cover; }
.product-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 2px; }
.product-card__title-row h3 { margin: 0; font-size: 21px; }
.product-card__price { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--primary); }
.product-card__serves { margin: 0 0 12px; font-size: 13px; font-weight: 600; color: var(--ink-faint); }
.product-card__body .btn { margin-top: auto; }
.product-card__more { font-size: 13px; font-weight: 700; margin: -6px 0 12px; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 16px; padding: 18px; }
.step__num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--pink-bg); color: var(--primary);
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin: 0 0 3px; font-size: 16.5px; font-family: var(--font-body); font-weight: 800; }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-muted); line-height: 1.45; }

/* Tile links */
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tile {
  display: block; text-decoration: none; color: var(--ink);
  border-radius: 16px; padding: 16px 14px;
  font-size: 14.5px; font-weight: 700; line-height: 1.3;
}
.tile--pink { background: var(--pink-bg); } .tile--pink:hover { background: var(--pink-bg-hover); color: var(--ink); }
.tile--cream { background: var(--cream); } .tile--cream:hover { background: var(--cream-hover); color: var(--ink); }

/* Dark sections (zip checker) */
.dark-section {
  margin: 44px 20px 12px;
  background: var(--dark); border-radius: 24px;
  padding: 26px 22px; color: var(--bg-surface);
}
.dark-section h2 { color: #fff; font-size: 26px; }
.dark-section > p { margin: 0 0 18px; font-size: 14.5px; color: var(--dark-text); line-height: 1.5; }
.dark-section label { color: var(--dark-text-strong); }
.dark-section input { border: none; }
.dark-section input:focus { box-shadow: 0 0 0 3px rgba(242, 179, 61, 0.6); }

/* Forms */
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.field .optional { font-weight: 500; color: var(--ink-faint); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border-strong); border-radius: 12px;
  padding: 14px; font-size: 16px; background: #fff; color: var(--ink); outline: none;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); }
.field .hint { font-size: 12px; color: var(--ink-faint); font-weight: 500; line-height: 1.45; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
fieldset { border: none; margin: 0; padding: 0; }
legend { font-size: 13px; font-weight: 700; color: var(--ink-soft); padding: 0; margin-bottom: 8px; }
.seg-row { display: flex; gap: 8px; }
.seg {
  flex: 1; cursor: pointer;
  font-size: 12.5px; font-weight: 700; padding: 12px 6px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong); background: #fff; color: var(--ink-muted);
}
.seg[aria-pressed='true'] { border-color: var(--primary); background: var(--pink-bg); color: var(--primary-dark); }
.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start; width: 100%;
  cursor: pointer; background: #fff; border: 1.5px solid var(--border-strong);
  border-radius: 14px; padding: 13px 16px; text-align: left;
}
.checkbox-row input { width: 20px; height: 20px; accent-color: var(--primary); margin-top: 1px; flex: none; }
.checkbox-row strong { display: block; font-size: 14.5px; }
.checkbox-row span { display: block; font-size: 12.5px; color: var(--ink-faint); font-weight: 500; }
.form-error { margin: 0; font-size: 13.5px; font-weight: 700; color: var(--error); }
.form-success { margin: 0; font-size: 14px; font-weight: 700; color: var(--green-dark); }

/* Result blocks (zip checker) */
.result { margin-top: 16px; border-radius: 16px; padding: 16px 18px; }
.result--yes { background: #2c4a38; }
.result--yes p { margin: 0 0 10px; font-size: 15px; font-weight: 700; color: #bfe8cd; }
.result--no { background: var(--dark-soft); }
.result--no p { margin: 0 0 10px; font-size: 14.5px; line-height: 1.5; color: var(--dark-text-strong); }
.result--no .joined { margin: 0; font-size: 15px; font-weight: 700; color: var(--gold); }
.result--invalid { margin: 14px 0 0; font-size: 14px; font-weight: 700; color: var(--gold); padding: 0; }
.result .form-stack { gap: 8px; }

/* Inline (light) result variants for checkout */
.inline-ok { margin: 0; font-size: 13.5px; font-weight: 700; color: var(--green-dark); }
.inline-warn {
  background: var(--cream); border: 1px solid #ead9a8; border-radius: 14px; padding: 14px 16px;
  font-size: 13.5px; line-height: 1.5; color: #6b5310;
}

/* Comparison table */
.compare { overflow: hidden; font-size: 12.5px; }
.compare__head, .compare__row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding: 11px 14px; gap: 6px; align-items: center;
}
.compare__head { background: var(--pink-bg); font-weight: 800; align-items: end; }
.compare__head .brand { color: var(--primary); text-align: center; }
.compare__head .other { color: var(--ink-muted); text-align: center; }
.compare__row { border-top: 1px solid #f5ebdd; }
.compare__row .feature { font-weight: 700; line-height: 1.25; }
.compare__row .yes { text-align: center; font-weight: 800; color: var(--green); }
.compare__row .meh { text-align: center; font-weight: 600; color: var(--ink-faint); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  cursor: pointer; list-style: none;
  padding: 16px 18px; font-size: 15px; font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--primary); font-weight: 800; font-size: 18px; flex: none; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0; padding: 0 18px 16px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }

/* Callout sections */
.callout { margin: 44px 20px 12px; border-radius: 24px; padding: 28px 22px; text-align: center; }
.callout--pink { background: var(--pink-bg); }
.callout h2 { font-size: 26px; }
.callout p { margin: 0 0 16px; font-size: 14.5px; color: var(--ink-muted); line-height: 1.5; }

/* Personalization figure */
.rounded-figure { margin: 0 0 18px; }
.rounded-figure img { width: 100%; height: 230px; object-fit: cover; border-radius: var(--radius-card); }

/* Footer */
.site-footer { background: var(--dark); color: var(--dark-text); padding: 32px 20px 40px; font-size: 13.5px; }
.site-footer .logo { margin-bottom: 18px; }
.site-footer .logo__text { color: #fff; font-size: 16px; }
.site-footer .logo__text em { color: #e877a4; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 22px; }
.footer-links a { color: var(--dark-text); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-contact { margin: 0 0 16px; line-height: 1.6; }
.footer-contact a { color: var(--dark-text-strong); font-weight: 600; }
.site-footer .fine { margin: 0; font-size: 12px; color: #8a776c; line-height: 1.5; }

/* Sticky CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; z-index: 50;
  background: rgba(251, 246, 238, 0.94); backdrop-filter: blur(8px);
  border-top: 1px solid #efe2d2; padding: 12px 16px;
}
.sticky-cta .btn { padding: 14px; }

/* Checkout */
.progress { padding: 0 16px 12px; }
.progress__labels { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.progress__step { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary); }
.progress__count { font-size: 12px; font-weight: 700; color: var(--ink-faint); }
.progress__bar { height: 6px; border-radius: var(--radius-pill); background: var(--border); overflow: hidden; }
.progress__fill { height: 100%; border-radius: var(--radius-pill); background: var(--primary); transition: width 0.3s ease; }
.checkout-step { padding: 28px 20px 140px; }
.checkout-step h1 { font-size: 28px; margin-bottom: 6px; }
.checkout-step > .step-lede { margin: 0 0 20px; font-size: 15px; color: var(--ink-muted); }
.option-card {
  display: block; width: 100%; cursor: pointer; text-align: left;
  background: #fff; border: 1.5px solid var(--border-strong);
  border-radius: 18px; padding: 18px 20px;
}
.option-card[aria-pressed='true'] {
  background: var(--pink-bg); border: 2px solid var(--primary);
  box-shadow: 0 8px 20px rgba(210, 58, 110, 0.15);
  padding: 17px 19px;
}
.option-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; width: 100%; }
.option-card__row strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.option-card__row .price { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--primary); }
.option-card__desc { display: block; font-size: 13.5px; color: var(--ink-muted); margin-top: 4px; line-height: 1.45; }
.option-card .badge {
  display: inline-block; margin-top: 8px;
  background: var(--primary); color: #fff;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.addon-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  width: 100%; cursor: pointer;
  background: #fff; border: 1.5px solid var(--border-strong);
  border-radius: 14px; padding: 13px 16px; text-align: left;
}
.addon-row[aria-pressed='true'] { background: var(--pink-bg); border: 2px solid var(--primary); padding: 12px 15px; }
.addon-row__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.addon-row__info strong { font-size: 14.5px; }
.addon-row__info span { font-size: 12.5px; color: var(--ink-faint); }
.addon-row__price { font-size: 14.5px; font-weight: 800; color: var(--primary); flex: none; }
.badge-new {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #b07a16; background: var(--cream); border-radius: var(--radius-pill);
  padding: 3px 8px; margin-left: 4px;
}
.qty-row { display: flex; align-items: center; gap: 14px; }
.qty-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border-strong); background: #fff;
  font-size: 20px; font-weight: 800; cursor: pointer; color: var(--ink);
}
.qty-value { font-family: var(--font-display); font-size: 20px; font-weight: 800; min-width: 32px; text-align: center; }

.card-preview {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 18px; transform: rotate(-1deg);
}
.card-preview p { margin: 0; font-family: var(--font-hand); font-size: 22px; line-height: 1.3; }
.card-preview small {
  display: block; margin-top: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint);
}
.char-count { font-size: 12px; color: var(--ink-faint); font-weight: 500; }

.summary-card { padding: 18px 20px; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 10px; font-size: 13.5px; color: var(--ink-muted); }
.summary-line strong { color: var(--ink); font-size: 14.5px; }
.summary-line .amt { font-weight: 700; }
.summary-line--main { font-size: 14.5px; }
.summary-line--main .amt { font-weight: 800; color: var(--ink); }
.summary-total {
  display: flex; justify-content: space-between; gap: 10px;
  padding-top: 12px; margin-top: 2px; border-top: 1px solid var(--border);
}
.summary-total span { font-size: 16px; font-weight: 800; }
.summary-total .amt { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--primary); }
.summary-meta { background: var(--pink-bg); border-radius: 16px; padding: 14px 16px; margin-bottom: 20px; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }

.checkout-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; z-index: 50;
  background: rgba(251, 246, 238, 0.96); backdrop-filter: blur(8px);
  border-top: 1px solid #efe2d2; padding: 12px 16px;
}
.checkout-nav__error { margin: 0 0 8px; font-size: 13px; font-weight: 700; color: var(--error); text-align: center; }
.checkout-nav__row { display: flex; gap: 10px; }
.checkout-nav__row .btn--back { flex: none; width: auto; background: #fff; border: 1.5px solid var(--border-strong); color: var(--ink); font-weight: 700; font-size: 15px; padding: 14px 20px; box-shadow: none; }
.checkout-nav__row .btn--back:hover { border-color: var(--ink); }
.checkout-nav__row .btn--next { flex: 1; padding: 14px; box-shadow: 0 6px 16px rgba(210, 58, 110, 0.28); }

/* Modal (fake door) */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(51, 36, 30, 0.55);
  display: flex; align-items: flex-end; justify-content: center;
}
.modal {
  width: 100%; max-width: 480px;
  background: var(--bg-surface);
  border-radius: 24px 24px 0 0;
  padding: 24px 22px 34px;
}
.modal__handle { width: 40px; height: 4px; border-radius: var(--radius-pill); background: var(--border-strong); margin: 0 auto 18px; }
.modal h2 { font-size: 22px; }
.modal .lede { font-size: 14.5px; margin-bottom: 18px; }
.modal .link-btn { border: none; background: none; cursor: pointer; color: var(--ink-faint); font-weight: 700; font-size: 14px; padding: 8px; width: 100%; }
[hidden] { display: none !important; }

/* Confirmation / status */
.status-icon {
  display: inline-flex; width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-bg); color: var(--green-dark);
  font-size: 30px; align-items: center; justify-content: center; margin-bottom: 16px;
}
.order-ref { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--primary); margin: 0 0 14px; }
.kv-list { display: flex; flex-direction: column; gap: 9px; font-size: 14px; line-height: 1.45; color: var(--ink-soft); }
.next-steps { background: var(--pink-bg); border-radius: 18px; padding: 18px 20px; text-align: left; margin-bottom: 24px; }
.next-steps p { margin: 0 0 8px; font-size: 14px; font-weight: 800; }
.next-steps ol { margin: 0; padding: 0 0 0 18px; font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); }
.status-pill {
  display: inline-block; background: var(--cream); color: #6b5310;
  font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: var(--radius-pill); padding: 6px 14px;
}
.status-pill--delivered { background: var(--green-bg); color: var(--green-dark); }

/* Prose (legal pages) */
.prose h2 { font-size: 20px; margin-top: 28px; }
.prose p, .prose li { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.prose ul { padding-left: 20px; }

/* Admin */
.admin-body { background: #f4f1ec; font-family: var(--font-body); color: var(--ink); margin: 0; padding: 24px; }
.admin-body h1 { font-size: 26px; }
.admin-body h2 { font-size: 18px; margin-top: 28px; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; align-items: start; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; font-size: 13.5px; }
.admin-table th { text-align: left; background: var(--dark); color: #fff; padding: 8px 12px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.admin-table td { padding: 8px 12px; border-top: 1px solid var(--border); vertical-align: top; }
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0 8px; }
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 18px; min-width: 130px;
}
.stat b { display: block; font-family: var(--font-display); font-size: 24px; }
.stat span { font-size: 12.5px; color: var(--ink-muted); font-weight: 600; }

/* /pages site index */
.index-list { margin: 0 0 26px; padding: 0; list-style: none; }
.index-list li { border-bottom: 1px solid var(--border); }
.index-list li:last-child { border-bottom: 0; }
.index-list a { display: block; padding: 9px 2px; font-size: 15px; font-weight: 600; color: var(--ink-soft); text-decoration: none; }
.index-list a:hover { color: var(--primary); }

/* SEO content pages (services, locations, guides, inspiration) */
.crumbs { margin: 0; padding: 16px 20px 0; font-size: 12.5px; font-weight: 600; color: var(--ink-faint); }
.crumbs a { color: var(--ink-muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { margin: 0 5px; color: var(--border-strong); }
.guide-meta {
  display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 0 0 16px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint);
}
.prose--guide h2 { font-size: 24px; margin-top: 34px; }
.prose--guide h3 { font-size: 17.5px; margin-top: 24px; }
.prose--guide p, .prose--guide li { font-size: 15px; }
.prose--guide ul, .prose--guide ol { padding-left: 20px; }
.message-grid { display: grid; gap: 12px; margin: 14px 0 6px; }
.message-grid .card-preview { transform: none; }
.message-grid .card-preview p { font-size: 20px; }
.message-grid .card-preview small { color: var(--ink-faint); }
.table-card { overflow: hidden; margin: 14px 0 6px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th {
  text-align: left; background: var(--pink-bg); color: var(--ink);
  padding: 11px 14px; font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}
.data-table td { padding: 11px 14px; border-top: 1px solid #f5ebdd; color: var(--ink-soft); line-height: 1.45; vertical-align: top; }
.data-table td strong { color: var(--ink); }
.idea-grid { display: grid; gap: 16px; }
.idea-card { overflow: hidden; display: flex; flex-direction: column; }
.idea-card__img { width: 100%; height: 170px; object-fit: cover; }
.idea-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.idea-card__body h3 { margin: 0; font-size: 17px; }
.idea-card__body p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.idea-card__tag {
  align-self: flex-start; margin-top: auto; padding-top: 8px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary);
}
.idea-card__body a { font-weight: 700; }

/* Utility */
.mt-0 { margin-top: 0; } .mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.muted { color: var(--ink-faint); }
.small { font-size: 13px; }
.credit { font-size: 11px; color: var(--ink-faint); }
.credit a { color: inherit; }

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  body { font-size: 17px; }
  .shell { max-width: none; box-shadow: none; padding-bottom: 0; }
  .shell > section, .shell > .section, .shell > .confidence, .shell > .dark-section, .shell > .callout {
    max-width: 1040px; margin-left: auto; margin-right: auto;
  }
  .section { padding: 56px 32px 16px; }
  .section--hero { padding: 56px 32px 36px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
  .section--hero > * { min-width: 0; }
  .section--hero .hero-figure { order: 2; }
  .section--hero .hero-figure img { height: 420px; }
  h1 { font-size: 52px; }
  h2 { font-size: 34px; }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; flex: 1; }
  .site-header__row, .site-nav { max-width: 1040px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
  .site-nav { font-size: 14px; gap: 24px; }
  .announcement { font-size: 14px; }
  .confidence { grid-template-columns: repeat(4, 1fr); padding: 22px 28px; }
  .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); }
  .steps--five { grid-template-columns: 1fr; max-width: 640px; }
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .dark-section { padding: 40px; }
  .dark-section .form-stack { max-width: 560px; }
  .callout { padding: 40px; }
  .sticky-cta { display: none; }
  .site-footer__inner { max-width: 1040px; margin: 0 auto; }
  .footer-links { grid-template-columns: repeat(4, 1fr); }
  .narrow { max-width: 640px; margin-left: auto !important; margin-right: auto !important; }
  .checkout-shell { max-width: 640px; margin: 0 auto; }
  .checkout-nav { max-width: 640px; border-radius: 16px 16px 0 0; }
  .progress { max-width: 640px; margin: 0 auto; }
  .modal { border-radius: 24px; margin-bottom: 10vh; }
  .modal-backdrop { align-items: center; }
  .compare { font-size: 14px; }
  .crumbs { max-width: 1040px; margin: 0 auto; padding: 18px 32px 0; }
  .article-wrap .section, .article-wrap .callout, .article-wrap .dark-section {
    max-width: 760px; margin-left: auto; margin-right: auto;
  }
  .article-wrap .crumbs { max-width: 760px; }
  .message-grid { grid-template-columns: repeat(2, 1fr); }
  .idea-grid { grid-template-columns: repeat(2, 1fr); }
  .idea-card__img { height: 210px; }
  .data-table { font-size: 14.5px; }
}

@media (min-width: 1100px) {
  .section--hero .hero-figure img { height: 460px; }
}
