/* ============================================================
   KUPONO CUISINE v2 — clean, modern, food-forward
   Type: Inter (everything) + Instrument Serif (one expressive moment)
   Palette: warm white, deep sage, warm coral
   ============================================================ */

:root {
  --bg:        #FAFAF7;
  --bg-2:      #F2EFE6;
  --bg-3:      #ECE7D9;
  --ink:       #0F1A12;
  --ink-2:     #4A5550;
  --ink-3:     #8A9089;
  --line:      #E5E0D2;
  --line-2:    #DCD6C5;

  /* Brand green — matched to the Kūpono Cuisine logo */
  --sage:      #5E7E4C;
  --sage-d:    #46613A;
  --sage-l:    #82A06A;

  /* Maui · Lokelani (damask rose) — soft, not loud */
  --maui:      #C46A86;
  --maui-d:    #9E4E68;
  --maui-l:    #E5AABE;
  --maui-bg:   #FBEEF1;

  /* Oʻahu · ʻIlima (golden yellow) — soft gold */
  --oahu:      #D8A24A;
  --oahu-d:    #A87A2C;
  --oahu-l:    #EFCB7B;
  --oahu-bg:   #FAF1DC;

  --coral:     #E8634D;
  --amber:     #E8A23E;
  --olive:     #94995A;

  /* Active island accent (set via body.island-maui / body.island-oahu) */
  --island:    var(--sage);
  --island-d:  var(--sage-d);
  --island-l:  var(--sage-l);
  --island-bg: var(--bg-2);
}
body.island-maui {
  --island:    var(--maui);
  --island-d:  var(--maui-d);
  --island-l:  var(--maui-l);
  --island-bg: var(--maui-bg);
}
body.island-oahu {
  --island:    var(--oahu);
  --island-d:  var(--oahu-d);
  --island-l:  var(--oahu-l);
  --island-bg: var(--oahu-bg);
}
body.island-maui .island-chip__dot { background: var(--maui-l); }
body.island-oahu .island-chip__dot { background: var(--oahu-l); }
body.island-maui .context-bar__island { color: var(--maui-l); }
body.island-oahu .context-bar__island { color: var(--oahu-l); }
body.island-maui .meal__add:hover { background: var(--maui); }
body.island-oahu .meal__add:hover { background: var(--oahu); }
body.island-maui .menu__header h2 em,
body.island-oahu .menu__header h2 em { font-style: italic; }
body.island-maui .step__num { background: var(--maui); }
body.island-oahu .step__num { background: var(--oahu); }
:root {
  --shadow-sm: 0 1px 2px rgba(15, 26, 18, 0.04), 0 2px 8px rgba(15, 26, 18, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 26, 18, 0.06), 0 12px 32px rgba(15, 26, 18, 0.08);
  --shadow-lg: 0 10px 40px rgba(15, 26, 18, 0.12);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --pad: clamp(1.5rem, 4vw, 3.5rem);
  --maxw: 1280px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

button { font-family: inherit; }
a { color: inherit; }

/* State machine */
body.state-choosing .nav,
body.state-choosing .context-bar,
body.state-choosing .menu,
body.state-choosing .how,
body.state-choosing .story,
body.state-choosing .foot { display: none; }
body.state-chosen .chooser { display: none; }

.serif { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.brand__leaf {
  width: 22px; height: 22px;
  color: var(--sage);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }

.nav__right { display: flex; gap: 8px; align-items: center; }

.island-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--island);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease);
  letter-spacing: -0.005em;
}
body.island-maui .island-chip { background: var(--maui); }
body.island-oahu .island-chip { background: var(--oahu); }
.island-chip:hover { filter: brightness(0.9); }
.island-chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}
.island-chip svg { opacity: 0.7; }
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cart-btn:hover { border-color: var(--ink); }

@media (max-width: 800px) {
  .nav__links { display: none; }
}

/* ============================================================
   CHOOSER — full-bleed split
   ============================================================ */
.chooser {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ink);
}
.chooser__OLD {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.75rem) var(--pad) clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(45, 90, 61, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(232, 99, 77, 0.06), transparent 70%),
    var(--bg);
}
.chooser__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.chooser__brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.chooser__brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.chooser__brand-mark svg {
  width: 24px; height: 24px;
  color: var(--sage);
}
.chooser__tag {
  font-size: 13px;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.chooser__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.chooser__head h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.chooser__head p {
  margin-top: 0.5rem;
  font-size: 15px;
}
.chooser__head h1 em {
  font-style: italic;
  color: var(--sage);
  font-feature-settings: "ss01";
}
.chooser__head p {
  margin-top: 1rem;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-2);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* The two big buttons */
.chooser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 800px) {
  .chooser__grid { grid-template-columns: 1fr; }
}

.island-tile {
  --accent: var(--sage);
  --accent-2: var(--sage-l);
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
  font-family: inherit;
  color: inherit;
}
.island-tile[data-island="maui"] {
  --accent: var(--maui);
  --accent-2: var(--maui-l);
}
.island-tile[data-island="oahu"] {
  --accent: var(--oahu);
  --accent-2: var(--oahu-l);
}

.island-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.island-tile:hover .island-tile__cta {
  background: var(--accent);
  color: white;
}
.island-tile:hover .island-tile__cta svg { transform: translateX(4px); }
.island-tile:hover .blob--1 { transform: scale(1.1) translate(8px, -8px); }
.island-tile:hover .blob--2 { transform: scale(1.05) translate(-6px, 4px); }
.island-tile:hover .blob--3 { transform: scale(1.08); }

/* The visual at the top of each tile */
.island-tile__visual {
  position: relative;
  height: 110px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  overflow: hidden;
}
.island-tile__visual--maui {
  background:
    radial-gradient(ellipse 60% 80% at 30% 30%, rgba(255,255,255,0.4), transparent 60%),
    linear-gradient(135deg, var(--maui) 0%, var(--maui-l) 70%, var(--maui-bg) 100%);
}
.island-tile__visual--oahu {
  background:
    radial-gradient(ellipse 60% 80% at 30% 30%, rgba(255,255,255,0.4), transparent 60%),
    linear-gradient(135deg, var(--oahu) 0%, var(--oahu-l) 70%, var(--oahu-bg) 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  transition: transform .8s var(--ease-out);
}
.blob--1 {
  width: 180px; height: 180px;
  background: rgba(255, 255, 255, 0.18);
  top: -40px; right: -30px;
}
.blob--2 {
  width: 120px; height: 120px;
  background: rgba(255, 255, 255, 0.12);
  bottom: -20px; left: -20px;
}
.blob--3 {
  width: 80px; height: 80px;
  background: rgba(255, 255, 255, 0.16);
  bottom: 40px; right: 60px;
}

.island-tile__content {
  padding: 1rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.island-tile__top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.island-tile__center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
}
.island-tile__num {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.island-tile__lede {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink-2);
  max-width: 320px;
  margin: 0 auto;
}
.island-tile__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg-2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot--green { background: #4a8b3a; box-shadow: 0 0 0 3px rgba(74, 139, 58, 0.18); }
.dot--amber { background: var(--amber); box-shadow: 0 0 0 3px rgba(232, 162, 62, 0.18); }

.island-tile h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.island-tile__content > p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.island-tile__rows {
  display: grid;
  gap: 8px;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.island-tile__rows--center {
  text-align: center;
}
.island-tile__rows.island-tile__rows--center > div {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 2px;
  align-items: center;
  padding: 4px 0;
}
.island-tile__rows.island-tile__rows--center span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.island-tile__rows.island-tile__rows--center b {
  font-size: 14px;
}
.island-tile__rows > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  font-size: 13.5px;
  align-items: baseline;
}
.island-tile__rows span {
  color: var(--ink-3);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.island-tile__rows b {
  color: var(--ink);
  font-weight: 500;
}

.island-tile__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: var(--bg-2);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.island-tile__cta svg { transition: transform .3s var(--ease); }

.chooser__foot { display: flex; justify-content: center; margin-top: 1rem; }
.trust {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-2);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.trust > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trust b {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.trust span {
  font-size: 12px;
  color: var(--ink-3);
}
.trust__sep {
  width: 1px;
  align-self: stretch;
  background: var(--line-2);
}
@media (max-width: 600px) {
  .trust { flex-direction: column; padding: 1rem 1.5rem; gap: 0.75rem; }
  .trust__sep { display: none; }
  .trust > div { align-items: center; }
}

/* ============================================================
   CONTEXT BAR — slim reminder strip in the island color
   ============================================================ */
.context-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--island);
  color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.island-maui .context-bar { background: var(--maui); }
body.island-oahu .context-bar { background: var(--oahu); }
.context-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.context-bar__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}
.context-bar__label {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.context-bar__island {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: white;
  letter-spacing: -0.01em;
}
.context-bar__meta {
  flex: 1;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
}
.context-bar__switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease);
  white-space: nowrap;
}
.context-bar__switch:hover { background: rgba(0, 0, 0, 0.32); }
@media (max-width: 800px) {
  .context-bar__meta { display: none; }
}

/* Hide context bar before island chosen */
body.state-choosing .context-bar { display: none; }

/* ============================================================
   ISLAND BANNER (above the menu)
   ============================================================ */
.island-banner {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background: var(--island-bg);
}
body.island-maui .island-banner { background: var(--maui-bg); }
body.island-oahu .island-banner { background: var(--oahu-bg); }
body.state-choosing .island-banner { display: none; }

.island-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.island-banner__blob {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--island) 0%, transparent 70%);
  opacity: 0.12;
  filter: blur(60px);
}
body.island-maui .island-banner__blob { background: radial-gradient(circle, var(--maui) 0%, transparent 70%); }
body.island-oahu .island-banner__blob { background: radial-gradient(circle, var(--oahu) 0%, transparent 70%); }

.island-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.island-banner__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--island);
  background: white;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
body.island-maui .island-banner__kicker { color: var(--maui-d); }
body.island-oahu .island-banner__kicker { color: var(--oahu-d); }

.island-banner__name {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(64px, 11vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
}
.island-banner__name em {
  font-style: italic;
  color: var(--island);
  font-weight: 400;
}
body.island-maui .island-banner__name em { color: var(--maui); }
body.island-oahu .island-banner__name em { color: var(--oahu-d); }

.island-banner__sub {
  margin-top: 1.25rem;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
}
.menu__header {
  margin-bottom: 2.5rem;
  max-width: 700px;
}
.menu__header h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.menu__header p {
  font-size: 16px;
  color: var(--ink-2);
}
.menu__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.75rem;
}
.chip {
  background: white;
  border: 1px solid var(--line-2);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active {
  background: var(--island);
  color: white;
  border-color: var(--island);
}
body.island-maui .chip.is-active { background: var(--maui); border-color: var(--maui); }
body.island-oahu .chip.is-active { background: var(--oahu); border-color: var(--oahu); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.meal {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s var(--ease);
}
.meal:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-2);
}
.meal__img {
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
}
/* Gradient "bowl" composition for placeholder */
.meal__bowl {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.meal__bowl::before {
  content: "";
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bowl-1, #fff);
  box-shadow:
    inset 0 -20px 30px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(15, 26, 18, 0.08);
}
.meal__bowl::after {
  content: "";
  position: absolute;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--bowl-3, #fff) 0%, transparent 35%),
    radial-gradient(circle at 70% 65%, var(--bowl-2, #fff) 0%, transparent 40%),
    var(--bowl-2, #fff);
}

.meal__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: var(--ink);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.meal__tag--best { background: var(--coral); color: white; }
.meal__tag--low  { background: var(--sage); color: white; }
.meal__tag--prem { background: var(--ink); color: white; }

.meal__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.meal__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.meal__macros {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.meal__macros span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.meal__row {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.meal__price {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.meal__price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  margin-left: 2px;
}
.meal__add {
  background: var(--ink);
  color: white;
  border: none;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.meal__add:hover { background: var(--island); }
body.island-maui .meal__add:hover { background: var(--maui); }
body.island-oahu .meal__add:hover { background: var(--oahu); }
.meal--out .meal__add { background: var(--bg-3); color: var(--ink-3); cursor: not-allowed; }
.meal--out .meal__add::before { content: "Sold out"; }
.meal--out .meal__add span { display: none; }
.meal--out .meal__bowl { filter: grayscale(0.5); opacity: 0.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--bg-2);
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
}
.how__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.how__head { margin-bottom: 2.5rem; }
.how__head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .how__steps { grid-template-columns: 1fr; }
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.step__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.step p {
  color: var(--ink-2);
  font-size: 14.5px;
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--ink);
  color: white;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.story__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.story__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.story h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.25rem;
}
.story h2 em {
  font-style: italic;
  color: var(--amber);
}
.story p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--bg-2);
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem;
}
.foot__inner { max-width: var(--maxw); margin: 0 auto; }
.foot__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .foot__top { grid-template-columns: 1fr; }
}
.foot__col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.foot__col a {
  display: block;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 6px;
  transition: color .2s var(--ease);
}
.foot__col a:hover { color: var(--ink); }
.foot__col p {
  color: var(--ink-2);
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.foot__col #footPickup {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  display: grid;
  gap: 6px;
}
.foot__col #footPickup b {
  color: var(--ink);
  font-weight: 600;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.foot__col #footPickup .row { margin-bottom: 8px; }

.brand--foot { margin-bottom: 0.75rem; font-size: 17px; }
.foot__motto {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: white; }
.btn--solid {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}
.btn--solid:hover { background: var(--sage-d); border-color: var(--sage-d); }

.foot__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  color: var(--ink-3);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}
.modal[aria-hidden="false"] { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 18, 0.55);
  backdrop-filter: blur(6px);
  animation: fade .3s var(--ease);
}
.modal__panel {
  position: relative;
  background: white;
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: rise .4s var(--ease-out);
}
.modal__panel h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.modal__panel p {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 1.5rem;
}
.modal__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
}
.cart-drawer[aria-hidden="false"] { pointer-events: auto; }
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 18, 0.4);
  opacity: 0;
  transition: opacity .25s var(--ease);
  backdrop-filter: blur(2px);
}
.cart-drawer[aria-hidden="false"] .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 460px;
  max-width: 100vw;
  background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  box-shadow: -10px 0 40px rgba(15,26,18,0.1);
}
.cart-drawer[aria-hidden="false"] .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__head {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.cart-drawer__kicker {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-drawer__head h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-top: 4px;
  color: var(--ink);
}
.cart-drawer__head h3 span {
  color: var(--island);
  font-style: italic;
}
.cart-drawer__close {
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.cart-drawer__close:hover { background: var(--ink); border-color: var(--ink); color: white; }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-drawer__foot {
  border-top: 1px solid var(--line);
  background: white;
  padding: 1.25rem 1.5rem 1.5rem;
}
.cart-drawer__note {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 10px;
  text-align: center;
}

/* Cart items */
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-3);
}
.cart-empty__icon { font-size: 36px; margin-bottom: 1rem; opacity: 0.5; }
.cart-empty h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.cart-empty p { font-size: 14px; }

.cart-line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line:last-child { border-bottom: none; }
.cart-line__thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-3);
}
.cart-line__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.cart-line__price {
  font-size: 12.5px;
  color: var(--ink-3);
}
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 2px;
}
.qty-btn {
  width: 26px; height: 26px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  color: var(--ink-2);
  transition: all .15s var(--ease);
}
.qty-btn:hover { background: var(--bg-2); color: var(--ink); }
.qty-num {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* Totals */
.cart-totals { display: grid; gap: 6px; }
.cart-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-2);
}
.cart-totals__row--total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.checkout-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease);
  margin-top: 1rem;
}
.checkout-btn:hover:not(:disabled) { background: var(--sage); }
body.island-maui .checkout-btn:hover:not(:disabled) { background: var(--maui-d); }
body.island-oahu .checkout-btn:hover:not(:disabled) { background: var(--oahu-d); }
.checkout-btn:disabled { background: var(--line-2); cursor: not-allowed; color: var(--ink-3); }

/* ============================================================
   CHECKOUT DRAWER
   ============================================================ */
.cart-drawer__panel.cart-drawer__panel--wide,
#checkoutDrawer .cart-drawer__panel { width: 520px; }

.checkout-pickup {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 1.25rem;
  font-size: 13.5px;
  display: grid;
  gap: 4px;
}
.checkout-pickup b {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.checkout-pickup .pickup-island {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--island);
  display: inline-block;
}

.checkout-form {
  display: grid;
  gap: 12px;
}
.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  font-family: inherit;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(15,26,18,0.08);
}
.checkout-form input.is-invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,99,77,0.1);
}

.gift-card-line {
  margin-top: 8px;
}
.gift-card-line summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: 3px;
}
.gift-card-line summary::-webkit-details-marker { display: none; }
.gift-card-line summary::before { content: "🎁"; }
.gift-card-redeem {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.gift-card-redeem input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gift-card-msg {
  display: block;
  font-size: 12.5px;
  margin-top: 6px;
  color: var(--ink-3);
}
.gift-card-msg.is-ok { color: var(--sage); font-weight: 500; }
.gift-card-msg.is-err { color: var(--coral); font-weight: 500; }

.checkout-summary {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.checkout-summary h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.checkout-summary .line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13.5px;
}
.checkout-summary .line span:first-child { color: var(--ink-2); }
.checkout-summary .line span:last-child { color: var(--ink); font-weight: 500; }
.checkout-summary .cart-totals { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }

/* ============================================================
   CONFIRMATION MODAL
   ============================================================ */
.modal__panel--confirm {
  text-align: center;
  padding: 2.25rem 2rem;
}
.confirm-icon {
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  width: 60px;
}
.confirm-kicker {
  font-size: 11px;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
}
.modal__panel--confirm h3 {
  margin-bottom: 0.75rem;
  text-align: center;
}
.modal__panel--confirm h3 span {
  font-style: italic;
  color: var(--island);
}
.modal__panel--confirm p {
  margin-bottom: 0.5rem;
  text-align: center;
}
.confirm-note { font-size: 13.5px !important; color: var(--ink-2) !important; }
.modal__panel--confirm .modal__actions {
  justify-content: center;
  margin-top: 1.5rem;
}
.spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   GIFT CARD
   ============================================================ */
.cart-drawer__panel--gift { width: 520px; }

.gift-preview {
  margin-bottom: 1.5rem;
  display: grid;
  place-items: center;
}
.gift-preview__card {
  width: 100%;
  background: linear-gradient(135deg, var(--maui) 0%, var(--maui-l) 60%, var(--maui-bg) 100%);
  border-radius: 14px;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(196, 106, 134, 0.25);
}
.gift-preview__card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(2px);
}
.gift-preview__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  position: relative; z-index: 1;
}
.gift-preview__amount {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  position: relative; z-index: 1;
}
.gift-preview__sub {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  opacity: 0.95;
  position: relative; z-index: 1;
}

.gift-form .form__sec {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.gift-form .form__sec:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.form__sec-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--ink-3) !important;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.amount-btn {
  background: white;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 8px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
  letter-spacing: -0.01em;
}
.amount-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.amount-btn.is-active {
  background: var(--maui);
  border-color: var(--maui);
  color: white;
}

.gift-fine-print {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-3);
  margin-top: 8px;
}

/* Entrance */
.chooser__brand-row, .chooser__head, .island-tile, .chooser__foot {
  opacity: 0;
  transform: translateY(16px);
  animation: enter .8s var(--ease-out) forwards;
}
.chooser__brand-row { animation-delay: .05s; }
.chooser__head     { animation-delay: .15s; }
.island-tile[data-island="maui"] { animation-delay: .3s; }
.island-tile[data-island="oahu"] { animation-delay: .42s; }
.chooser__foot     { animation-delay: .55s; }

@keyframes enter {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FULL-BLEED SPLIT CHOOSER (overrides earlier rules)
   ============================================================ */
.chooser {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  z-index: 5;
}

/* Hide all previous chooser children we don't use */
.chooser__inner,
.chooser__brand-row,
.chooser__head,
.chooser__grid,
.chooser__foot .trust { display: none; }

/* Brand mark — top left */
.chooser__brand-corner {
  position: absolute;
  top: clamp(20px, 3vw, 36px);
  left: clamp(24px, 4vw, 48px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  pointer-events: none;
}
.chooser__brand-corner svg {
  width: 22px; height: 22px;
  color: rgba(255,255,255,0.4);
}
.chooser__brand-corner span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
}

/* Center prompt — overlays both halves */
.chooser__prompt {
  position: absolute;
  top: clamp(60px, 9vh, 110px);
  left: 0; right: 0;
  z-index: 10;
  text-align: center;
  pointer-events: none;
  padding: 0 1rem;
}
.chooser__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.chooser__prompt h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin: 0;
}
.chooser__prompt h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

/* The two halves */
.chooser-half {
  position: relative;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  color: white;
  transition: filter .4s var(--ease), flex .5s var(--ease);
  padding: clamp(80px, 14vh, 140px) clamp(24px, 4vw, 48px) clamp(40px, 6vh, 60px);
}

/* Maui half — Lokelani rose */
.chooser-half--maui {
  background: linear-gradient(165deg, #4D1E2F 0%, #6B2E42 50%, #803A52 100%);
}
/* Oʻahu half — ʻIlima gold */
.chooser-half--oahu {
  background: linear-gradient(165deg, #4A2C0A 0%, #7A4F18 50%, #99672C 100%);
}

/* Hover effects */
@media (hover: hover) {
  .chooser-half {
    transition: filter .5s var(--ease);
  }
  .chooser:hover .chooser-half { filter: brightness(0.55) saturate(0.7); }
  .chooser:hover .chooser-half:hover { filter: brightness(1.05) saturate(1.1); }
}

/* Topographic line pattern */
.chooser-half__topo {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}
.chooser-half__topo svg { width: 100%; height: 100%; }

/* Top — number/nickname */
.chooser-half__top { display: flex; justify-content: flex-end; }
.chooser-half__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Middle — big island name */
.chooser-half__mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}
.chooser-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(96px, 16vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: white;
  margin: 0;
  user-select: none;
  display: inline-flex;
  align-items: baseline;
}
.chooser-name__a {
  /* "Ma" / "O'a" — solid white */
  color: white;
}
.chooser-name__b {
  /* "ui" / "hu" — italic, lighter accent color */
  font-style: italic;
  font-weight: 400;
  margin-left: 0.02em;
}
.chooser-half--maui .chooser-name__b { color: #F0B5C7; }
.chooser-half--oahu .chooser-name__b { color: #F4C77B; }

.chooser-half__sub {
  margin-top: 1.5rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.85);
  max-width: 420px;
}

/* CTA at the bottom */
.chooser-half__bot {
  display: flex;
  justify-content: center;
}
.big-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 1.5px solid;
}
.big-cta--maui {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.big-cta--oahu {
  background: #E8A23E;
  color: #4A2C0A;
  border-color: #E8A23E;
}
.chooser-half:hover .big-cta--maui {
  background: white;
  color: #6B2E42;
  border-color: white;
}
.chooser-half:hover .big-cta--oahu {
  background: #F4C77B;
  border-color: #F4C77B;
  transform: translateY(-1px);
}
.big-cta svg { transition: transform .3s var(--ease); }
.chooser-half:hover .big-cta svg { transform: translateX(4px); }

/* "Just browsing" — bottom center, overlays the seam */
.chooser__foot {
  position: absolute;
  bottom: clamp(20px, 3vh, 32px);
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.chooser__just {
  pointer-events: auto;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all .25s var(--ease);
}
.chooser__just:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.6);
}

/* MOBILE — stack vertically */
@media (max-width: 720px) {
  .chooser { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .chooser-half { padding: clamp(60px, 8vh, 100px) 24px clamp(24px, 4vh, 36px); }
  .chooser__prompt { top: 24px; }
  .chooser__prompt h1 { font-size: clamp(22px, 6vw, 30px); }
  .chooser__kicker { font-size: 10px; margin-bottom: 8px; }
  .chooser__brand-corner { display: none; }
  .chooser-name { font-size: clamp(72px, 22vw, 120px); }
  .chooser-half__sub { font-size: 14px; margin-top: 1rem; }
  .big-cta { font-size: 11px; padding: 13px 24px; }
  .chooser__foot { bottom: 50%; transform: translateY(-50%); }
}

/* Entrance animation */
.chooser-half {
  opacity: 0;
  transform: translateY(20px);
  animation: choEnter .9s var(--ease-out) forwards;
}
.chooser-half--maui { animation-delay: .15s; }
.chooser-half--oahu { animation-delay: .3s; }
.chooser__prompt { opacity: 0; animation: choEnter 1s var(--ease-out) .05s forwards; }
.chooser__brand-corner { opacity: 0; animation: choEnter 1s var(--ease-out) .8s forwards; }
.chooser__foot { opacity: 0; animation: choEnter 1s var(--ease-out) 1s forwards; }

@keyframes choEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* Mirror the corner labels — Maui's "01 Valley Isle" to far-left, Oʻahu's stays far-right */
.chooser-half--maui .chooser-half__top { justify-content: flex-start; }
.chooser-half--oahu .chooser-half__top { justify-content: flex-end; }

/* Lift CTAs to leave clear room for the "Just browsing" pill at the bottom */
.chooser-half {
  padding-bottom: clamp(96px, 13vh, 140px);
}
.chooser__foot {
  bottom: clamp(28px, 4vh, 44px);
}
.chooser__just {
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  font-size: clamp(10.5px, 1.1vw, 12px);
  padding: clamp(9px, 1.2vh, 12px) clamp(16px, 2.5vw, 26px);
}

/* Mobile spacing — keep "01 Valley Isle" / "02 Gathering Place" clear of the prompt */
@media (max-width: 720px) {
  .chooser__prompt {
    top: 28px;
    padding: 0 1.25rem;
  }
  /* Tight, compact spacing — Valley Isle just below the floating prompt,
     Gathering Place just below the seam, both with similar gap above them. */
  .chooser-half--maui { padding-top: clamp(80px, 13vh, 110px); }
  .chooser-half--oahu { padding-top: clamp(40px, 6vh, 60px); }
  .chooser-half {
    padding-bottom: clamp(72px, 10vh, 100px);
  }
}

/* ============================================================
   MEAL NUTRITION DISPLAY (calories + macros)
   ============================================================ */
.meal__nutrition {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.meal__cal {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: var(--bg-2);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.meal__cal em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.meal__macros {
  display: inline-flex;
  gap: 10px;
  font-size: 11.5px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.meal__macros span { display: inline-flex; gap: 3px; }
.meal__macros b {
  color: var(--ink-2);
  font-weight: 600;
}

@media (max-width: 380px) {
  .meal__macros { font-size: 10.5px; gap: 8px; }
}

/* ============================================================
   BROWSE MODE — both islands shown until user picks
   ============================================================ */

/* In browse mode: hide chooser, show menu/banner, hide context bar */
body.state-browsing .chooser { display: none; }
body.state-browsing .nav,
body.state-browsing .menu,
body.state-browsing .how,
body.state-browsing .story,
body.state-browsing .foot { display: revert; }
body.state-browsing .context-bar { display: none; }

/* Island banner styled for browse mode — pink-to-gold gradient */
body.state-browsing .island-banner {
  background:
    linear-gradient(115deg, var(--maui-bg) 0%, var(--bg) 50%, var(--oahu-bg) 100%);
}
body.state-browsing .island-banner__blob {
  background: radial-gradient(circle, var(--maui) 0%, var(--oahu) 100%);
  opacity: 0.08;
}
body.state-browsing .island-banner__name em {
  background: linear-gradient(90deg, var(--maui-d) 0%, var(--oahu-d) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.state-browsing .island-banner__kicker {
  color: var(--ink-2);
}

/* Browse-mode nav island chip */
body.state-browsing .island-chip {
  background: var(--ink);
}
body.state-browsing #islandPillName::before { content: "Browsing"; }
body.state-browsing #islandPillName { font-size: 0; }
body.state-browsing #islandPillName::before {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* Dual-price action row */
.meal__pick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.meal__pick {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 9px 8px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.meal__pick--maui {
  border-color: rgba(196, 106, 134, 0.3);
}
.meal__pick--oahu {
  border-color: rgba(216, 162, 74, 0.3);
}
.meal__pick--maui:hover:not(:disabled) {
  background: var(--maui);
  border-color: var(--maui);
  color: white;
  transform: translateY(-1px);
}
.meal__pick--oahu:hover:not(:disabled) {
  background: var(--oahu);
  border-color: var(--oahu);
  color: white;
  transform: translateY(-1px);
}
.meal__pick:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background: var(--bg-2);
}
.meal__pick--na { border-style: dashed; }

.meal__pick-island {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.meal__pick:hover:not(:disabled) .meal__pick-island {
  color: rgba(255,255,255,0.85);
}
.meal__pick-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.meal__pick:hover:not(:disabled) .meal__pick-price { color: white; }
.meal__pick-status {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  font-style: italic;
}

/* ============================================================
   BRAND PRESENCE — push sage green through more touchpoints
   ============================================================ */

/* Calorie pill — brand-tinted, not generic cream */
.meal__cal {
  background: rgba(94, 126, 76, 0.12);
  color: var(--sage-d);
  border: 1px solid rgba(94, 126, 76, 0.18);
}
.meal__cal em { color: var(--sage); }

/* Calorie pill stays sage even on island-themed pages — it's a Kupono mark, not an island mark */
body.island-maui .meal__cal,
body.island-oahu .meal__cal { background: rgba(94, 126, 76, 0.12); color: var(--sage-d); }

/* Brand wordmark — "Kūpono" stays bold ink, "Cuisine" gets sage tint for warmth */
.brand span,
.brand--foot span { display: inline; }
.brand span::after { content: ""; }

/* Footer — gift card "Send a gift" should be solid sage (it's a brand action) */
.foot__col .btn.btn--ghost {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}
.foot__col .btn.btn--ghost:hover {
  background: var(--sage-d);
  border-color: var(--sage-d);
}

/* Footer motto — italic sage */
.foot__motto { color: var(--sage-d); }

/* Footer link hover — sage instead of generic ink */
.foot__col a:not(.btn):hover { color: var(--sage); }

/* About / Story section — sage accents on dark background */
.story__kicker { color: var(--sage-l); }
.story h2 em { color: var(--sage-l); }
.story__stat-num { color: white; }
.story__stat-k { color: var(--sage-l); opacity: 0.85; }

/* Chooser brand mark on the dark split — keep the leaf sage so the brand reads */
.chooser__brand-corner svg { color: var(--sage); }

/* "Just browsing" pill — sage hover glow */
.chooser__just:hover {
  border-color: var(--sage-l);
  background: rgba(94, 126, 76, 0.18);
}

/* Order received toast / confirmation — already sage ✓ */
/* Step numbers (How It Works) — already sage ✓ */
/* "Low-Cal" tag — already sage ✓ */
/* Active filter chip on the default state — already sage ✓ */

/* Cart drawer subtle sage on the cart icon */
.cart-btn:hover { color: var(--sage-d); border-color: var(--sage); }

/* Add-to-cart success color — already sage ✓ */

/* Confirm modal — already sage ✓ */

/* Modal "Stay on Maui" / cancel ghost button — keep ink for contrast vs sage confirm */

/* Email link in cart drawer — sage */
.cart-drawer__panel a { color: var(--sage); }

/* ============================================================
   MOBILE NAV (burger + slide-in drawer)
   ============================================================ */

/* Burger button — hidden on desktop, visible on mobile */
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.nav-burger:hover { border-color: var(--ink); }
.nav-burger svg { width: 20px; height: 20px; }

@media (max-width: 800px) {
  .nav-burger { display: inline-flex; }
}

/* The drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.nav-drawer[aria-hidden="false"] { pointer-events: auto; }

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 18, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav-drawer[aria-hidden="false"] .nav-drawer__backdrop { opacity: 1; }

.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg);
  border-left: 1px solid var(--line);
  box-shadow: -10px 0 40px rgba(15, 26, 18, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.nav-drawer[aria-hidden="false"] .nav-drawer__panel { transform: translateX(0); }

.nav-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.nav-drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-drawer__brand svg { color: var(--sage); }
.nav-drawer__close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--ink-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .15s var(--ease);
}
.nav-drawer__close:hover { background: var(--ink); color: white; border-color: var(--ink); }

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  padding: 12px 12px;
  gap: 2px;
}
.nav-drawer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  transition: all .15s var(--ease);
}
.nav-drawer__links a:hover { background: var(--bg-2); }
.nav-drawer__links a::after {
  content: "→";
  font-family: inherit;
  color: var(--ink-3);
  font-size: 18px;
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.nav-drawer__links a:hover::after { transform: translateX(3px); color: var(--sage); }

.nav-drawer__island {
  margin: 12px 20px;
  padding: 16px;
  background: var(--bg-2);
  border-radius: 14px;
}
.nav-drawer__island-empty {
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
  padding: 4px 0;
}
.nav-drawer__island-on {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-drawer__island-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.nav-drawer__island-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--island);
  line-height: 1;
}
body.island-maui .nav-drawer__island-name { color: var(--maui-d); }
body.island-oahu .nav-drawer__island-name { color: var(--oahu-d); }
.nav-drawer__switch {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease);
  width: 100%;
}
.nav-drawer__switch:hover { background: var(--sage-d); }

.nav-drawer__foot {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.nav-drawer__foot p {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--sage-d);
}
.nav-drawer__copy {
  font-family: var(--sans);
  font-style: normal !important;
  font-size: 11px !important;
  color: var(--ink-3) !important;
  margin-top: 8px;
}

/* ============================================================
   MOBILE NAV — declutter so the brand has room
   ============================================================ */
@media (max-width: 800px) {
  .nav__inner {
    padding: 12px 16px;
    gap: 0.75rem;
    grid-template-columns: 1fr auto;  /* brand | right cluster */
  }
  .nav__links { display: none; }
  .brand { white-space: nowrap; }
  .brand span { white-space: nowrap; }

  /* Move the island chip into the drawer — it's redundant in the nav */
  .island-chip { display: none; }

  /* Tighter right-side spacing */
  .nav__right { gap: 6px; }
  .cart-btn { padding: 7px 12px; }
}

@media (max-width: 380px) {
  /* Very small phones — shrink the brand a hair */
  .brand { font-size: 15px; gap: 8px; }
  .brand__leaf { width: 20px; height: 20px; }
}

/* Keep day/time pairs from breaking mid-segment ("Sun." + linebreak + "8a-1p") */
.nowrap { white-space: nowrap; }
