@charset "UTF-8";
/* ==========================================================================
   Ala-Owerri Kitchen — design system
   Palette drawn from the pot: palm oil, hibiscus, ugu leaf, pounded yam, clay.
   Motifs inspired by uli, the Igbo curvilinear line art of Imo and Anambra.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Surfaces */
  /* Surfaces. Indigo is the ground colour of Nigerian cloth — adire, aso oke,
     and most Ankara — so it carries the site instead of brown. */
  --indigo:     #12355B;   /* the deep blue of adire */
  --indigo-d:   #0C2440;   /* deeper still, for the footer */
  --indigo-l:   #1B4879;   /* raised surface on indigo */
  --ink:        #14100D;   /* near-black, for text */
  --ink-2:      #211a14;
  --ink-3:      #2d241b;
  --ink-soft:   #3a2e23;
  --cream:      #F7EFE0;   /* unbleached cotton */
  --cream-2:    #F0E4CE;
  --sand:       #E2D2B4;
  --sand-2:     #CDB795;

  /* Brand */
  --palm:       #C2451B;   /* the rust that runs through every wax print */
  --palm-deep:  #96300F;
  --ember:      #E2672E;
  --ember-soft: #F08B52;
  --gold:       #E9A63B;   /* ochre */
  --gold-deep:  #C4842A;
  --hibiscus:   #8e1f2f;
  --leaf:       #1E6A4F;   /* ugu, okazi */
  --leaf-lt:    #4E9A79;

  /* Text */
  --tx:         #16110D;
  --tx-2:       #58483a;
  --tx-3:       #857263;
  --tx-on-dark: #f6efe3;
  --tx-on-dark-2: #c3b2a0;
  --tx-on-dark-3: #9c8b7a;

  /* Feedback */
  --ok:         #2f7d51;
  --warn:       #b8791b;
  --danger:     #b3261e;

  /* Type */
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Space + shape */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 12px;
  --r-xl: 14px;
  --r-field: 6px;   /* text inputs, option rows */
  --r-ui: 3px;      /* buttons, tags, chips */
  /* Image framing: one radius, used everywhere, nothing clever. */
  --r-media:   10px;
  --r-media-lg: 12px;
  /* A leaf, for small accents — uli line work is all curve and point.
     Named --r-leaf, not --leaf: that one is the green in the cloth. */
  --r-leaf: var(--r-lg);
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --maxw: 1240px;
  --nav-h: 76px;

  /* Warm shadows — never grey */
  --sh-1: 0 1px 2px rgba(74, 45, 20, .05), 0 4px 12px -2px rgba(74, 45, 20, .07);
  --sh-2: 0 2px 4px rgba(74, 45, 20, .06), 0 10px 26px -6px rgba(74, 45, 20, .12),
          0 20px 50px -14px rgba(74, 45, 20, .10);
  --sh-3: 0 3px 8px rgba(74, 45, 20, .07), 0 18px 42px -10px rgba(74, 45, 20, .16),
          0 36px 80px -20px rgba(74, 45, 20, .16);
  --sh-dark: 0 20px 60px rgba(0, 0, 0, .55);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--tx);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
/* <picture> is an inline wrapper by default, so a ratio set on the parent box
   is ignored and the raw image height wins. Make it fill its container. */
.hero__media picture, .page-head__media picture, .dish__media picture,
.sheet__media picture, .spotlight__media picture, .story__media picture,
.plate-slot picture { display: block; width: 100%; height: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}

/* ---------- 3. Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 780px; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--dark { background: var(--indigo); color: var(--tx-on-dark); position: relative; }
/* A whisper of grain stops large dark areas reading as flat digital black. */
.section--dark::after, .page-head::after, .footer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .38; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}
/* Lift only the content wrapper above the grain. Targeting every child would
   also hit .page-head__media, whose absolute positioning the background
   depends on, and that only survives today by rule order. */
.section--dark > .wrap, .page-head > .wrap, .footer > .wrap { position: relative; z-index: 1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--tx-on-dark); }
.section--cream2 { background: var(--cream-2); }
.stack > * + * { margin-top: var(--s, 1rem); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 2000;
  background: var(--palm); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- 4. Type scale ---------- */
.display-1 { font-size: clamp(2.75rem, 8.5vw, 6rem); font-weight: 900; letter-spacing: -.035em; }
.display-2 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.03em; }
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 700; }
.h4 { font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.lede { font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.6; color: var(--tx-2); }
.section--dark .lede { color: var(--tx-on-dark-2); }
.muted { color: var(--tx-3); }
.section--dark .muted { color: var(--tx-on-dark-3); }

/* Eyebrow — small caps label with a rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--palm);
}
.section--dark .eyebrow, .page-head .eyebrow, .hero .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .75;
}
.eyebrow--center::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .75;
}

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head > * + * { margin-top: .85rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* Igbo gloss under a heading */
.gloss {
  font-family: var(--display); font-style: italic; font-weight: 400;
  color: var(--tx-3); font-size: .95em;
}
.section--dark .gloss { color: var(--gold); opacity: .85; }

/* ---------- 4b. Ankara ---------- */
/* Three motifs, drawn as tiles rather than photographed: Record (the Nigerian
   name for the concentric-disc wax print), Nsu Bra (interlocking rings, the
   ripple a well makes) and strip cloth after aso oke. They are used as
   structure — bands between sections, the selvedge along a card — never as
   wallpaper behind text. */
.cloth-strip {
  background: repeating-linear-gradient(90deg,
    var(--indigo) 0 18px, var(--indigo-d) 18px 22px,
    var(--gold) 22px 28px, var(--indigo-d) 28px 32px,
    var(--palm) 32px 44px, var(--indigo-d) 44px 48px,
    var(--gold) 48px 52px, var(--indigo) 52px 70px,
    var(--leaf) 70px 82px, var(--indigo) 82px 100px);
}
.cloth-record {
  background-color: var(--indigo);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23E9A63B' stroke-width='3'%3E%3Ccircle cx='60' cy='60' r='54'/%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Ccircle cx='60' cy='60' r='26'/%3E%3Ccircle cx='0' cy='0' r='26'/%3E%3Ccircle cx='120' cy='0' r='26'/%3E%3Ccircle cx='0' cy='120' r='26'/%3E%3Ccircle cx='120' cy='120' r='26'/%3E%3C/g%3E%3Ccircle cx='60' cy='60' r='11' fill='%23C2451B'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.cloth-ripple {
  background-color: var(--palm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='58'%3E%3Cg fill='none' stroke='%23F7EFE0' stroke-width='2.4' opacity='.85'%3E%3Ccircle cx='0' cy='29' r='27'/%3E%3Ccircle cx='50' cy='29' r='27'/%3E%3Ccircle cx='100' cy='29' r='27'/%3E%3Ccircle cx='25' cy='0' r='27'/%3E%3Ccircle cx='75' cy='0' r='27'/%3E%3Ccircle cx='25' cy='58' r='27'/%3E%3Ccircle cx='75' cy='58' r='27'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 58px;
}

/* A length of cloth laid across the page between sections. */
.band { height: 26px; width: 100%; display: block; }
.band--tall { height: 44px; }

/* The same cloth as a hairline along the top edge of a card, like a selvedge. */
.selvedge { position: relative; }
.selvedge::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  border-radius: var(--r-lg) var(--r-lg) 0 0; z-index: 2;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 10px, var(--palm) 10px 20px, var(--indigo) 20px 30px, var(--leaf) 30px 40px);
}

/* ---------- 5. Uli motif ---------- */
/* Fine curvilinear line art, the Igbo wall-painting tradition of Imo State. */
.uli-rule {
  height: 22px; width: 100%; max-width: 260px;
  background-repeat: repeat-x; background-size: auto 22px; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='22' fill='none' stroke='%23c0431a' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M0 11c10 0 10-8 20-8s10 16 20 16 10-16 20-16 10 8 20 8'/%3E%3Ccircle cx='60' cy='11' r='2.4' fill='%23c0431a' stroke='none'/%3E%3C/svg%3E");
}
.uli-rule--center { margin-inline: auto; }
.section--dark .uli-rule {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='22' fill='none' stroke='%23e8b04b' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M0 11c10 0 10-8 20-8s10 16 20 16 10-16 20-16 10 8 20 8'/%3E%3Ccircle cx='60' cy='11' r='2.4' fill='%23e8b04b' stroke='none'/%3E%3C/svg%3E");
  opacity: .75;
}
/* Large faint field pattern for dark sections */
.uli-field { position: relative; isolation: isolate; }
.uli-field::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' fill='none' stroke='%23e8b04b' stroke-width='1.2'%3E%3Cpath d='M90 10c-22 26-44 40-44 66s20 44 44 44 44-18 44-44-22-40-44-66z'/%3E%3Ccircle cx='90' cy='86' r='14'/%3E%3Cpath d='M10 150c26-10 44 10 70 0M100 150c26-10 44 10 70 0'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: var(--palm); --btn-fg: #fff; --btn-off: var(--indigo); --btn-bd: var(--btn-bg);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.5rem; border-radius: var(--r-ui);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; position: relative; line-height: 1.2;
  /* A hard offset, the way the colours on a wax print sit a fraction out of
     register with each other. On hover the button settles onto its shadow. */
  box-shadow: 4px 4px 0 0 var(--btn-off);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--btn-off); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 var(--btn-off); }
.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none;
}
.btn--lg { padding: 1.1rem 2rem; font-size: .86rem; }
.btn--sm { padding: .62rem 1rem; font-size: .72rem; letter-spacing: .1em; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--indigo); --btn-bd: var(--indigo); --btn-off: var(--indigo);
}
.btn--ghost:hover { --btn-bg: var(--indigo); --btn-fg: var(--cream); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--indigo-d); --btn-off: var(--indigo-d); }
.btn--block { width: 100%; }
.btn__note { font-weight: 500; opacity: .82; font-size: .9em; letter-spacing: .04em; text-transform: none; }

/* On indigo and on photographs the offset has to be a light colour to show. */
.section--dark .btn, .hero .btn, .page-head .btn, .article-head .btn, .order-nudge .btn, .footer .btn, .cart-bar .btn {
  --btn-off: var(--gold);
}
.section--dark .btn--ghost, .hero .btn--ghost, .page-head .btn--ghost, .article-head .btn--ghost {
  --btn-fg: var(--cream); --btn-bd: var(--cream); --btn-off: var(--gold);
  background: rgba(12, 36, 64, .35);
}
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover, .page-head .btn--ghost:hover {
  --btn-bg: var(--cream); --btn-fg: var(--indigo); background: var(--cream);
}
.section--dark .btn--gold, .hero .btn--gold { --btn-off: var(--cream); }
/* Inside a scrolling drawer or a card there is no room for a 4px offset to
   the right, so the offset shrinks and sits inside the padding. */
.drawer__foot .btn, .sheet__foot .btn, .dish .btn, .summary-card .btn, .cart-bar .btn { box-shadow: 3px 3px 0 0 var(--btn-off); }

/* ---------- 7. Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: rgba(12, 36, 64, .90);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(232, 176, 75, .16);
  transition: opacity .35s var(--ease);
}
.nav.is-stuck::after { opacity: 1; }
.nav.is-stuck { box-shadow: 0 6px 30px rgba(0, 0, 0, .28); }
/* Pages that don't have a dark hero behind the nav */
.nav--solid::after { opacity: 1; }

.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
  display: flex; align-items: center; gap: 1.25rem;
}
.nav__logo { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.nav__logo img { height: 42px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__logo-text b {
  font-family: var(--display); font-size: 1.16rem; font-weight: 800;
  color: var(--tx-on-dark); letter-spacing: -.02em;
}
.nav__logo-text span {
  font-size: .62rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  position: relative; font-weight: 550; font-size: .97rem;
  color: var(--tx-on-dark-2); padding-block: .4rem;
  transition: color .2s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--tx-on-dark); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--ember); border-radius: 2px;
  transition: width .28s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: .65rem; }

/* Simplified nav used on checkout and confirmation: one link, no mobile menu. */
.nav__simple { display: flex; align-items: center; margin-left: auto; }
.nav__back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; color: var(--tx-on-dark-2);
  padding: .5rem .9rem; border-radius: var(--r-ui);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__back:hover { color: var(--tx-on-dark); background: rgba(246, 239, 227, .1); }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  padding: .62rem 1.15rem; border-radius: var(--r-ui);
  background: rgba(246, 239, 227, .1); color: var(--tx-on-dark);
  border: 1px solid rgba(246, 239, 227, .2); font-weight: 600; font-size: .9rem;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.cart-btn:hover { background: rgba(246, 239, 227, .18); border-color: rgba(246, 239, 227, .38); }
.cart-btn.is-bumped { animation: bump .45s var(--ease); }
@keyframes bump { 0%,100% { transform: scale(1); } 35% { transform: scale(1.14); } }
.cart-btn__count {
  min-width: 22px; height: 22px; padding-inline: 6px; border-radius: var(--r-ui);
  background: var(--ember); color: #fff; font-size: .76rem; font-weight: 700;
  display: grid; place-items: center; font-variant-numeric: tabular-nums;
}
.cart-btn__count:empty, .cart-btn__count[data-count="0"] { display: none; }

.nav__burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center;
  background: rgba(246, 239, 227, .1); border: 1px solid rgba(246, 239, 227, .2);
}
.nav__burger span {
  display: block; width: 20px; height: 2px; background: var(--tx-on-dark);
  border-radius: 2px; position: relative; transition: background-color .2s;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--tx-on-dark); border-radius: 2px;
  transition: transform .3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__burger { display: inline-flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12, 36, 64, .985);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 1rem var(--gut) 1.75rem;
    border-bottom: 1px solid rgba(232, 176, 75, .2);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: .95rem 0; border-bottom: 1px solid rgba(246, 239, 227, .09); font-size: 1.1rem; }
  .nav__link::after { display: none; }
  .nav__logo-text b { font-size: 1.02rem; }
}
@media (max-width: 420px) {
  .nav__logo-text { display: none; }
  .cart-btn__label { display: none; }
}

/* ---------- 8. Hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 860px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem); padding-bottom: clamp(3rem, 8vw, 6rem);
  background: var(--indigo-d); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 30, 54, .97) 4%, rgba(10, 30, 54, .84) 30%, rgba(12, 36, 64, .5) 62%, rgba(10, 30, 54, .6) 100%),
    radial-gradient(120% 80% at 18% 88%, rgba(194, 69, 27, .34), transparent 62%);
}
@media (max-width: 759px) {
  .hero__media::after {
    background:
      linear-gradient(to top, rgba(10, 30, 54, .97) 6%, rgba(10, 30, 54, .9) 42%, rgba(10, 30, 54, .74) 75%, rgba(10, 30, 54, .78) 100%),
      radial-gradient(120% 60% at 20% 90%, rgba(194, 69, 27, .3), transparent 60%);
  }
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__content { max-width: 720px; color: var(--tx-on-dark); }
.hero__content > * + * { margin-top: 1.35rem; }
/* Badge and opening status sit together at the top, so the status is above the
   fold on a phone instead of stranded under the stats row. */
.hero__top { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, .5); }
.hero h1 em {
  font-style: italic; color: var(--gold);
  font-variation-settings: "SOFT" 60, "WONK" 1;
}
.hero__sub { font-size: clamp(1.05rem, 1.9vw, 1.35rem); color: #e9ddcc; max-width: 54ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; padding-top: .5rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(246, 239, 227, .16); margin-top: 2.25rem;
}
.hero__meta div { display: flex; flex-direction: column; gap: .1rem; }
.hero__meta b { font-family: var(--display); font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.hero__meta span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-on-dark-3); }

.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem .5rem .6rem; border-radius: var(--r-ui);
  background: rgba(246, 239, 227, .1); border: 1px solid rgba(232, 176, 75, .34);
  color: var(--gold); font-size: .82rem; font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero__badge i { font-style: normal; font-size: 1rem; }

/* Open / closed pill */
.status-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; padding: .38rem .85rem;
  border-radius: var(--r-ui); background: rgba(47, 125, 81, .16);
  color: #7fd3a0; border: 1px solid rgba(127, 211, 160, .3);
}
.status-pill--closed { background: rgba(179, 38, 30, .16); color: #f0a49e; border-color: rgba(240, 164, 158, .3); }
.status-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-pill--open .status-pill__dot { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127, 211, 160, .6); }
  70% { box-shadow: 0 0 0 9px rgba(127, 211, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 211, 160, 0); }
}

/* ---------- 9. Signature spotlight ---------- */
.spotlight { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .spotlight { grid-template-columns: 1.05fr .95fr; } }
.spotlight__media { position: relative; }
.spotlight__media picture, .spotlight__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-media-lg); box-shadow: var(--sh-dark);
}
.spotlight__stamp {
  position: absolute; right: -14px; bottom: -22px;
  /* A negative offset here pushed the whole page 14px wider than the phone. */
  width: clamp(112px, 15vw, 148px); height: clamp(112px, 15vw, 148px);
  display: grid; place-items: center; text-align: center;
  background: var(--gold); color: var(--ink); border-radius: 50%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
  font-family: var(--display); font-weight: 800; line-height: 1.1;
  padding: 1rem; font-size: clamp(.78rem, 1.3vw, .94rem);
  transform: rotate(-9deg);
}
.spotlight__stamp em { display: block; font-size: 1.5em; font-style: normal; }
@media (max-width: 700px) { .spotlight__stamp { right: 6px; bottom: -18px; } }
.ingredients { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: .35rem; }
.ingredient {
  padding: .45rem .95rem; border-radius: var(--r-ui); font-size: .84rem; font-weight: 550;
  background: rgba(232, 176, 75, .1); border: 1px solid rgba(232, 176, 75, .26);
  color: var(--gold);
}
.ingredient span { opacity: .62; font-style: italic; }

/* ---------- 10. Dish cards ---------- */
.dish-grid {
  display: grid; gap: clamp(1.1rem, 2.2vw, 1.75rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 285px), 1fr));
}
.dish {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); padding: 16px 10px 10px;
  border: 1px solid rgba(214, 194, 162, .5); overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .35s var(--ease);
}
.dish:hover { transform: translateY(-7px); box-shadow: var(--sh-3); border-color: var(--sand-2); }
/* A strip of cloth bound along the top edge of every card. */
.dish::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px; z-index: 2;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 11px, var(--palm) 11px 22px, var(--indigo) 22px 33px, var(--leaf) 33px 44px);
}
.dish__media {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--cream-2); min-height: 0;
  border-radius: var(--r-media);
}
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.dish:hover .dish__media img { transform: scale(1.06); }
.dish__flags { position: absolute; top: .8rem; left: .8rem; display: flex; flex-wrap: wrap; gap: .4rem; z-index: 2; }
.flag {
  padding: .3rem .7rem; border-radius: var(--r-ui); font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  background: rgba(22, 17, 13, .78); color: var(--cream);
  backdrop-filter: blur(6px);
}
.flag--signature { background: var(--gold); color: var(--ink); }
.flag--popular { background: var(--palm); color: #fff; }
.dish__spice {
  position: absolute; right: .9rem; bottom: .8rem; z-index: 2;
  display: flex; align-items: center; gap: 3px;
  padding: .32rem .55rem; border-radius: var(--r-ui);
  background: rgba(22, 17, 13, .74); backdrop-filter: blur(6px);
}
.dish__spice svg { display: block; width: 9px; height: 12px; }
.dish__spice svg path { fill: rgba(246, 239, 227, .3); }
.dish__spice svg.on path { fill: var(--ember-soft); }

.dish__body { padding: 1.15rem .9rem .75rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.dish__title { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.dish__title h3 { font-size: 1.22rem; font-weight: 700; }
.dish__igbo { font-family: var(--display); font-style: italic; font-size: .82rem; color: var(--tx-3); }
.dish__price {
  font-family: var(--display); font-weight: 700; font-size: 1.16rem;
  color: var(--palm); white-space: nowrap; font-variant-numeric: tabular-nums;
}
.dish__price small { font-family: var(--sans); font-size: .64rem; font-weight: 600; color: var(--tx-3); display: block; text-align: right; letter-spacing: .04em; }
.dish__desc {
  font-size: .92rem; color: var(--tx-2); line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.dish__foot { display: flex; align-items: center; gap: .6rem; padding-top: .35rem; }
.dish__foot .btn { flex: 1; }
.dish__sold {
  position: absolute; inset: 16px 10px 10px; border-radius: var(--r-media); z-index: 3; display: grid; place-items: center;
  background: rgba(251, 246, 236, .82); backdrop-filter: blur(2px);
  font-family: var(--display); font-weight: 700; color: var(--tx-2); font-size: 1.1rem;
}

/* Horizontal scroller for featured dishes */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(268px, 300px);
  gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-block: .5rem 1.5rem; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut);
  scrollbar-width: thin; scrollbar-color: var(--sand-2) transparent;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--sand-2); border-radius: 999px; }
.rail::-webkit-scrollbar-track { background: transparent; }

/* ---------- 11. Menu page ---------- */
.page-head {
  position: relative; background: var(--indigo); color: var(--tx-on-dark);
  padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem); overflow: hidden;
}
.page-head__media { position: absolute; inset: 0; z-index: 0; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-head__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12, 36, 64, .84), rgba(12, 36, 64, .95));
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #fff; }
.page-head p { color: var(--tx-on-dark-2); max-width: 58ch; margin-top: .9rem; }

.menu-layout { display: grid; gap: 2rem; align-items: start; }
/* Grid items default to min-width:auto, which lets the nowrap category buttons
   push the whole column — and the page — wider than the viewport. */
.menu-layout > * { min-width: 0; }
@media (min-width: 1060px) { .menu-layout { grid-template-columns: 232px 1fr; gap: 3rem; } }

.cat-nav { position: sticky; top: calc(var(--nav-h) + 12px); z-index: 30; min-width: 0; }
@media (max-width: 1059px) {
  .cat-nav {
    top: var(--nav-h);
    margin-inline: calc(var(--gut) * -1); padding: .7rem var(--gut);
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 6px 18px -12px rgba(56, 33, 14, .5);
  }
  .cat-nav__list {
    display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none;
    min-width: 0; max-width: 100%;
  }
  .cat-nav__list::-webkit-scrollbar { display: none; }
}
.cat-nav__list { display: flex; flex-direction: column; gap: .25rem; }
@media (max-width: 1059px) { .cat-nav__list { flex-direction: row; } }
.cat-nav__btn {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  padding: .7rem .95rem; border-radius: var(--r-sm); text-align: left;
  font-weight: 600; font-size: .94rem; color: var(--tx-2); white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s;
}
.cat-nav__btn:hover { background: var(--cream-2); color: var(--tx); }
.cat-nav__btn.is-active { background: var(--indigo); color: var(--cream); border-color: var(--indigo); }
.cat-nav__btn small { margin-left: auto; opacity: .55; font-weight: 500; font-variant-numeric: tabular-nums; }
@media (max-width: 1059px) { .cat-nav__btn small { display: none; } }

.menu-search { position: relative; margin-bottom: 1.5rem; }
.menu-search input {
  width: 100%; padding: .95rem 1.1rem .95rem 2.9rem;
  border: 1px solid var(--sand-2); border-radius: var(--r-field); background: #fff;
  font-size: .98rem; transition: border-color .2s, box-shadow .2s;
}
.menu-search input:focus { outline: none; border-color: var(--palm); box-shadow: 0 0 0 4px rgba(192, 67, 26, .12); }
.menu-search__icon { position: absolute; left: 1.05rem; top: 50%; transform: translateY(-50%); color: var(--tx-3); pointer-events: none; }

.menu-cat { scroll-margin-top: calc(var(--nav-h) + 90px); }
.menu-cat + .menu-cat { margin-top: clamp(2.5rem, 5vw, 4rem); }
.menu-cat__head { margin-bottom: 1.5rem; padding-bottom: .9rem; border-bottom: 2px solid var(--sand); }
.menu-cat__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.menu-cat__head p { color: var(--tx-2); font-size: .95rem; margin-top: .3rem; }

.menu-empty { text-align: center; padding: 4rem 1rem; color: var(--tx-3); }
.menu-empty h3 { color: var(--tx-2); margin-bottom: .5rem; }

/* ---------- 12. Item dialog ---------- */
dialog.sheet {
  border: 0; padding: 0; background: transparent; max-width: none; max-height: none;
  width: 100%; height: 100%; margin: 0; overflow: visible;
}
dialog.sheet::backdrop { background: rgba(14, 10, 7, .68); backdrop-filter: blur(4px); }
.sheet__panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(620px, calc(100vw - 2rem)); max-height: min(90dvh, 900px);
  background: var(--cream); border-radius: var(--r-lg);
  box-shadow: var(--sh-dark); overflow: hidden;
  display: flex; flex-direction: column;
  animation: sheetIn .35s var(--ease-out);
}
@keyframes sheetIn { from { opacity: 0; transform: translate(-50%, calc(-50% + 24px)) scale(.97); } }
@media (max-width: 640px) {
  .sheet__panel {
    left: 0; top: auto; bottom: 0; transform: none;
    width: 100%; max-height: 92dvh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    animation: sheetUp .35s var(--ease-out);
  }
  @keyframes sheetUp { from { transform: translateY(100%); } }
}
.sheet__media {
  position: relative; aspect-ratio: 16/9; background: var(--cream-2);
  flex-shrink: 0; overflow: hidden;
  /* Flex items default to min-height:auto, which lets a 4:3 photo stretch this
     box past its 16:9 ratio and push the options out of view. */
  min-height: 0;
  border-radius: var(--r-media-lg);
  margin: 10px;
}
.sheet__media img { width: 100%; height: 100%; object-fit: cover; }
.sheet__close {
  position: absolute; right: .85rem; top: .85rem; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(22, 17, 13, .6); color: #fff; backdrop-filter: blur(8px);
  font-size: 1.25rem; line-height: 1; transition: background-color .2s;
}
.sheet__close:hover { background: rgba(22, 17, 13, .85); }
.sheet__body { padding: 1.5rem clamp(1.25rem, 4vw, 1.9rem); overflow-y: auto; flex: 1; }
.sheet__title { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.sheet__title h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.sheet__desc { color: var(--tx-2); margin-top: .7rem; font-size: .98rem; }
.sheet__story {
  margin-top: 1rem; padding: .95rem 1.1rem; border-radius: var(--r);
  background: rgba(232, 176, 75, .13); border-left: 3px solid var(--gold);
  font-family: var(--display); font-style: italic; font-size: .95rem; color: var(--tx-2);
}
.sheet__lead {
  margin-top: 1rem; padding: .8rem 1rem; border-radius: var(--r-sm);
  background: rgba(184, 121, 27, .12); color: #7a5310;
  font-size: .87rem; font-weight: 550;
}

.optgroup { margin-top: 1.75rem; }
.optgroup__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; }
.optgroup__head h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.optgroup__req { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--palm); }
.optgroup__opt { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--tx-3); }
.opt-list { display: grid; gap: .5rem; }
.opt {
  display: flex; align-items: center; gap: .85rem; cursor: pointer;
  padding: .85rem 1.15rem; border-radius: var(--r-field);
  background: #fff; border: 1.5px solid var(--sand);
  transition: border-color .18s, background-color .18s, box-shadow .18s;
}
.opt:hover { border-color: var(--sand-2); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__mark {
  width: 21px; height: 21px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid var(--sand-2); display: grid; place-items: center;
  transition: border-color .18s, background-color .18s;
}
.opt--multi .opt__mark { border-radius: 6px; }
.opt__mark::after {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: #fff; transform: scale(0); transition: transform .2s var(--ease);
}
.opt--multi .opt__mark::after {
  width: 11px; height: 6px; border-radius: 0; background: none;
  border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) scale(0); margin-top: -3px;
}
.opt:has(input:checked) { border-color: var(--palm); background: rgba(192, 67, 26, .05); box-shadow: 0 0 0 1px var(--palm); }
.opt:has(input:checked) .opt__mark { border-color: var(--palm); background: var(--palm); }
.opt:has(input:checked) .opt__mark::after { transform: scale(1); }
.opt--multi:has(input:checked) .opt__mark::after { transform: rotate(-45deg) scale(1); }
.opt:has(input:focus-visible) { outline: 3px solid var(--ember); outline-offset: 2px; }
.opt__name { flex: 1; font-weight: 550; font-size: .95rem; }
.opt__price { font-weight: 650; font-size: .9rem; color: var(--tx-2); font-variant-numeric: tabular-nums; }

.sheet__note { margin-top: 1.75rem; }
.sheet__note label { display: block; font-weight: 700; font-size: 1rem; margin-bottom: .55rem; }
.sheet__note textarea {
  width: 100%; min-height: 84px; resize: vertical; padding: .95rem 1.25rem;
  border: 1.5px solid var(--sand); border-radius: var(--r-field); background: #fff;
  font-size: .94rem; font-family: inherit;
}
.sheet__note textarea:focus { outline: none; border-color: var(--palm); box-shadow: 0 0 0 3px rgba(192, 67, 26, .1); }

.sheet__foot {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
  padding: 1rem clamp(1.25rem, 4vw, 1.9rem);
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: #fff; border-top: 1px solid var(--sand);
}
.qty { display: flex; align-items: center; gap: .2rem; border: 1.5px solid var(--sand-2); border-radius: var(--r-field); padding: .2rem; }
.qty button {
  width: 36px; height: 36px; border-radius: var(--r-ui); display: grid; place-items: center;
  font-size: 1.15rem; color: var(--tx-2); transition: background-color .18s, color .18s;
}
.qty button:hover:not([disabled]) { background: var(--cream-2); color: var(--palm); }
.qty button[disabled] { opacity: .35; cursor: not-allowed; }
.qty output { min-width: 28px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- 13. Cart drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 950; background: rgba(14, 10, 7, .58);
  backdrop-filter: blur(3px); opacity: 0; pointer-events: none;
  transition: opacity .32s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 960;
  width: min(430px, 100vw); background: var(--cream);
  display: flex; flex-direction: column;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .32);
  transform: translateX(100%); transition: transform .38s var(--ease-out);
  visibility: hidden;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__head {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--sand); flex-shrink: 0;
  padding-top: max(1.25rem, env(safe-area-inset-top));
}
.drawer__head h2 { font-size: 1.3rem; margin-right: auto; }
.drawer__close {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); font-size: 1.3rem; line-height: 1; color: var(--tx-2);
  transition: background-color .2s, color .2s;
}
.drawer__close:hover { background: var(--sand); color: var(--tx); }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.1rem 1.35rem; }
.drawer__foot {
  flex-shrink: 0; padding: 1.15rem 1.35rem;
  padding-bottom: max(1.15rem, env(safe-area-inset-bottom));
  background: #fff; border-top: 1px solid var(--sand);
}

.cart-line { display: grid; grid-template-columns: 62px 1fr; gap: .9rem; padding: .95rem 0; border-bottom: 1px solid var(--sand); }
.cart-line:last-child { border-bottom: 0; }
.cart-line__img { width: 62px; height: 62px; border-radius: 14px; object-fit: cover; background: var(--cream-2); }
.cart-line__main { min-width: 0; }
.cart-line__top { display: flex; justify-content: space-between; gap: .75rem; align-items: baseline; }
.cart-line__name { font-weight: 650; font-size: .96rem; line-height: 1.3; }
.cart-line__price { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cart-line__detail { font-size: .81rem; color: var(--tx-3); margin-top: .2rem; line-height: 1.45; }
.cart-line__note { font-size: .81rem; color: var(--warn); margin-top: .2rem; font-style: italic; }
.cart-line__ctrl { display: flex; align-items: center; gap: .75rem; margin-top: .55rem; }
.qty--sm { padding: .1rem; }
.qty--sm button { width: 28px; height: 28px; font-size: 1rem; }
.qty--sm output { min-width: 22px; font-size: .9rem; }
.cart-line__remove { font-size: .81rem; color: var(--tx-3); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.cart-line__remove:hover { color: var(--danger); }

.cart-empty { text-align: center; padding: 3.5rem 1rem; }
.cart-empty svg { margin: 0 auto 1.1rem; opacity: .32; }
.cart-empty h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.cart-empty p { color: var(--tx-3); font-size: .92rem; margin-bottom: 1.4rem; }

.totals { display: grid; gap: .5rem; margin-bottom: 1rem; }
.totals__row { display: flex; justify-content: space-between; font-size: .93rem; color: var(--tx-2); }
.totals__row span:last-child { font-variant-numeric: tabular-nums; font-weight: 550; }
.totals__row--total {
  font-family: var(--display); font-size: 1.28rem; font-weight: 700; color: var(--tx);
  padding-top: .7rem; margin-top: .3rem; border-top: 1.5px solid var(--sand);
}
.totals__row--total span:last-child { font-weight: 700; color: var(--palm); }
.totals__row--free span:last-child { color: var(--ok); font-weight: 650; }

.toggle-group { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem; }
.toggle {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: .1rem;
  padding: .85rem .7rem; border-radius: var(--r-field); cursor: pointer;
  background: #fff; border: 1.5px solid var(--sand); text-align: center;
  transition: border-color .18s, background-color .18s, box-shadow .18s;
}
.toggle input { position: absolute; opacity: 0; }
.toggle b { font-size: .93rem; font-weight: 650; }
.toggle small { font-size: .76rem; color: var(--tx-3); }
.toggle:has(input:checked) { border-color: var(--palm); background: rgba(192, 67, 26, .05); box-shadow: 0 0 0 1px var(--palm); }
.toggle:has(input:checked) small { color: var(--palm); }
.toggle:has(input:focus-visible) { outline: 3px solid var(--ember); outline-offset: 2px; }

.minimum-note {
  display: flex; gap: .6rem; align-items: flex-start;
  padding: .75rem .9rem; border-radius: var(--r-sm); margin-bottom: 1rem;
  background: rgba(184, 121, 27, .12); color: #7a5310; font-size: .85rem; line-height: 1.5;
}
.secure-note {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin-top: .75rem; font-size: .78rem; color: var(--tx-3);
}

/* ---------- 14. Forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 650; font-size: .9rem; margin-bottom: .45rem; }
.field label .req { color: var(--palm); }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1.1rem; border-radius: var(--r-field);
  border: 1.5px solid var(--sand-2); background: #fff; font-size: .97rem;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field textarea {
  min-height: 108px; resize: vertical; font-family: inherit;
  border-radius: var(--r-field); padding: 1rem 1.1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--palm);
  box-shadow: 0 0 0 4px rgba(192, 67, 26, .13), 0 6px 18px -10px rgba(192, 67, 26, .5);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); }
.field__hint { font-size: .8rem; color: var(--tx-3); margin-top: .35rem; }
.field__err { font-size: .82rem; color: var(--danger); margin-top: .35rem; font-weight: 550; display: none; }
.field__err.is-shown { display: block; }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ---------- 15. Build-your-plate ---------- */
.plate-builder { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .plate-builder { grid-template-columns: 1fr 1fr; } }
.plate-stage {
  position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; width: 100%;
  border-radius: 50%; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 42%, #fffdf8 0%, #f5eddf 56%, #e2d2b6 78%, #cdb894 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42), inset 0 -8px 24px rgba(120, 90, 50, .18);
}
.plate-stage::after {
  content: ""; position: absolute; inset: 7%; border-radius: 50%;
  border: 1px solid rgba(120, 90, 50, .16);
}
.plate-slot {
  position: absolute; border-radius: 50%; overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
  transition: transform .5s var(--ease-out), opacity .4s var(--ease);
  background: var(--cream-2);
}
.plate-slot img { width: 100%; height: 100%; object-fit: cover; }
.plate-slot--soup    { width: 52%; height: 52%; left: 8%;  top: 16%; z-index: 3; }
.plate-slot--swallow { width: 40%; height: 40%; right: 7%; top: 12%; z-index: 2; }
.plate-slot--protein { width: 38%; height: 38%; right: 16%; bottom: 10%; z-index: 4; }
.plate-slot.is-empty { opacity: .2; }
.plate-slot.is-swap { animation: plateSwap .5s var(--ease-out); }
@keyframes plateSwap { 0% { transform: scale(.82) rotate(-7deg); opacity: .4; } 60% { transform: scale(1.05); } }
.plate-price {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); padding: .65rem 1.5rem; border-radius: var(--r-ui);
  font-family: var(--display); font-weight: 800; font-size: 1.22rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.chip {
  padding: .6rem 1.1rem; border-radius: var(--r-ui); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(246, 239, 227, .08); border: 1.5px solid rgba(246, 239, 227, .2);
  color: var(--tx-on-dark-2); cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--tx-on-dark); }
.chip.is-on { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.builder-step + .builder-step { margin-top: 1.5rem; }
.builder-step > .eyebrow { margin-bottom: .1rem; }

/* ---------- 16. Steps / story / reviews ---------- */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); counter-reset: step; }
.step { position: relative; padding-top: 3.25rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--palm); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.28rem;
}
.section--dark .step::before { background: var(--gold); color: var(--ink); }
.step h3 { font-size: 1.16rem; margin-bottom: .45rem; }
.step p { font-size: .93rem; color: var(--tx-2); }
.section--dark .step p { color: var(--tx-on-dark-2); }

.story { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .story { grid-template-columns: .85fr 1.15fr; } }
.story__media { position: relative; }
.story__media picture, .story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-media-lg); box-shadow: var(--sh-3); }
.story__media::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  border-radius: var(--r-media-lg);
  border: 1.5px solid var(--gold); z-index: -1; opacity: .8;
}
.signature { max-width: 190px; margin-top: 1.4rem; opacity: .85; }
.section--dark .signature { filter: invert(1) sepia(1) saturate(.4) hue-rotate(5deg) brightness(1.4); }
.pull-quote {
  font-family: var(--display); font-style: italic; font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45; color: var(--tx); padding-left: 1.4rem; border-left: 3px solid var(--gold);
}
.section--dark .pull-quote { color: var(--tx-on-dark); }

.reviews { display: grid; gap: 1.35rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr)); }
.review {
  padding: 1.6rem; border-radius: var(--r-lg); background: rgba(246, 239, 227, .05);
  border: 1px solid rgba(246, 239, 227, .12); display: flex; flex-direction: column; gap: .85rem;
}
.review__stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.review p { font-size: .97rem; color: var(--tx-on-dark-2); line-height: 1.6; flex: 1; }
.review__who { display: flex; align-items: center; gap: .7rem; }
.review__avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--palm); color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.review__who b { font-size: .93rem; display: block; color: var(--tx-on-dark); }
.review__who small { font-size: .8rem; color: var(--tx-on-dark-3); }

/* ---------- 17. Glossary / fun ---------- */
.glossary { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.gloss-card {
  padding: 1.35rem 1.5rem; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--sand); box-shadow: var(--sh-1);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-radius .45s var(--ease-out);
}
.gloss-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.gloss-card dt { font-family: var(--display); font-weight: 700; font-size: 1.14rem; color: var(--palm); }
.gloss-card dt span { font-family: var(--sans); font-size: .74rem; font-weight: 600; color: var(--tx-3); letter-spacing: .06em; text-transform: uppercase; display: block; margin-top: .15rem; }
.gloss-card dd { font-size: .91rem; color: var(--tx-2); margin-top: .5rem; }

.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--sand); padding: .35rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.5rem 1.1rem 0; position: relative;
  font-weight: 650; font-size: 1.04rem; transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--palm); }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 2px solid var(--palm); border-bottom: 2px solid var(--palm);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details p { padding-bottom: 1.2rem; color: var(--tx-2); font-size: .96rem; }
.faq details p + p { padding-top: 0; margin-top: -.5rem; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--indigo-d); color: var(--tx-on-dark-2); padding-top: clamp(3.5rem, 7vw, 5.5rem); position: relative; }
.footer__grid {
  display: grid; gap: 2.5rem; padding-bottom: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.footer__brand { max-width: 320px; }
.footer__lockup { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.15rem; }
.footer__lockup img { width: 52px; height: 52px; }
.footer__lockup span { display: flex; flex-direction: column; line-height: 1.05; }
.footer__lockup b {
  font-family: var(--display); font-size: 1.3rem; font-weight: 800;
  color: var(--tx-on-dark); letter-spacing: -.02em;
}
.footer__lockup em {
  font-style: normal; font-size: .66rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.footer__brand p { font-size: .92rem; line-height: 1.65; }
.footer h4 {
  font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.footer li + li { margin-top: .6rem; }
.footer a { font-size: .93rem; transition: color .2s; }
.footer a:hover { color: var(--ember-soft); }
.footer__contact li { display: flex; gap: .7rem; font-size: .93rem; align-items: flex-start; }
.footer__contact svg { flex-shrink: 0; margin-top: .3rem; color: var(--gold); }
.socials { display: flex; gap: .65rem; margin-top: 1.35rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(246, 239, 227, .08); border: 1px solid rgba(246, 239, 227, .14);
  transition: background-color .22s, transform .22s, border-color .22s;
}
.socials a:hover { background: var(--palm); border-color: var(--palm); transform: translateY(-3px); color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-block: 1.6rem; border-top: 1px solid rgba(246, 239, 227, .1); font-size: .85rem;
}
.footer__bottom nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- 19. Toast ---------- */
.toast-stack {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 1100; display: flex; flex-direction: column; gap: .6rem;
  pointer-events: none; width: min(420px, calc(100vw - 2rem));
  padding-bottom: env(safe-area-inset-bottom);
}
.toast {
  display: flex; align-items: center; gap: .85rem; pointer-events: auto;
  padding: .9rem 1.15rem; border-radius: var(--r); background: var(--indigo-d);
  color: var(--cream); box-shadow: var(--sh-dark); font-size: .93rem; font-weight: 550;
  animation: toastIn .34s var(--ease-out);
  border-left: 3px solid var(--ok);
}
.toast--err { border-left-color: var(--danger); }
.toast.is-out { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(18px) scale(.96); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px) scale(.97); } }
.toast img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.toast__text { flex: 1; min-width: 0; }
.toast__text b { display: block; }
.toast__text small { color: var(--tx-on-dark-3); }

/* ---------- 20. Sticky mobile cart bar ---------- */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 880;
  padding: .75rem var(--gut); padding-bottom: max(.75rem, env(safe-area-inset-bottom));
  background: rgba(12, 36, 64, .96); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232, 176, 75, .2);
  transform: translateY(110%); transition: transform .38s var(--ease-out);
}
.cart-bar.is-shown { transform: translateY(0); }
.cart-bar .btn { width: 100%; justify-content: space-between; }
@media (min-width: 1060px) { .cart-bar { display: none; } }

/* ---------- 21. Confirmation / receipt ---------- */
.receipt {
  max-width: 660px; margin-inline: auto; background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--sh-3); overflow: hidden; border: 1px solid var(--sand);
}
.receipt__head { background: var(--indigo); color: var(--cream); padding: clamp(2rem, 5vw, 3rem) 2rem; text-align: center; position: relative; }
.receipt__tick {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: grid; place-items: center; background: var(--ok); color: #fff;
  animation: tickPop .55s var(--ease-out) both;
}
@keyframes tickPop { 0% { transform: scale(0); } 62% { transform: scale(1.16); } 100% { transform: scale(1); } }
.receipt__head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; }
.receipt__head p { color: var(--tx-on-dark-2); margin-top: .6rem; }
.receipt__num {
  display: inline-block; margin-top: 1.1rem; padding: .55rem 1.35rem; border-radius: var(--r-ui);
  background: rgba(232, 176, 75, .16); border: 1px solid rgba(232, 176, 75, .34);
  color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .04em;
}
.receipt__body { padding: clamp(1.5rem, 4vw, 2.5rem); }
.receipt__meta { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); margin-bottom: 2rem; }
.receipt__meta div { }
.receipt__meta dt { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-3); font-weight: 650; }
.receipt__meta dd { font-weight: 600; margin-top: .25rem; font-size: .98rem; }
.receipt__items { border-top: 1px solid var(--sand); }
.receipt__item { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--sand); }
.receipt__item b { font-weight: 650; font-size: .97rem; }
.receipt__item small { display: block; color: var(--tx-3); font-size: .84rem; margin-top: .15rem; }
.receipt__item span { font-weight: 650; font-variant-numeric: tabular-nums; white-space: nowrap; }
.receipt__next {
  margin-top: 2rem; padding: 1.3rem 1.5rem; border-radius: var(--r);
  background: rgba(232, 176, 75, .12); border: 1px solid rgba(232, 176, 75, .3);
}
.receipt__next h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.receipt__next li { display: flex; gap: .7rem; font-size: .93rem; color: var(--tx-2); }
.receipt__next li + li { margin-top: .5rem; }
.receipt__next svg { flex-shrink: 0; margin-top: .3rem; color: var(--gold); }

/* ---------- 22. Skeletons & utility ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--cream-2) 25%, #ffffff 50%, var(--cream-2) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite linear; border-radius: var(--r);
}
@keyframes shimmer { to { background-position: -200% 0; } }
.dish-skeleton { height: 380px; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.75rem; } .mt-4 { margin-top: 2.5rem; }
.flex-cta { display: flex; flex-wrap: wrap; gap: .85rem; }
.flex-cta--center { justify-content: center; }
body.is-locked { overflow: hidden; }
[hidden] { display: none !important; }

/* ---------- 23. Checkout ---------- */
.checkout-grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 940px) { .checkout-grid { grid-template-columns: 1.1fr .9fr; } }

.card {
  background: #fff; border: 1px solid var(--sand); border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.1rem); box-shadow: var(--sh-1);
}
.card + .card { margin-top: 1.25rem; }
.card > h2 {
  font-size: 1.3rem; margin-bottom: .35rem;
  display: flex; align-items: center; gap: .7rem;
}
.card > h2 .num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--palm); color: #fff;
  font-family: var(--sans); font-size: .9rem; font-weight: 700;
}
.card__hint { color: var(--tx-3); font-size: .9rem; margin-bottom: 1.35rem; padding-left: 2.6rem; }

.summary-card { position: sticky; top: calc(var(--nav-h) + 16px); }
.summary-card .totals { margin-bottom: 0; }
.summary-lines { max-height: 310px; overflow-y: auto; margin-bottom: 1.1rem; }
.summary-line { display: flex; gap: .75rem; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--cream-2); font-size: .91rem; }
.summary-line:last-child { border-bottom: 0; }
.summary-line b { font-weight: 650; }
.summary-line small { display: block; color: var(--tx-3); font-size: .82rem; }
.summary-line span { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }
.summary-qty { color: var(--palm); font-weight: 700; margin-right: .3rem; }

.tip-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; }
.tip-btn {
  padding: .72rem .3rem; border-radius: var(--r-field); text-align: center;
  border: 1.5px solid var(--sand); background: #fff; font-weight: 650; font-size: .9rem;
  transition: border-color .18s, background-color .18s, color .18s;
}
.tip-btn:hover { border-color: var(--sand-2); }
.tip-btn.is-on { border-color: var(--palm); background: rgba(192,67,26,.06); color: var(--palm); box-shadow: 0 0 0 1px var(--palm); }
.tip-btn small { display: block; font-weight: 500; font-size: .74rem; color: var(--tx-3); }
.tip-btn.is-on small { color: var(--palm); opacity: .8; }

.pay-btn { margin-top: 1.25rem; }
.legal { font-size: .8rem; color: var(--tx-3); text-align: center; margin-top: .9rem; line-height: 1.55; }
.legal a { text-decoration: underline; }

.banner {
  display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.15rem;
  border-radius: var(--r); margin-bottom: 1.5rem; font-size: .92rem; line-height: 1.55;
}
.banner--warn { background: rgba(184,121,27,.13); color: #7a5310; border: 1px solid rgba(184,121,27,.28); }
.banner--info { background: rgba(60,107,71,.1); color: #2c5637; border: 1px solid rgba(60,107,71,.24); }
.banner--err { background: rgba(179,38,30,.1); color: #8e1f19; border: 1px solid rgba(179,38,30,.26); }
.banner b { display: block; margin-bottom: .15rem; }

.empty-state { text-align: center; padding: clamp(3rem, 9vw, 6rem) 1rem; max-width: 460px; margin-inline: auto; }
.empty-state h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .75rem; }
.empty-state p { color: var(--tx-2); margin-bottom: 1.75rem; }

.spinner {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Page wrapper for light-nav pages */
.page-body { padding-top: var(--nav-h); }

/* ---------- 24. Journal: articles, events, resources ---------- */
.post-grid {
  display: grid; gap: clamp(1.1rem, 2.2vw, 1.75rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.post {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--sand); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-1); position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.post::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; z-index: 2;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 11px, var(--palm) 11px 22px, var(--indigo) 22px 33px, var(--leaf) 33px 44px);
}
.post__media { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); margin-top: 6px; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.post__kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--palm);
}
.post__body h3 { font-size: 1.28rem; line-height: 1.22; }
.post__body h3 a::after { content: ""; position: absolute; inset: 0; }
.post__body p { font-size: .94rem; color: var(--tx-2); flex: 1; }
.post__meta { font-size: .82rem; color: var(--tx-3); display: flex; gap: .6rem; align-items: center; }
.post__meta time { font-variant-numeric: tabular-nums; }

/* Article page */
.article-head {
  background: var(--indigo); color: var(--tx-on-dark); position: relative;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.article-head .wrap { position: relative; z-index: 1; max-width: 820px; }
.article-head h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-top: .8rem; }
.article-head .standfirst {
  color: var(--tx-on-dark-2); font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  margin-top: 1.1rem; max-width: 62ch; line-height: 1.6;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem;
  padding-top: 1.2rem; border-top: 1px solid rgba(246, 239, 227, .18);
  font-size: .85rem; color: var(--tx-on-dark-3);
}

.prose { max-width: 720px; margin-inline: auto; font-size: 1.06rem; line-height: 1.75; }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.8rem; padding-top: 1.6rem;
  border-top: 2px solid var(--sand);
}
.prose h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); margin-top: 2rem; }
.prose p { color: var(--tx-2); }
.prose strong { color: var(--tx); font-weight: 650; }
.prose a { color: var(--palm); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: var(--palm-deep); }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--tx-2); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .55rem; }
.prose li::marker { color: var(--palm); }
.prose figure { margin-block: 2rem; }
.prose figure img { width: 100%; border-radius: var(--r-media-lg); box-shadow: var(--sh-2); }
.prose figcaption { font-size: .86rem; color: var(--tx-3); margin-top: .7rem; text-align: center; }
.prose blockquote {
  margin-block: 2rem; padding: 1.4rem 1.6rem; border-radius: var(--r-lg);
  background: var(--cream-2); border-left: 4px solid var(--gold);
  font-family: var(--display); font-style: italic; font-size: 1.14rem; color: var(--tx);
}
.prose blockquote p { color: inherit; }
.prose table { width: 100%; border-collapse: collapse; font-size: .96rem; margin-block: 1.8rem; }
.prose th, .prose td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--sand); }
.prose th { font-weight: 700; background: var(--cream-2); }
.prose td:last-child, .prose th:last-child { text-align: right; font-variant-numeric: tabular-nums; }

/* A pull-out that links back into the menu — the reason the article exists. */
.order-nudge {
  margin-block: 2.4rem; padding: 1.6rem 1.8rem; border-radius: var(--r-lg);
  background: var(--indigo); color: var(--tx-on-dark);
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between;
}
.order-nudge p { color: var(--tx-on-dark-2); margin: 0; max-width: 46ch; font-size: .98rem; }
.order-nudge strong { color: var(--gold); display: block; font-family: var(--display); font-size: 1.2rem; margin-bottom: .3rem; }

.toc {
  background: var(--cream-2); border-radius: var(--r-lg); padding: 1.3rem 1.6rem;
  border: 1px solid var(--sand);
}
.toc h2 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tx-3); margin: 0 0 .8rem; border: 0; padding: 0; }
.toc ol { margin: 0; padding-left: 1.1rem; }
.toc li + li { margin-top: .4rem; }
.toc a { color: var(--tx); text-decoration: none; font-weight: 550; }
.toc a:hover { color: var(--palm); text-decoration: underline; }

/* Events */
.event {
  display: grid; gap: 1.2rem; align-items: center; padding: 1.4rem 1.6rem;
  background: #fff; border: 1px solid var(--sand); border-radius: var(--r-lg); box-shadow: var(--sh-1);
  grid-template-columns: auto 1fr;
}
.event__date {
  width: 74px; text-align: center; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--sand); flex-shrink: 0;
}
.event__date b { display: block; background: var(--indigo); color: var(--gold); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem 0; }
.event__date span { display: block; font-family: var(--display); font-size: 1.6rem; font-weight: 800; padding: .3rem 0 .4rem; }
.event__body h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.event__body p { font-size: .93rem; color: var(--tx-2); }
.event + .event { margin-top: 1rem; }

.breadcrumb { font-size: .84rem; color: var(--tx-on-dark-3); display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--tx-on-dark-2); }

/* ---------- 25. Izu Igbo: the four-day market week ---------- */
.izu {
  display: grid; gap: 1rem; align-items: center;
  padding: 1.25rem 1.4rem; border-radius: var(--r-lg);
  background: var(--indigo-d); color: var(--tx-on-dark); border: 1px solid rgba(233, 166, 59, .28);
  grid-template-columns: auto 1fr;
}
.izu__today {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 118px; padding: .9rem 1rem; border-radius: var(--r-sm);
  background: var(--gold); color: var(--indigo-d); text-align: center;
}
.izu__today small { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; opacity: .8; }
.izu__today b { font-family: var(--display); font-size: 2rem; line-height: 1.05; font-weight: 800; }
.izu__body h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.izu__body p { font-size: .9rem; color: var(--tx-on-dark-2); margin: 0; }
.izu__strip { display: flex; gap: .35rem; margin-top: .75rem; flex-wrap: wrap; }
.izu__day {
  flex: 1 1 60px; min-width: 60px; padding: .45rem .5rem; border-radius: var(--r-ui);
  background: rgba(246, 239, 227, .07); border: 1px solid rgba(246, 239, 227, .12);
  text-align: center; font-size: .72rem; color: var(--tx-on-dark-2);
}
.izu__day b { display: block; font-size: .86rem; color: var(--tx-on-dark); font-weight: 700; }
.izu__day.is-today { background: rgba(233, 166, 59, .22); border-color: var(--gold); color: var(--gold); }
.izu__day.is-today b { color: var(--gold); }
.izu a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 520px) { .izu { grid-template-columns: 1fr; } .izu__today { min-width: 0; } }
.izu--inline { grid-template-columns: 1fr; padding: 1rem 1.1rem; }
.izu--inline .izu__today { flex-direction: row; gap: .6rem; padding: .55rem .9rem; justify-content: flex-start; }
.izu--inline .izu__today b { font-size: 1.25rem; }

/* ---------- 26. People ---------- */
.facts { display: grid; gap: .6rem; margin-top: .5rem; }
.facts > div {
  display: grid; grid-template-columns: 130px 1fr; gap: .8rem; align-items: baseline;
  padding: .55rem 0; border-top: 1px solid rgba(246, 239, 227, .12);
}
.facts dt { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.facts dd { font-size: .95rem; color: var(--tx-on-dark); }
@media (max-width: 480px) { .facts > div { grid-template-columns: 1fr; gap: .15rem; } }
.story__caption { font-size: .82rem; color: var(--tx-on-dark-3); margin-top: .8rem; font-style: italic; }
.people-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.people-card {
  padding: 1.5rem 1.6rem; border-radius: var(--r-lg);
  background: rgba(246, 239, 227, .05); border: 1px solid rgba(246, 239, 227, .12);
}
.people-card h3 { font-size: 1.18rem; margin: .5rem 0 .6rem; }
.people-card p { font-size: .94rem; color: var(--tx-on-dark-2); }
