/* Kobabi Bites — brand stylesheet
   Warm cream base, deep brick red, full-bleed photography.
   Nothing sits on pure white: the paper is #F7F2E8 and cards lift off it,
   which is what keeps the red from screaming. */

:root {
  --paper: #f7f2e8;
  --paper-2: #fffdf9;
  --sand: #efe6d6;
  --sand-2: #e6dac6;
  --line: #ded1bd;
  --line-soft: #e9dfd0;

  --ink: #241a15;
  --ink-2: #6a5a4f;
  --ink-3: #6f5d4e;
  /* warm espresso for dark section backgrounds + footer — softer on cream than
     near-black, while white text still sits at ~14:1 */
  --espresso: #2e2219;

  --red: #d8321f;
  --red-deep: #a3200f;
  --red-ink: #611309;
  --ember: #e8863c;

  --display: "Fraunces", Georgia, serif;
  --body: "Instrument Sans", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.9rem, 7.4vw, 6.4rem);
  --fs-h2: clamp(2.1rem, 4.6vw, 3.9rem);
  --fs-h3: clamp(1.3rem, 2.2vw, 1.7rem);
  --fs-body: clamp(1.02rem, 0.42vw + 0.92rem, 1.16rem);

  --gut: clamp(1.25rem, 4.2vw, 3.25rem);
  --maxw: 1400px;
  --radius: 4px;
  --shadow: 0 2px 4px rgba(36, 26, 21, 0.04), 0 18px 44px -20px rgba(36, 26, 21, 0.22);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

/* height:auto lets CSS sizing win over the width/height HTML attributes while
   browsers still use them to reserve layout space */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 100;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.05rem; }
p:last-child { margin-bottom: 0; }

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--wide { max-width: 1660px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip:focus { left: 0; }

/* the chef-hat stripe survives only as a 3px hairline in the footer */
.stripe { display: none; }
.site-foot .stripe,
.stripe--foot {
  display: block;
  height: 3px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 7px, var(--paper) 7px 14px);
}

/* ---------- section label (was a red ribbon flag) ---------- */
.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: none;
  color: var(--red-deep);
  clip-path: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0;
}
.ribbon::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.ribbon--white { color: rgba(255, 255, 255, 0.85); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin: 0 0 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow--muted { color: var(--ink-3); }
.eyebrow--light { color: rgba(255, 255, 255, 0.72); }

/* ---------- header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-head:hover,
.site-head:focus-within { border-bottom-color: var(--line-soft); }

.head-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding-block: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { width: 40px; height: auto; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 30, "WONK" 1;
  letter-spacing: -0.015em;
  font-size: 1.24rem;
  line-height: 1;
  color: var(--ink);
}
.brand-tag {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  margin-top: 0.32rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 15px; height: 15px; }

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem var(--gut) 1.5rem;
}
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block;
  padding: 0.9rem 0.25rem;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
/* :not(.btn) — otherwise the franchise page's own nav button gets red text on a
   red pill and the label vanishes */
.site-nav a:not(.btn)[aria-current="page"] { color: var(--red-deep); }
.site-nav .btn { margin-top: 1.25rem; width: 100%; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: 0;
    padding: 0;
  }
  .site-nav ul { display: flex; align-items: center; gap: 2.1rem; }
  .site-nav a:not(.btn) {
    padding: 0.3rem 0;
    border: 0;
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    color: var(--ink-2);
    transition: color 0.2s ease;
  }
  .site-nav a:not(.btn):hover { color: var(--ink); }
  .site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: var(--red-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .site-nav a:not(.btn)[aria-current="page"] { color: var(--ink); }
  .site-nav a:not(.btn):hover::after,
  .site-nav a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav .btn { margin: 0 0 0 0.8rem; width: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red-deep);
  color: #fff;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.005em;
  line-height: 1;
  padding: 0.95rem 1.65rem;
  border: 1px solid var(--red-deep);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.btn:hover { background: var(--red-ink); border-color: var(--red-ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--light { background: var(--paper-2); color: var(--red-ink); border-color: var(--paper-2); }
.btn--light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--outline-light:hover { background: #fff; color: var(--red-ink); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--sand { background: var(--sand); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-head { margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.section-head h2 { font-size: var(--fs-h2); margin-top: 1.15rem; max-width: 18ch; }
.section-head p {
  margin-top: 1.1rem;
  max-width: 52ch;
  color: var(--ink-2);
  font-size: 1.06rem;
}

/* heading left, standfirst right — fills the measure instead of leaving the
   right half of a 1400px page empty */
@media (min-width: 900px) {
  .section-head {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    column-gap: clamp(2.5rem, 6vw, 6rem);
    align-items: end;
  }
  .section-head > .ribbon,
  .section-head > .eyebrow { grid-column: 1 / -1; }
  .section-head p { margin-top: 0; padding-bottom: 0.5rem; }
}

/* ---------- hero: clean split — message on cream, photo alongside ----------
   Text never sits on the photo, so it reads instantly (the "5-second" test)
   with zero contrast confusion; the food is shown bright and appetising. */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper);
  overflow: hidden;
}
.hero-copy {
  display: flex;
  align-items: center;
  padding-block: clamp(2.75rem, 6vw, 4.75rem);
  padding-inline: var(--gut);
  order: 1;
}
.hero-copy-inner { width: 100%; max-width: 40rem; }
.hero-photo {
  position: relative;
  min-height: 46vh;
  background: var(--sand-2);
  order: 2;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.04fr 1fr;
    min-height: min(88vh, 820px);
  }
  /* left-pad the copy so its content lines up with the header/logo */
  .hero-copy {
    padding-inline: max(var(--gut), calc((100vw - var(--maxw)) / 2 + var(--gut)))
                    clamp(2rem, 4vw, 4rem);
  }
  .hero-copy-inner { margin-left: 0; }
  .hero-photo { min-height: 100%; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin: 0 0 1.3rem;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; flex: none; }

.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin-bottom: 1.35rem;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 144;
}
.hero h1 em { font-style: italic; color: var(--red-deep); }

.hero-lede {
  font-size: clamp(1.05rem, 0.6vw + 0.94rem, 1.25rem);
  color: var(--ink-2);
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-figure, .hero-badge, .hero-flag, .hero-facts { display: none; }

/* ---------- proof strip (kept for inner pages, made quiet) ---------- */
.proof { background: var(--paper); border-bottom: 1px solid var(--line-soft); }
.proof-list {
  list-style: none;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  display: grid;
  gap: 1.5rem 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.proof-list b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  color: var(--ink);
}
.proof-list span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.4;
}
@media (min-width: 760px) { .proof-list { grid-template-columns: repeat(4, 1fr); } }

/* ---------- figures keep their own native ratio ---------- */
.fig { margin: 0; overflow: hidden; background: var(--sand); border-radius: var(--radius); }
.fig img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--ar, 1.5);
  object-fit: cover;
}
.fig figcaption {
  padding: 0.9rem 0.1rem 0;
  font-size: 0.84rem;
  color: var(--ink-3);
}

/* ---------- category cards ---------- */
.cat-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat {
  display: block;
  text-decoration: none;
  background: none;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.cat img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), filter 0.4s ease;
  filter: saturate(1.02);
}
.cat:hover img { transform: scale(1.035); }
.cat-body { padding: 1.05rem 0.1rem 0; }
.cat h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  letter-spacing: -0.015em;
}
.cat p {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.cat:hover h3 { color: var(--red-deep); }

/* ---------- full-bleed band ---------- */
.band { background: var(--ink); overflow: hidden; }
.band img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--ar, 3.9);
  object-fit: cover;
  min-height: 170px;
}

/* ---------- value list ---------- */
.values { display: grid; gap: clamp(2rem, 4vw, 3.25rem); list-style: none; margin: 0; padding: 0; }
@media (min-width: 800px) { .values { grid-template-columns: repeat(2, 1fr); } }

.values li { border-top: 1px solid var(--line); padding-top: 1.35rem; }
.values h3 { font-size: var(--fs-h3); margin-bottom: 0.65rem; }
.values p { color: var(--ink-2); font-size: 1rem; }

/* ---------- split ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.15fr; }
  .split--flip > *:first-child { order: 2; }
}

/* ---------- outlets ---------- */
.outlet-list { list-style: none; margin: 2rem 0 0; padding: 0; }
.outlet-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.outlet-list strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
}
.outlet-list span { font-size: 0.83rem; color: var(--ink-3); white-space: nowrap; }

.outlet-cards { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .outlet-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .outlet-cards--3 { grid-template-columns: repeat(3, 1fr); } }

.outlet-card {
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.outlet-card h3 { font-size: var(--fs-h3); }
.outlet-card p { color: var(--ink-2); font-size: 0.96rem; }
.outlet-card .pill { align-self: flex-start; }
.outlet-card a.dir {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red-deep);
  text-decoration: none;
}
.outlet-card a.dir:hover { text-decoration: underline; }

.pill {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink-2);
}
.pill--live { background: var(--red-deep); color: #fff; }
.pill--soon { background: var(--ink); color: var(--paper); }

/* ---------- deep red CTA band ---------- */
.cta-band { background: var(--red-ink); color: #fff; }
.cta-band h2 { font-size: var(--fs-h2); }
.cta-band p { color: rgba(255, 255, 255, 0.8); }
.cta-band .eyebrow { color: rgba(255, 255, 255, 0.65); }
.cta-band .ribbon { color: rgba(255, 255, 255, 0.7); }

.format-grid { display: grid; gap: 1.25rem; margin: 2.75rem 0 2.5rem; list-style: none; padding: 0; }
@media (min-width: 800px) { .format-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.format { border-top: 1px solid rgba(255, 255, 255, 0.28); padding-top: 1.35rem; }
.format h3 {
  font-size: 0.75rem;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 0.85rem;
}
.format b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  margin-bottom: 0.7rem;
  color: #fff;
}
.format span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.76); }

/* ---------- menu page ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.75rem; }
.filter {
  font: inherit;
  font-weight: 500;
  font-size: 0.87rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.menu-block { margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.menu-block[hidden] { display: none; }

.menu-head { margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.menu-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.menu-head p { color: var(--ink-2); font-size: 1rem; margin-top: 0.7rem; max-width: 60ch; }

.menu-layout { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 880px) { .menu-layout { grid-template-columns: 340px 1fr; gap: 3.25rem; } }

.dish-list { list-style: none; margin: 0; padding: 0; }
.dish-list li { padding: 0.95rem 0; border-bottom: 1px solid var(--line-soft); }
.dish-list strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: -0.012em;
}
.dish-list span:not(.tag) {
  display: block;
  color: var(--ink-2);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}
.tag {
  display: inline-block;
  margin-left: 0.55rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 3px;
  vertical-align: middle;
}
.tag--veg { background: #e0ecd8; color: #3c6b2c; }
.tag--nonveg { background: #f6e0d6; color: #9c3a1c; }
.tag--hero { background: var(--ink); color: var(--paper); }

.note {
  background: var(--sand);
  border-left: 2px solid var(--red-deep);
  padding: 1.4rem 1.6rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--ink-2);
  max-width: 80ch;
}

/* ---------- founders ---------- */
.people { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); list-style: none; margin: 0; padding: 0; }
@media (min-width: 800px) { .people { grid-template-columns: repeat(3, 1fr); } }

.person { background: none; border: 0; border-top: 1px solid var(--line); padding: 1.5rem 0 0; text-align: left; }
.person img { width: 100%; max-width: 260px; height: auto; margin: 0 0 1.25rem; }
.person h3 { font-size: 1.4rem; }
.person .role {
  color: var(--red-deep);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0.5rem 0 0.9rem;
}
.person p { color: var(--ink-2); font-size: 0.94rem; text-align: left; }

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 2rem; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { counter-increment: s; border-top: 1px solid var(--line); padding-top: 1.25rem; }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--red-deep);
  margin-bottom: 0.9rem;
}
.steps h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.steps p { color: var(--ink-2); font-size: 0.94rem; }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: clamp(0.85rem, 1.6vw, 1.35rem); }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* ---------- forms ---------- */
.form-card {
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 500; font-size: 0.86rem; margin-bottom: 0.45rem; color: var(--ink-2); }
.field .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper-2);
  border-color: var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 0;
}
.field-row { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 0.81rem; color: var(--ink-3); margin-top: 1rem; }

.form-status { margin-top: 1.1rem; padding: 0.95rem 1.15rem; border-radius: var(--radius); font-size: 0.92rem; }
.form-status[hidden] { display: none; }
.form-status.ok { background: #e3eedb; color: #2f5a22; border: 1px solid #c6ddb8; }
.form-status.err { background: #f7e2da; color: var(--red-ink); border: 1px solid #e8c3b3; }

/* ---------- contact ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 1.25rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-list dt,
.contact-list .k {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.4rem;
}
.contact-list a,
.contact-list .v {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.015em;
  text-decoration: none;
  color: var(--ink);
  word-break: break-word;
}
.contact-list a:hover { color: var(--red-deep); }

.map-frame { border: 0; width: 100%; height: 380px; border-radius: var(--radius); display: block; filter: saturate(0.85); }

/* ---------- inner page hero ---------- */
.page-hero {
  background: var(--sand);
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.page-hero h1 { font-size: clamp(2.5rem, 6.4vw, 5rem); margin-bottom: 1.35rem; }
.page-hero p { max-width: 58ch; color: var(--ink-2); font-size: clamp(1.05rem, 0.8vw + 0.9rem, 1.25rem); }

/* ---------- footer ---------- */
.site-foot { background: var(--espresso); color: rgba(255, 255, 255, 0.66); }
.foot-grid { display: grid; gap: 2.5rem; padding-block: clamp(3.25rem, 7vw, 5rem); }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3.5rem; } }

.foot-brand img { width: 62px; margin-bottom: 1.35rem; }
.foot-brand p { font-size: 0.92rem; max-width: 36ch; }

.site-foot h3 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 0.7rem; }
.site-foot a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 0.94rem; }
.site-foot a:hover { color: #fff; }

.foot-base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.64);
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =====================================================================
   Investor story — narrative components (annual-report editorial)
   ===================================================================== */

/* dark high-impact section for big-number moments */
.section--ink {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.82);
}
.section--ink h2 { color: #fff; }
.section--ink .section-head p { color: rgba(255, 255, 255, 0.72); }
.section--ink .ribbon { color: #ffd9a8; }
.section--ink .ribbon::before { background: currentColor; }

/* chapter marker — editorial numbering running down the story page */
.chap { scroll-margin-top: 90px; }
.chap-tag {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.chap-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.8;
  color: var(--red-deep);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
}
.section--ink .chap-num { color: #ffb87a; }
.chap-of {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 0.4rem;
}
.section--ink .chap-of { color: rgba(255, 255, 255, 0.55); }
.chap h2 { font-size: var(--fs-h2); max-width: 20ch; }
.chap-lede {
  margin-top: 1.15rem;
  max-width: 60ch;
  font-size: clamp(1.05rem, 0.7vw + 0.9rem, 1.28rem);
  color: var(--ink-2);
}
.section--ink .chap-lede { color: rgba(255, 255, 255, 0.78); }

/* big-figure grid (market size, traction) */
.figures {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 820px) { .figures { grid-template-columns: repeat(4, 1fr); } }
.figures--3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 760px) { .figures--3 { grid-template-columns: repeat(3, 1fr); } }

.figure {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}
.section--ink .figure { border-top-color: rgba(255, 255, 255, 0.22); }
.figure b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 3.9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
}
.section--ink .figure b { color: #fff; }
.figure b span { color: var(--red-deep); }
.section--ink .figure b span { color: #ffb87a; }
.figure .cap {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink-2);
}
.section--ink .figure .cap { color: rgba(255, 255, 255, 0.7); }
.figure .src {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.section--ink .figure .src { color: rgba(255, 255, 255, 0.6); }

/* market donut (one highlighted slice, single accent) */
.market-split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 820px) { .market-split { grid-template-columns: 320px 1fr; } }
.donut { width: 100%; max-width: 300px; margin-inline: auto; display: block; }
.donut-track { fill: none; stroke: var(--sand-2); stroke-width: 30; }
.section--ink .donut-track { stroke: rgba(255, 255, 255, 0.16); }
.donut-arc {
  fill: none;
  stroke: var(--red-deep);
  stroke-width: 30;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}
.section--ink .donut-arc { stroke: #e8863c; }
.donut-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.7rem;
  fill: var(--ink);
  text-anchor: middle;
  dominant-baseline: middle;
}
.section--ink .donut-num { fill: #fff; }
.donut-lab { font-family: var(--body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; fill: var(--ink-3); text-anchor: middle; }
.section--ink .donut-lab { fill: rgba(255,255,255,0.6); }

/* problem / point list */
.points { list-style: none; margin: clamp(2rem,4vw,3rem) 0 0; padding: 0; display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .points { grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; } }
.points li { display: flex; gap: 1rem; }
.points .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--red-deep);
  flex: none;
  line-height: 1.5;
}
.section--ink .points .n { color: #ffb87a; }
.points p { margin: 0; color: var(--ink-2); }
.section--ink .points p { color: rgba(255, 255, 255, 0.78); }
.points strong { color: var(--ink); font-weight: 600; }
.section--ink .points strong { color: #fff; }

/* big editorial pull-quote */
.pull {
  margin: 0;
  padding: 0;
  border: 0;
}
.pull p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 144;
}
.pull p em { font-style: italic; color: var(--red-deep); }
.pull footer { margin-top: 1.4rem; color: var(--ink-3); font-size: 0.92rem; }
.section--ink .pull p { color: #fff; }
.section--ink .pull p em { color: #ffd9a8; }

/* revenue-stream / model columns */
.streams { list-style: none; margin: clamp(2rem,4vw,3rem) 0 0; padding: 0; display: grid; gap: 1.5rem; }
@media (min-width: 820px) { .streams { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.streams li { border-top: 2px solid var(--red-deep); padding-top: 1.1rem; }
.streams h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.streams p { color: var(--ink-2); font-size: 0.95rem; }
.streams .idx {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 0.6rem; display: block;
}

/* roadmap timeline */
.roadmap { list-style: none; margin: clamp(2rem,4vw,3rem) 0 0; padding: 0; display: grid; gap: 2rem; counter-reset: rm; }
@media (min-width: 860px) { .roadmap { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.roadmap li { position: relative; padding-top: 2rem; border-top: 1px solid var(--line); }
.roadmap li::before {
  content: "";
  position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red-deep);
}
.roadmap .when {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-deep); display: block; margin-bottom: 0.9rem;
}
.roadmap h3 { font-size: 1.3rem; margin-bottom: 0.9rem; }
.roadmap ul { list-style: none; margin: 0; padding: 0; }
.roadmap ul li { border: 0; padding: 0.4rem 0; position: static; color: var(--ink-2); font-size: 0.95rem; }
.roadmap ul li::before { display: none; }
.roadmap ul li::marker { content: none; }

/* vision hero strip on story page */
.vision-line {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 22ch;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 144;
}

/* partner / closing CTA */
.partner { text-align: center; }
.partner .wrap { max-width: 60ch; }
.partner h2 { font-size: var(--fs-h2); }
.partner p { margin-top: 1.1rem; }
.partner .btn-row { justify-content: center; margin-top: 2.25rem; }

/* nav — investors link slightly elevated */
.site-nav a.nav-invest { color: var(--red-deep); font-weight: 600; }
@media (min-width: 900px) { .site-nav a.nav-invest:not(.btn) { color: var(--red-deep); } }

/* =====================================================================
   Calm & warm pass — dark/red section BLOCKS become light warm sections;
   red stays for buttons/accents, dark stays only for the footer.
   Appended last so these win over the earlier dark-mode rules.
   ===================================================================== */

/* the food-photo band no longer needs a black backing */
.band { background: var(--sand-2); }

/* "Traction" emphasis sections: was dark espresso -> warm sand, dark text */
.section--ink { background: var(--sand-2); color: var(--ink-2); }
.section--ink h2,
.section--ink .figure b,
.section--ink .points strong,
.section--ink .pull p { color: var(--ink); }
.section--ink .section-head p,
.section--ink .chap-lede,
.section--ink .figure .cap,
.section--ink .points p { color: var(--ink-2); }
.section--ink .ribbon,
.section--ink .chap-num,
.section--ink .figure b span,
.section--ink .points .n,
.section--ink .pull p em { color: var(--red-deep); }
.section--ink .chap-of,
.section--ink .figure .src { color: var(--ink-3); }
.section--ink .figure { border-top-color: var(--line); }
.section--ink .donut-track { stroke: var(--sand); }
.section--ink .donut-arc { stroke: var(--red-deep); }
.section--ink .donut-num { fill: var(--ink); }
.section--ink .donut-lab { fill: var(--ink-3); }

/* CTA "bands": was saturated deep red -> soft cream, dark text, red BUTTON */
.cta-band { background: var(--paper); color: var(--ink-2); border-block: 1px solid var(--line-soft); }
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--ink-2); }
.cta-band .eyebrow,
.cta-band .ribbon { color: var(--red-deep); }
.format { border-top-color: var(--line); }
.format h3 { color: var(--ink-3); }
.format b { color: var(--ink); }
.format span { color: var(--ink-2); }
.cta-band .btn--light { background: var(--red-deep); color: #fff; border-color: var(--red-deep); }
.cta-band .btn--light:hover { background: var(--red-ink); border-color: var(--red-ink); }
.cta-band .btn--outline-light { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-band .btn--outline-light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* =====================================================================
   Utility + small component classes — replace former inline style="" so
   all styling lives in this one stylesheet. (Per-image --ar ratios stay
   inline: they are per-element data, not styling.)
   ===================================================================== */
/* spacing */
.mt-075 { margin-top: 0.75rem; }
.mt-1   { margin-top: 1rem; }
.mt-11  { margin-top: 1.1rem; }
.mt-135 { margin-top: 1.35rem; }
.mt-15  { margin-top: 1.5rem; }
.mt-175 { margin-top: 1.75rem; }
.mt-19  { margin-top: 1.9rem; }
.mt-2   { margin-top: 2rem; }
.mt-225 { margin-top: 2.25rem; }
.mt-25  { margin-top: 2.5rem; }
.mt-fa  { margin-top: clamp(2rem, 4vw, 3rem); }
.mt-fb  { margin-top: clamp(2.5rem, 6vw, 4rem); }
.mt-fc  { margin-top: clamp(3rem, 6vw, 4.5rem); }
.mb-15  { margin-bottom: 1.5rem; }
.bt-0   { border-top: 0; }
/* text + layout helpers */
.c-muted   { color: var(--ink-2); }
.tac       { text-align: center; }
.w-100     { width: 100%; }
.mw-46     { max-width: 46ch; }
.mw-56     { max-width: 56ch; }
.mw-60     { max-width: 60ch; }
.mw-62     { max-width: 62ch; }
.mw-64     { max-width: 64ch; }
.ai-start  { align-items: start; }
.jc-center { justify-content: center; }
.gtc-1     { grid-template-columns: 1fr; }
.bg-sand   { background: var(--sand); }
/* inline prose link */
.tlink { color: var(--red-deep); font-weight: 600; text-decoration: none; }
.tlink:hover { text-decoration: underline; }
/* section lead heading / subhead in split layouts */
.lead-h2 { font-size: var(--fs-h2); margin: 1rem 0 1.1rem; }
.lead-h3 { font-size: var(--fs-h3); margin-bottom: 0.75rem; }
.h-fluid { font-size: clamp(1.5rem, 4vw, 2.1rem); }
/* franchise price figure */
.price { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 5vw, 2.4rem); line-height: 1; color: var(--red-deep); margin: 0.35rem 0 0.5rem; }
/* founder pull-quote */
.quote-line { font-family: var(--display); font-weight: 600; font-size: clamp(1.35rem, 3.6vw, 2.1rem); line-height: 1.18; letter-spacing: -0.02em; color: var(--ink); }
.quote-cite { margin-top: 1.1rem; color: var(--ink-3); font-size: 0.92rem; }
.bare-quote { margin: 1.25rem 0 0; padding: 0; border: 0; }
/* thank-you / 404 */
.center-logo { width: 110px; margin: 0 auto 1.75rem; }
.thanks-h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
.lead-note { margin-top: 1.25rem; color: var(--ink-2); font-size: 1.1rem; }
/* inline centred image */
.img-c-380 { width: 100%; max-width: 380px; margin-inline: auto; }
.img-c-340 { max-width: 340px; margin-inline: auto; }
