/* ==========================================================================
   The Step Up — Catering website
   Design tokens + component styles ported from the Genspark Design handoff
   ========================================================================== */

:root {
  --cream: #F3ECDA;
  --cream-2: #EBE2CB;
  --cream-3: #E2D6B7;
  --olive: #3D4A2A;
  --olive-deep: #2E3820;
  --olive-soft: #556645;
  --terracotta: #C1552B;
  --terracotta-deep: #9E3F1D;
  --ink: #1A1A17;
  --ink-soft: #4A4941;
  --line: rgba(26, 26, 23, .14);
  --line-strong: rgba(26, 26, 23, .28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* subtle paper grain */
  background-image:
    radial-gradient(rgba(61, 74, 42, .035) 1px, transparent 1px),
    radial-gradient(rgba(193, 85, 43, .02) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}

::selection { background: var(--terracotta); color: var(--cream); }

/* ---------- Type helpers ---------- */
.brush {
  font-family: 'Caveat Brush', 'Brush Script MT', cursive;
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .92;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive);
}
.body-serif { font-family: 'Fraunces', Georgia, serif; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em 0; }
a { color: inherit; }

/* ---------- Layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 980px; margin: 0 auto; padding: 0 32px; }

section { padding: 120px 0; position: relative; }
@media (max-width: 720px) {
  section { padding: 72px 0; }
  .wrap, .wrap-tight { padding: 0 20px; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 236, 218, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: 1400px; margin: 0 auto;
}
.brand {
  font-family: 'Caveat Brush', cursive;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .01em;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.brand .dot { color: var(--terracotta); }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 11px 18px; border-radius: 999px;
  font-size: 12px !important; letter-spacing: .14em !important;
}
.nav-cta:hover { background: var(--terracotta); color: var(--cream) !important; }
@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-inner { padding: 14px 20px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-deep); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--olive); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--terracotta); color: var(--cream); }
.arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  background: var(--cream-2);
  border: 1.5px dashed var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(61, 74, 42, .05) 12px 13px);
}
.ph-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ph-label {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--olive);
  padding: 6px 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  max-width: 80%;
  text-align: center;
}
.ph-dark {
  background: var(--olive-deep);
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, .03) 12px 13px);
  border-color: rgba(243, 236, 218, .2);
}
.ph-dark .ph-label {
  background: var(--olive-deep);
  color: var(--cream-3);
  border-color: rgba(243, 236, 218, .25);
}

/* ---------- HERO ---------- */
.hero { padding: 60px 0 90px; position: relative; }
.hero-inner {
  max-width: 1000px;
}
.hero-headline {
  font-size: clamp(72px, 12vw, 168px);
  line-height: .88;
  margin: 24px 0 32px;
}
.hero-headline .line { display: block; }
.hero-headline .accent { color: var(--terracotta); }
.hero-sub {
  font-size: 20px;
  line-height: 1.45;
  max-width: 480px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slogan {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1;
  color: var(--terracotta);
  margin: -12px 0 36px;
}
.hero-meta {
  display: flex; gap: 32px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.hero-meta span strong {
  color: var(--ink); display: block; font-size: 20px; margin-bottom: 2px;
  font-family: 'Fraunces', serif; font-weight: 600;
}
@media (max-width: 900px) {
  .hero-meta { flex-wrap: wrap; gap: 20px 32px; }
  .hero-slogan { margin-bottom: 28px; }
}

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  overflow: hidden;
  background: var(--cream-2);
}
.ticker-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 48px; }
.ticker-track span::after { content: "✦"; color: var(--terracotta); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section: You bring the people ---------- */
.bring { background: var(--olive); color: var(--cream); padding: 140px 0; }
.bring .eyebrow { color: var(--cream-3); }
.bring-copy-col {
  max-width: 760px;
}
.bring h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(56px, 8vw, 120px);
  line-height: .9;
  margin: 20px 0 40px;
  font-weight: 400;
}
.bring h2 .terra { color: var(--terracotta); }
.bring-copy {
  font-size: 19px;
  line-height: 1.5;
  color: var(--cream-3);
  max-width: 440px;
}
.events { display: flex; flex-wrap: wrap; gap: 10px 8px; margin: 32px 0 40px; }
.event-pill {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(243, 236, 218, .3);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--cream);
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.event-pill.active { background: var(--terracotta); border-color: var(--terracotta); }
@media (max-width: 900px) {
  .bring { padding: 90px 0; }
}

/* ---------- Section: More than a meal ---------- */
.experience {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  padding: 140px 0;
}
.exp-copy { max-width: 820px; }
.exp-headline {
  font-size: clamp(56px, 8vw, 120px);
  line-height: .9;
  margin: 20px 0 32px;
}
.exp-headline .line { display: block; }
.exp-headline .terra { color: var(--terracotta); }
.exp-lead {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 46ch;
  margin-bottom: 40px;
}
.exp-points {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 46ch;
}
.exp-points li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.exp-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta);
  font-size: 15px;
}
@media (max-width: 900px) {
  .experience { padding: 90px 0; }
}

/* ---------- Section: How it works ---------- */
.how h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .92;
  max-width: 14ch;
  margin: 16px 0 8px;
  font-weight: 400;
}
.how h2 .terra { color: var(--terracotta); }
.how-sub { font-size: 18px; color: var(--ink-soft); max-width: 52ch; margin-bottom: 72px; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-bottom: 72px;
}
.step { padding-top: 24px; border-top: 2px solid var(--ink); position: relative; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: block;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.step-copy { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.how-cta { text-align: center; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Section: Chef + You ---------- */
.chef { background: var(--cream-2); padding: 140px 0; }
.chef-inner { max-width: 860px; }
.chef h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(56px, 8vw, 110px);
  line-height: .92;
  font-weight: 400;
  margin: 20px 0 32px;
}
.chef h2 .terra { color: var(--terracotta); }
.chef-copy {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 46ch;
  margin-bottom: 24px;
}
.chef-sign {
  font-family: 'Caveat Brush', cursive;
  font-size: 34px;
  color: var(--terracotta);
  line-height: 1;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .chef { padding: 90px 0; }
}

/* ---------- Menu ---------- */
.menu-header {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 64px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 24px;
}
.menu-header h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(56px, 8vw, 120px);
  line-height: .9;
  font-weight: 400;
}
.menu-header h2 .terra { color: var(--terracotta); }
.menu-header .side { font-size: 14px; color: var(--ink-soft); text-align: right; max-width: 300px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 60px; }
.menu-cat {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}
.menu-cat-title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 4px;
}
.menu-cat-title small {
  display: block;
  font-family: 'Inter', sans-serif;
  color: var(--ink-soft);
  letter-spacing: .04em;
  text-transform: none;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 400;
}
.menu-items { display: flex; flex-direction: column; gap: 14px; }
.menu-item {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.005em;
}
.menu-item span { color: var(--ink-soft); font-family: 'Inter', sans-serif; font-size: 14px; margin-left: 8px; }

.menu-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
.menu-photos .ph { aspect-ratio: 1 / 1; }
.menu-photos .ph:first-child { aspect-ratio: 2 / 1; grid-column: span 2; }

.menu-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
  gap: 24px; flex-wrap: wrap;
}
.menu-foot .note { color: var(--ink-soft); font-size: 14px; max-width: 44ch; }
.menu-foot-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .menu-header { flex-direction: column; align-items: flex-start; }
  .menu-header .side { text-align: left; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .menu-cat { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .menu-photos { grid-template-columns: 1fr 1fr; }
  .menu-photos .ph:first-child { grid-column: span 2; aspect-ratio: 2 / 1; }
}

/* ---------- Packages ---------- */
.packages { background: var(--olive-deep); color: var(--cream); padding: 140px 0; }
.packages .eyebrow { color: var(--cream-3); }
.packages h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(56px, 8vw, 110px);
  line-height: .9;
  font-weight: 400;
  margin: 16px 0 24px;
}
.packages h2 .terra { color: var(--terracotta); }
.packages-sub { font-size: 18px; color: var(--cream-3); max-width: 56ch; margin-bottom: 72px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg {
  background: var(--olive);
  border: 1px solid rgba(243, 236, 218, .14);
  padding: 40px 32px 32px;
  border-radius: 6px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s ease, background .3s;
}
.pkg:hover { transform: translateY(-6px); background: #47563A; }
.pkg-tag {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600;
  margin-bottom: 20px;
}
.pkg-name {
  font-family: 'Caveat Brush', cursive;
  font-size: 52px;
  line-height: .95;
  font-weight: 400;
  margin-bottom: 20px;
}
.pkg-desc { color: var(--cream-3); font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
.pkg ul {
  list-style: none; padding: 24px 0 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid rgba(243, 236, 218, .15);
}
.pkg ul li {
  font-size: 14px;
  color: var(--cream);
  display: flex; align-items: baseline; gap: 12px;
}
.pkg ul li::before { content: "✦"; color: var(--terracotta); font-size: 10px; }
.pkg-price {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 236, 218, .15);
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
}
.pkg-price small { color: var(--cream-3); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.pkg-price strong { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; }
.pkg-price strong .unit { font-size: 13px; font-family: 'Inter', sans-serif; color: var(--cream-3); font-weight: 500; }
.pkg .btn { width: 100%; justify-content: center; }
.pkg-featured { background: var(--terracotta); }
.pkg-featured:hover { background: var(--terracotta-deep); }
.pkg-featured .pkg-tag { color: var(--cream); }
.pkg-featured .pkg-desc, .pkg-featured .pkg-price small { color: rgba(243, 236, 218, .85); }
.pkg-featured ul { border-color: rgba(243, 236, 218, .25); }
.pkg-featured ul li::before { color: var(--cream); }
.pkg-featured .pkg-price { border-color: rgba(243, 236, 218, .25); }
.pkg-featured .pkg-price strong .unit { color: rgba(243, 236, 218, .8); }
.pkg-featured .btn { background: var(--cream); color: var(--ink); }
.pkg-featured .btn:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .packages { padding: 90px 0; }
}

/* ---------- Quote form ---------- */
.quote { padding: 140px 0; background: linear-gradient(var(--cream) 0%, var(--cream-2) 100%); }
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.quote h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(56px, 9vw, 128px);
  line-height: .9;
  font-weight: 400;
  margin: 16px 0 32px;
}
.quote h2 .terra { color: var(--terracotta); }
.quote-intro { font-size: 18px; color: var(--ink-soft); line-height: 1.55; max-width: 40ch; margin-bottom: 32px; }
.quote-guarantees {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.quote-guarantees div {
  font-size: 14px; display: flex; gap: 12px; align-items: baseline;
  color: var(--ink);
}
.quote-guarantees div::before { content: "→"; color: var(--terracotta); font-weight: 700; }

.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 30px 60px -30px rgba(61, 74, 42, .25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-2);
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border .2s, background .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(193, 85, 43, .28);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  color: var(--ink);
  transition: all .15s;
}
.chip:hover { border-color: var(--ink); }
.chip:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(193, 85, 43, .3); }
.chip.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.chef-check {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream-3);
  padding: 18px 20px;
  border-radius: 6px;
  margin: 24px 0;
  cursor: pointer;
}
.chef-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--terracotta); }
.chef-check .title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; margin-bottom: 2px; }
.chef-check .sub { font-size: 13px; color: var(--ink-soft); }

.form-submit {
  width: 100%;
  padding: 22px;
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--terracotta-deep); }
.form-submit:disabled { opacity: .7; cursor: progress; }

.form-error {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(193, 85, 43, .1);
  border: 1px solid rgba(193, 85, 43, .4);
  border-radius: 4px;
  font-size: 14px;
  color: var(--terracotta-deep);
}
.form-card.error .form-error { display: block; }

.success { display: none; text-align: center; padding: 40px 20px; }
.success .brush { font-size: 72px; color: var(--terracotta); margin-bottom: 12px; }
.success p { color: var(--ink-soft); font-size: 16px; }
.form-card.submitted .form-content { display: none; }
.form-card.submitted .success { display: block; }

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .quote { padding: 90px 0; }
  .form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { padding: 120px 0 140px; }
.faq h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  font-weight: 400;
  margin-bottom: 56px;
}
.faq h2 .terra { color: var(--terracotta); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 28px 0;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  color: var(--terracotta);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); max-width: 70ch; padding: 0 0 28px; font-size: 16px; }

/* ---------- Story long-form ---------- */
.story-long { padding: 120px 0 140px; background: var(--cream); border-top: 1px solid var(--line); }
.story-eyebrow-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
}
.story-rule { height: 1px; background: var(--line-strong); }
.story-years {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--olive);
}
.story-grid { display: block; }
.story-body {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 62ch;
}
.story-body p { margin: 0 0 1.3em; }
.story-body strong { color: var(--olive); font-weight: 600; }
.story-body em { font-style: italic; color: var(--ink); }
.story-lead { font-size: 26px !important; line-height: 1.35 !important; color: var(--ink) !important; font-weight: 500; }
.story-pullquote {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .95;
  color: var(--terracotta);
  padding: 20px 0 20px 32px;
  margin: 40px 0 40px !important;
  border-left: 4px solid var(--terracotta);
}
.story-becomes {
  font-size: clamp(48px, 7vw, 88px) !important;
  line-height: 1 !important;
  color: var(--olive) !important;
  margin: 40px 0 40px !important;
  text-align: center;
}
.story-close {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.story-close .brush { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; display: block; }
.story-close .terra { color: var(--terracotta); }

.story-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 32px; }
.story-timeline {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.tl-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.tl-body { font-size: 14px; line-height: 1.5; color: var(--ink); }
.tl-body strong { color: var(--olive); font-weight: 600; }
.tl-item-featured .tl-body { font-size: 15px; }
.tl-item-featured .tl-body strong { color: var(--terracotta); }
.story-side { max-width: 460px; margin-top: 64px; }

@media (max-width: 900px) {
  .story-side { position: static; max-width: none; }
  .story-eyebrow-row { grid-template-columns: 1fr; gap: 12px; }
  .story-rule { display: none; }
  .story-long { padding: 80px 0; }
}

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--cream); padding: 100px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 80px; }
.foot-brand { font-family: 'Caveat Brush', cursive; font-size: 56px; line-height: 1; margin-bottom: 20px; }
.foot-brand .dot { color: var(--terracotta); }
.foot-tag { color: rgba(243, 236, 218, .6); font-size: 15px; max-width: 32ch; line-height: 1.5; }
.foot-col h4 {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243, 236, 218, .5);
  margin-bottom: 20px;
  font-weight: 600;
}
.foot-col a, .foot-col p {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color .2s;
}
.foot-col a:hover { color: var(--terracotta); }
.foot-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(243, 236, 218, .15);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(243, 236, 218, .5);
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
  padding: 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  footer { padding-bottom: 100px; }
}

/* ---------- Squiggle underline ---------- */
.squiggle { display: inline-block; position: relative; }
.squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 8'%3E%3Cpath d='M0 4 Q 10 0 20 4 T 40 4 T 60 4 T 80 4' stroke='%23C1552B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 80px 8px;
}

/* ---------- Accessibility ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .btn, .pkg, .arrow { transition: none; }
}
