/* ============================================================
   TONY'S HIBACHI — Japanese & Sushi Grill
   Premium design system — black, ember red, gold accent
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg-0: #0a0908;
  --bg-1: #111110;
  --bg-2: #181715;
  --bg-3: #232120;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);

  --ink: #f5f1ea;
  --ink-dim: #b8b1a6;
  --ink-mute: #7a7368;

  --red: #d22b1f;        /* the apostrophe red */
  --red-soft: #ef3b2d;
  --ember: #ff6a3d;
  --gold: #c9a96a;
  --gold-soft: #e3c98e;

  --shadow-deep: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);

  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-thin: "Cormorant", "Playfair Display", Georgia, serif;
  --font-jp: "Noto Serif JP", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-0);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}

h1.display { font-size: clamp(48px, 8vw, 124px); }
h2.display { font-size: clamp(40px, 6vw, 84px); margin: 0; }
h3.display { font-size: clamp(28px, 3.4vw, 44px); margin: 0; }

.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 56ch;
}

.kanji {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--gold);
  opacity: 0.55;
}

.red-dot { color: var(--red); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
}
.section--tight { padding-block: clamp(60px, 8vw, 100px); }

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 720px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

/* Info cards trio (Pickup / Payment / Need Help on order page).
   3-up on desktop, stacks to a single column on mobile. */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .info-cards { grid-template-columns: 1fr; }
}

/* Search highlight inside menu items (data-driven menu page) */
.menu-item mark {
  background: rgba(201, 169, 106, 0.22);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
  box-shadow: inset 0 -1px 0 rgba(201, 169, 106, 0.5);
}
:root[data-theme="light"] .menu-item mark {
  background: rgba(184, 36, 26, 0.10);
  box-shadow: inset 0 -1px 0 rgba(184, 36, 26, 0.35);
}

/* Live availability pill on data-driven menu category headings */
.cat-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 106, 0.4);
  border-radius: 999px;
  align-self: start;
  font-family: var(--font-body);
  font-weight: 500;
}
.cat-availability::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 106, 0.18);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--bg-0);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out),
              color .35s var(--ease-out), border-color .35s var(--ease-out),
              box-shadow .35s var(--ease-out);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(255, 255, 255, 0.25);
}
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform .35s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  --btn-bd: var(--ink);
  --btn-bg: rgba(255, 255, 255, 0.06);
}

.btn--ember {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  --btn-bd: var(--red);
  box-shadow: 0 10px 30px -10px rgba(210, 43, 31, 0.5);
}
.btn--ember:hover {
  --btn-bg: var(--red-soft);
  --btn-bd: var(--red-soft);
}

.btn--gold {
  --btn-bg: transparent;
  --btn-fg: var(--gold);
  --btn-bd: var(--gold);
}
.btn--gold:hover {
  --btn-bg: var(--gold);
  --btn-fg: var(--bg-0);
}

/* ---------- Split CTA (Call | Order) ----------
   Single pill split into two halves so the header carries both primary
   actions without taking extra space. */
.btn-split {
  display: inline-flex;
  align-items: stretch;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(210, 43, 31, 0.5);
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out),
              background .35s var(--ease-out), border-color .35s var(--ease-out);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.btn-split:hover {
  background: var(--red-soft);
  border-color: var(--red-soft);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -14px rgba(210, 43, 31, 0.6);
}
.btn-split > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s var(--ease-out);
}
.btn-split > a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-split > a:hover {
  background: rgba(0, 0, 0, 0.18);
}
.btn-split svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-split .arrow { transition: transform .3s var(--ease-out); }
.btn-split > a:hover .arrow { transform: translateX(3px); }

/* On phones we hide the whole .header-cta CTAs (split + standalone) and
   surface them inside the mobile drawer instead. */

/* ---------- Top bar (announcement) ---------- */
.topbar {
  background: var(--bg-1);
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  min-height: 38px;
}
.topbar a { color: var(--ink); transition: color .25s; }
.topbar a:hover { color: var(--red-soft); }
.topbar__contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__msg { display: flex; align-items: center; gap: 10px; }
.topbar__msg .dot {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
@media (max-width: 720px) {
  .topbar__msg { display: none; }
  .topbar__inner { justify-content: center; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-out), border-color .35s, padding .35s;
}
.site-header.is-scrolled {
  background: rgba(10, 9, 8, 0.92);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  transition: padding .35s var(--ease-out);
}
.site-header.is-scrolled .site-header__inner { padding-block: 12px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand img {
  height: 44px;
  width: auto;
  transition: height .35s var(--ease-out);
}
.site-header.is-scrolled .brand img { height: 36px; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav a:hover, .nav a.is-active {
  color: var(--ink);
}
.nav a:hover::after, .nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.menu-toggle .bars {
  width: 18px; height: 10px;
  position: relative;
}
.menu-toggle .bars span {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .25s;
}
.menu-toggle .bars span:first-child { top: 0; }
.menu-toggle .bars span:last-child { bottom: 0; }
body.menu-open .menu-toggle .bars span:first-child { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .menu-toggle .bars span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav, .header-cta .btn, .header-cta .btn-split { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--bg-0);
  padding: 96px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease-in-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.menu-open .mobile-drawer { transform: translateY(0); }
.mobile-drawer .nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer .nav-mobile a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 38px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .nav-mobile a .num {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-right: 18px;
  vertical-align: middle;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-0);
}
.hero__bg {
  position: absolute;
  inset: -5%;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.85) 60%, rgba(10,9,8,0.98) 100%),
    url("https://images.unsplash.com/photo-1665484575539-7c6147b348fa?auto=format&fit=crop&w=2400&q=85");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  animation: heroZoom 22s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__embers {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 80% 90%, rgba(255, 106, 61, 0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 20%, rgba(210, 43, 31, 0.12), transparent 60%);
  mix-blend-mode: screen;
}

.hero__content {
  width: 100%;
  padding-block: 120px 90px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
}

.hero__kanji {
  position: absolute;
  right: 0;
  top: -10px;
  font-family: var(--font-jp);
  font-size: clamp(110px, 18vw, 240px);
  line-height: 0.9;
  color: rgba(210, 43, 31, 0.10);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: -1;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero h1 .accent { color: var(--red); }
.hero h1 small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.hero__lead { max-width: 460px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero__scroll .line {
  width: 60px; height: 1px; background: var(--ink-mute); position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  animation: scrollLine 2.6s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 64px;
  padding: 22px 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--ink);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__track .dot { color: var(--red); }
.marquee__track .jp { font-family: var(--font-jp); font-style: normal; color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Story split ---------- */
.story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.story__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.story__media:hover img { transform: scale(1.05); }
.story__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  pointer-events: none;
}
.story__badge {
  position: absolute;
  bottom: 28px; left: 28px;
  padding: 14px 18px;
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 14px;
  z-index: 1;
}
.story__badge .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  color: var(--red);
  line-height: 1;
}
.story__badge .label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
}

.story__copy { display: grid; gap: 22px; }
.story__copy p { color: var(--ink-dim); margin: 0; font-size: 17px; }
.story__sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
  margin-top: 8px;
}
.story__sig small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; }
}

/* ---------- Experience cards ---------- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exp-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-2);
  cursor: pointer;
}
.exp-card__media {
  position: absolute; inset: 0; z-index: -1;
  transition: transform 1.2s var(--ease-out);
}
.exp-card:hover .exp-card__media { transform: scale(1.06); }
.exp-card__media img { width: 100%; height: 100%; object-fit: cover; }
.exp-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.05) 0%, rgba(10,9,8,0.4) 50%, rgba(10,9,8,0.95) 100%);
  z-index: 0;
}
.exp-card__body {
  position: relative; z-index: 1;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exp-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.exp-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 38px);
  color: var(--ink);
  line-height: 1;
  margin: 0 0 10px;
}
.exp-card__desc {
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 32ch;
  margin: 0 0 18px;
}
.exp-card__more {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
}
.exp-card__more .arrow { transition: transform .4s var(--ease-out); width: 18px; }
.exp-card:hover .exp-card__more .arrow { transform: translateX(4px); }
@media (max-width: 880px) {
  .experience-grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16/11; }
}

/* ---------- Menu showcase ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px clamp(40px, 6vw, 96px);
}
.menu-col h3 {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  margin: 0 0 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.menu-col h3 .ja {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 20px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
.menu-item__price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item__desc {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-mute);
  font-size: 14px;
  max-width: 60ch;
}
.menu-item__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding-left: 12px;
  position: relative;
  vertical-align: middle;
}
.menu-item__tag::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (max-width: 760px) {
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Reserve CTA strip ---------- */
.reserve-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55), rgba(10,9,8,0.85)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 860px) { .reserve-strip { background-attachment: scroll; } }
.reserve-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(80px, 10vw, 140px);
}
.reserve-strip__cta { display: grid; gap: 14px; justify-items: end; }
.reserve-strip__cta .phone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(38px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
}
.reserve-strip__cta small {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 860px) {
  .reserve-strip__inner { grid-template-columns: 1fr; }
  .reserve-strip__cta { justify-items: start; }
}

/* ---------- Visit / Hours ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.visit-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
}
.visit-card h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
}
.hours { display: grid; gap: 0; }
.hours__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.hours__row:last-child { border-bottom: 0; }
.hours__row .day { color: var(--ink); letter-spacing: 0.06em; }
.hours__row .time { color: var(--ink-dim); font-family: var(--font-mono); font-size: 15px; }
.hours__row.is-today .day { color: var(--red); }
.hours__row.is-today .time { color: var(--gold); }
.hours__note {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.visit-info { display: grid; gap: 22px; }
.visit-info__line {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.visit-info__line:last-child { border-bottom: 0; padding-bottom: 0; }
.visit-info__line .ico {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--red);
}
.visit-info__line .label {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.visit-info__line .val {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}
.visit-info__line a.val:hover { color: var(--red); }

@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Order online callout (the checkout provider prep) ---------- */
.order-callout {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(210, 43, 31, 0.18), transparent 60%),
    linear-gradient(160deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.order-callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1579871494447-9811cf80d66c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: right center;
  opacity: 0.10;
  z-index: -1;
  mix-blend-mode: lighten;
}
.order-callout h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--ink);
}
.order-callout p { color: var(--ink-dim); margin: 0 0 24px; max-width: 50ch; }
.order-callout__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.order-callout__badge .pulse {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(201, 169, 106, 0.8);
  animation: glow 1.8s ease-out infinite;
}
@keyframes glow {
  0% { box-shadow: 0 0 0 0 rgba(201, 169, 106, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(201, 169, 106, 0); }
}
.order-callout__visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.order-callout__visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .order-callout { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery .g1 { grid-column: span 2; grid-row: span 2; }
.gallery .g2 { grid-column: span 2; }
.gallery .g3 { grid-column: span 2; grid-row: span 2; }
.gallery .g4 { grid-column: span 2; }
.gallery .g5 { grid-column: span 3; grid-row: span 2; }
.gallery .g6 { grid-column: span 3; }
.gallery .g7 { grid-column: span 3; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery .g1, .gallery .g2, .gallery .g3, .gallery .g4, .gallery .g5, .gallery .g6, .gallery .g7 {
    grid-column: span 1; grid-row: span 1;
  }
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.review__stars { color: var(--gold); font-size: 14px; letter-spacing: 0.2em; }
.review__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.review__quote::before {
  content: "“"; color: var(--red); font-size: 56px; line-height: 0; vertical-align: -22px; margin-right: 6px;
}
.review__author {
  display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line);
}
.review__author .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-3); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 18px;
}
.review__author .name { font-size: 16px; color: var(--ink); display: block; }
.review__author .meta { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: #060504;
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h4 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-grid ul { display: grid; gap: 12px; }
.footer-grid a { color: var(--ink-dim); transition: color .25s; font-size: 16px; }
.footer-grid a:hover { color: var(--ink); }
.footer-brand img { height: 56px; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-mute); margin: 0; font-size: 16px; max-width: 36ch; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink-dim); transition: all .3s;
}
.socials a:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.footer-bottom {
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { margin: 0; font-size: 14px; color: var(--ink-mute); letter-spacing: 0.1em; }
.footer-bottom .by { color: var(--ink-mute); }
.footer-bottom .by a { color: var(--gold); }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(120px, 18vw, 200px) 0 clamp(60px, 9vw, 110px);
  background:
    linear-gradient(180deg, rgba(10,9,8,0.65) 0%, rgba(10,9,8,0.95) 100%),
    var(--bg-1);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero[data-img="menu"] {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.65) 0%, rgba(10,9,8,0.95) 100%),
    url("https://images.unsplash.com/photo-1582450871972-ab5ca641643d?auto=format&fit=crop&w=2400&q=85");
  background-position: center 30%;
}
.page-hero[data-img="reserve"] {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.95) 100%),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2400&q=85");
}
.page-hero[data-img="experience"] {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.95) 100%),
    url("https://images.unsplash.com/photo-1617196034796-73dfa7b1fd56?auto=format&fit=crop&w=2400&q=85");
}
.page-hero[data-img="visit"] {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.95) 100%),
    url("https://images.unsplash.com/photo-1526318896980-cf78c088247c?auto=format&fit=crop&w=2400&q=85");
}
.page-hero[data-img="order"] {
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.95) 100%),
    url("https://images.unsplash.com/photo-1553621042-f6e147245754?auto=format&fit=crop&w=2400&q=85");
  background-position: center 35%;
}
.page-hero__crumbs {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.page-hero__crumbs a { color: var(--ink-dim); }
.page-hero__crumbs a:hover { color: var(--ink); }
.page-hero__crumbs .sep { color: var(--ink-mute); }
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  color: var(--ink);
}
.page-hero__lead { margin-top: 22px; max-width: 640px; }

.page-hero__kanji {
  position: absolute;
  right: var(--gutter); bottom: -50px;
  font-family: var(--font-jp);
  font-size: clamp(140px, 22vw, 320px);
  color: rgba(210, 43, 31, 0.06);
  line-height: 0.85;
  pointer-events: none; user-select: none;
  z-index: -1;
}

/* ---------- Reservation form ---------- */
.reserve-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
}
.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.reserve-form .full { grid-column: 1 / -1; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 17px;
  transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-3);
}
.field textarea { min-height: 100px; resize: vertical; }
.field .helper {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  line-height: 1.45;
}
.field select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.field option:disabled { color: var(--ink-mute); }
@media (max-width: 640px) { .reserve-form { grid-template-columns: 1fr; } }

/* ---------- Live availability pill (reservations form header) ---------- */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 106, 0.4);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
}
.live-pill .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0); }
}

/* ---------- Reservation status / confirmation card ---------- */
#reserve-status:empty { display: none; }
.reserve-status {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.reserve-status.warn {
  background: rgba(196, 69, 31, 0.10);
  border: 1px solid rgba(196, 69, 31, 0.4);
  color: var(--ember);
}
.reserve-status.closed {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink-dim);
}
.reserve-status.ok {
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 28px;
}

.reserve-success {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}
.reserve-success__check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.16);
  color: #4ade80;
  margin: 0 auto 18px;
}
.reserve-success__check svg { width: 28px; height: 28px; }
.reserve-success h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.reserve-success__num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.reserve-success__num strong { color: var(--ink); font-weight: 500; }
.reserve-success__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px 24px;
  margin: 0 auto 24px;
  text-align: left;
  max-width: 460px;
}
.reserve-success__details > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.reserve-success__details dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.reserve-success__details dd {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
}
.reserve-success__msg {
  color: var(--ink-dim);
  margin: 0 auto 24px;
  max-width: 48ch;
  font-size: 15px;
}
.reserve-success__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.reserve-card-msg {
  text-align: center;
  padding: 12px;
}
.reserve-card-msg h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 12px;
}
.reserve-card-msg a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ---------- Map ---------- */
.map-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7) contrast(0.95);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Misc ---------- */
::selection { background: var(--red); color: #fff; }

.divider-orn {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold); margin: 40px auto;
}
.divider-orn .l { width: 60px; height: 1px; background: var(--line-strong); }
.divider-orn .glyph { font-size: 18px; }

/* ============================================================
   ORDER PAGE — live the checkout provider integration
   ============================================================ */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* Sticky search bar (sits below header) */
.search-row {
  position: sticky;
  top: 80px;
  z-index: 35;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.search-row__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-row__field {
  position: relative;
  flex: 1;
  min-width: 0;
}
.search-row .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute);
  pointer-events: none;
}
.search-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 56px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: border-color .25s, background .25s;
}
.search-input::placeholder {
  color: var(--ink-mute);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
}
.search-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-3);
}
/* hide native browser clear/cancel button on type="search" */
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration,
.search-input::-webkit-search-results-button,
.search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.search-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1;
  transition: all .2s;
}
.search-clear:hover { background: var(--red); color: #fff; }
.search-row.has-query .search-clear { display: grid; }
.search-meta {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--gutter) 14px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: none;
}
.search-row.has-query .search-meta { display: block; }

/* Live business-time chip — sits beside the search input */
.biz-clock {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink);
  white-space: nowrap;
  transition: border-color .25s, background .25s;
}
.biz-clock:empty { display: none; }
.biz-clock .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink-mute);
  flex-shrink: 0;
}
.biz-clock.is-open .dot {
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: glow-green 1.8s ease-out infinite;
}
.biz-clock.is-closed .dot {
  background: var(--red);
}
.biz-clock .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.biz-clock .time {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.biz-clock .tz {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-left: -4px;
}
@keyframes glow-green {
  0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0); }
}
@media (max-width: 760px) {
  .search-row__inner { flex-wrap: wrap; gap: 10px; padding-block: 12px; }
  .search-row__field { flex-basis: 100%; }
  .biz-clock {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    gap: 10px;
  }
  .biz-clock .label { font-size: 10px; letter-spacing: 0.18em; }
  .biz-clock .time { font-size: 14px; }
  .biz-clock .tz  { font-size: 10px; }
}

/* Sticky horizontal category nav (under search bar) */
.cat-nav {
  position: sticky;
  top: 162px; /* below header (~80) + search row (~82) */
  z-index: 30;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.cat-nav__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-padding-inline: var(--gutter);
}
.cat-nav__inner::-webkit-scrollbar { display: none; }
@media (max-width: 760px) {
  /* search row wraps to ~140px on mobile, so push cat-nav down */
  .cat-nav { top: 220px; }
}
.cat-nav a {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}
.cat-nav a:hover { color: var(--ink); border-color: var(--line-strong); }
.cat-nav a.is-active {
  color: var(--bg-0);
  background: var(--ink);
  border-color: var(--ink);
}

/* Category block */
.cat-block + .cat-block { margin-top: clamp(48px, 6vw, 80px); }
.cat-block__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.cat-block__title {
  display: grid;
  gap: 6px;
}
.cat-block__title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--ink);
}
.cat-block__title p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 14px;
}
.cat-block__hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-dim);
  white-space: nowrap;
}
.cat-block__hours.is-open { border-color: var(--gold); color: var(--gold); }
.cat-block__hours.is-pre { border-color: var(--red); color: var(--red); }
.cat-block__hours .pip {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

.menu-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.menu-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  padding: 22px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .3s var(--ease-out), background .3s, transform .3s;
}
.menu-card.has-img {
  grid-template-columns: 96px 1fr auto;
}
.menu-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-2);
}
.menu-card.is-out { opacity: 0.45; }
.menu-card__img {
  grid-row: span 3;
  width: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-3);
}
.menu-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.menu-card__price {
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--gold);
  white-space: nowrap;
  align-self: start;
  padding-top: 6px;
}
.menu-card__desc {
  grid-column: 2 / -1;
  margin: 0;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.55;
}
.menu-card.has-img .menu-card__desc { grid-column: 2 / -1; }
.menu-card:not(.has-img) .menu-card__desc { grid-column: 1 / -1; }
.menu-card__actions {
  grid-column: 2 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.menu-card.has-img .menu-card__actions { grid-column: 2 / -1; }
.menu-card:not(.has-img) .menu-card__actions { grid-column: 1 / -1; }

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all .25s var(--ease-out);
}
.add-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(210, 43, 31, 0.5);
}
.add-btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: transparent;
  color: var(--ink-mute);
  border-color: var(--line);
}
.add-btn .qty {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--gold);
  margin-left: -4px;
}

/* Cart panel (desktop sticky / mobile drawer) */
.cart-panel {
  position: sticky;
  /* sit below: header (~80) + search row (~82) + cat-nav (~65) = ~240 */
  top: 244px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 264px);
}
.cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-panel__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
}
.cart-panel__count {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.cart-panel__body {
  padding: 16px 24px;
  flex: 1;
  overflow-y: auto;
  min-height: 120px;
}
.cart-empty {
  padding: 32px 8px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 14px;
}
.cart-empty .glyph {
  font-family: var(--font-jp);
  display: block;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 14px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.cart-line:last-child { border-bottom: 0; }
.cart-line__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.25;
}
.cart-line__price {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--gold);
  white-space: nowrap;
}
.cart-line__controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .2s;
  font-size: 18px;
  font-weight: 300;
}
.qty-stepper button:hover { background: var(--bg-3); }
.qty-stepper .v {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ink);
}
.cart-line__remove {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color .2s;
}
.cart-line__remove:hover { color: var(--red); }
.cart-line__notes {
  grid-column: 1 / -1;
  margin-top: 4px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
  width: 100%;
  resize: vertical;
  min-height: 42px;
}
.cart-line__notes:focus { outline: none; border-color: var(--gold); }

.cart-panel__foot {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--line);
}
.cart-totals {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.cart-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ink-dim);
}
.cart-totals .row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.cart-totals .row.total .v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.cart-panel__foot .btn { width: 100%; }

/* Mobile cart bar + drawer */
.cart-bar {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 50;
  padding: 16px 22px;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(210, 43, 31, 0.6);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .25s var(--ease-out);
}
.cart-bar .v { font-family: var(--font-mono); letter-spacing: 0; }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: end;
  justify-content: stretch;
}
.cart-drawer.is-open { display: flex; }
.cart-drawer__panel {
  width: 100%;
  max-height: 88vh;
  background: var(--bg-1);
  border-top: 1px solid var(--line-strong);
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: column;
  animation: drawerUp .35s var(--ease-out);
}
@keyframes drawerUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 980px) {
  .order-layout { grid-template-columns: 1fr; }
  .cart-panel { display: none; }
  body.has-cart .cart-bar { display: inline-flex; }
}

/* Checkout form (inline below cart on desktop, in drawer on mobile) */
.checkout-form {
  display: grid;
  gap: 14px;
}
.checkout-form .field input,
.checkout-form .field textarea {
  width: 100%;
}
.checkout-form .row2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.checkout-form .helper {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: -4px;
}

/* Submit confirmation */
.confirm-card {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.confirm-card .num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.confirm-card .order-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--ink);
  margin: 4px 0 6px;
  word-break: break-all;
}
.confirm-card .msg {
  color: var(--ink-dim);
  margin: 0;
  max-width: 40ch;
}
.confirm-card .total {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.confirm-card .actions {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}

/* Loading + error states */
.menu-loading {
  padding: 80px 0;
  text-align: center;
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.menu-loading .spin {
  display: inline-block;
  width: 24px; height: 24px;
  border: 2px solid var(--line-strong);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.menu-error {
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--red);
  border-radius: var(--radius-md);
  background: rgba(210, 43, 31, 0.08);
  color: var(--ink);
}
.menu-error .glyph { color: var(--red); font-size: 24px; margin-bottom: 8px; }

/* Field error */
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--red);
}
.field-error {
  font-size: 14px; color: var(--red); margin-top: 6px;
}

/* Payment method picker */
.pay-method {
  display: grid;
  gap: 12px;
}
.pay-method__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.pay-method__head label {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.pay-method__head .secure {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); display: inline-flex; align-items: center; gap: 6px;
}
.pay-method__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pay-option {
  position: relative;
  padding: 18px 18px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .25s var(--ease-out);
  display: grid;
  gap: 4px;
}
.pay-option:hover { border-color: var(--line-strong); background: var(--bg-3); }
.pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.pay-option__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
.pay-option__title .check {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  flex-shrink: 0;
  transition: all .2s;
}
.pay-option__title .check::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); transform: scale(0); transition: transform .2s var(--ease-out);
}
.pay-option__desc {
  margin: 0; font-size: 15px; color: var(--ink-mute); line-height: 1.5;
  padding-left: 30px;
}
.pay-option input:checked + .pay-option__title .check {
  border-color: var(--red);
}
.pay-option input:checked + .pay-option__title .check::after {
  transform: scale(1);
}
.pay-option:has(input:checked) {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(210,43,31,0.06), rgba(210,43,31,0.02));
}
@media (max-width: 640px) {
  .pay-method__options { grid-template-columns: 1fr; }
}

/* Trust panel under the picker — appears when "Pay Now" is selected */
.pay-trust {
  margin-top: 4px;
  padding: 16px 18px;
  background: linear-gradient(160deg, rgba(99, 91, 255, 0.08), rgba(34, 197, 94, 0.04));
  border: 1px solid rgba(99, 91, 255, 0.28);
  border-radius: var(--radius-md);
  display: grid;
  gap: 10px;
}
.pay-trust__head {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.pay-trust__head svg { flex-shrink: 0; margin-top: 3px; }

/* In-page checkout modal (iframes the the checkout provider deep link) */
body.checkout-modal-open { overflow: hidden; }
.checkout-modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: clamp(8px, 2vw, 32px);
  animation: fadein .2s var(--ease-out);
}
.checkout-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 4, 3, 0.78);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.checkout-modal__panel {
  position: relative;
  width: min(640px, 100%);
  height: min(820px, 92vh);
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
}
.checkout-modal__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.checkout-modal__title {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.checkout-modal__title svg { color: #22c55e; }
.checkout-modal__title .stripe-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: rgba(99, 91, 255, 0.16);
  color: #a5a0ff;
  border-radius: 999px;
  margin-left: 4px;
}
.checkout-modal__close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--bg-3);
  color: var(--ink-dim);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  transition: all .2s;
}
.checkout-modal__close:hover { background: var(--red); color: #fff; }
.checkout-modal__trust {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(160deg, rgba(99, 91, 255, 0.08), transparent);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.checkout-modal__trust svg { flex-shrink: 0; margin-top: 3px; }
.checkout-modal__body {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.checkout-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  display: block;
}
.checkout-modal__loading {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  gap: 14px;
  background: var(--bg-1);
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  transition: opacity .25s;
  z-index: 1;
}
.checkout-modal__loading .spin {
  width: 28px; height: 28px;
  border: 2px solid rgba(255,255,255,0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
.checkout-modal__foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.checkout-modal__foot strong { font-weight: 500; }
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 640px) {
  .checkout-modal { padding: 0; }
  .checkout-modal__panel {
    width: 100%; height: 100%;
    max-height: none;
    border-radius: 0;
    border: 0;
  }
}

/* ============================================================
   LIGHT THEME — opt-in for accessibility / older guests
   Activated by data-theme="light" on <html>. The dark theme
   stays the default for everyone else.
   ============================================================ */
:root[data-theme="light"] {
  --bg-0: #faf8f3;
  --bg-1: #f3efe6;
  --bg-2: #ebe5d6;
  --bg-3: #ddd4c0;
  --line: rgba(20, 18, 15, 0.10);
  --line-strong: rgba(20, 18, 15, 0.24);

  --ink: #1a1814;
  --ink-dim: #4a463e;
  --ink-mute: #6f685c;

  /* Brand reds keep their identity, but we use slightly deeper variants
     for AA contrast on cream backgrounds. */
  --red: #b8241a;
  --red-soft: #d22b1f;
  --ember: #c4451f;
  --gold: #8a6e2e;
  --gold-soft: #a8853a;

  --shadow-deep: 0 30px 80px -20px rgba(80, 60, 30, 0.18);
  --shadow-soft: 0 10px 40px -10px rgba(80, 60, 30, 0.12);

  color-scheme: light;
}

/* The browser-chrome theme color follows the active theme. */
:root[data-theme="light"] body { background: var(--bg-0); color: var(--ink); }

/* Sticky header / topbar / mobile drawer used hard-coded near-black rgbas;
   replace them with cream translucents so the bar reads in light mode. */
:root[data-theme="light"] .topbar { background: rgba(245, 240, 230, 0.96); border-bottom: 1px solid var(--line); }
:root[data-theme="light"] .site-header { background: rgba(250, 248, 243, 0.78); }
:root[data-theme="light"] .site-header.is-scrolled { background: rgba(250, 248, 243, 0.94); border-bottom-color: var(--line); }
:root[data-theme="light"] .mobile-drawer { background: rgba(250, 248, 243, 0.97); }

/* "Photo + dark gradient + light text" components stay dark in light mode
   too — the photograph dictates the contrast, so we pin all overlaid
   text to the dark-theme cream palette regardless of the page theme.
   Components covered: .hero, .page-hero, .exp-card, .reserve-strip,
   and .story__badge (translucent dark badge over the story photo). */
:root[data-theme="light"] .hero,
:root[data-theme="light"] .hero h1,
:root[data-theme="light"] .hero h1 small,
:root[data-theme="light"] .hero__row,
:root[data-theme="light"] .page-hero,
:root[data-theme="light"] .page-hero h1,
:root[data-theme="light"] .exp-card,
:root[data-theme="light"] .exp-card h3,
:root[data-theme="light"] .exp-card__title,
:root[data-theme="light"] .exp-card__more,
:root[data-theme="light"] .exp-card .eyebrow,
:root[data-theme="light"] .reserve-strip,
:root[data-theme="light"] .reserve-strip h2,
:root[data-theme="light"] .story__badge,
:root[data-theme="light"] .story__badge .num { color: #f5f1ea; }
:root[data-theme="light"] .hero p,
:root[data-theme="light"] .page-hero p,
:root[data-theme="light"] .page-hero__lead,
:root[data-theme="light"] .exp-card p,
:root[data-theme="light"] .exp-card__body p,
:root[data-theme="light"] .exp-card__desc,
:root[data-theme="light"] .reserve-strip p,
:root[data-theme="light"] .reserve-strip__copy p,
:root[data-theme="light"] .story__badge .label { color: #b8b1a6; }
:root[data-theme="light"] .page-hero__crumbs a { color: #b8b1a6; }
:root[data-theme="light"] .page-hero__crumbs a:hover { color: #f5f1ea; }
:root[data-theme="light"] .page-hero__crumbs .sep { color: #7a7368; }
/* Eyebrows, monos, and gold accents over the dark photo overlay use
   the brighter dark-theme gold so they pop, not the deeper light-theme
   gold which would disappear into the photo. */
:root[data-theme="light"] .hero .eyebrow,
:root[data-theme="light"] .page-hero .eyebrow,
:root[data-theme="light"] .exp-card .eyebrow,
:root[data-theme="light"] .exp-card__num,
:root[data-theme="light"] .reserve-strip .eyebrow,
:root[data-theme="light"] .reserve-strip__cta .phone { color: #c9a96a; }
:root[data-theme="light"] .reserve-strip__cta small { color: #b8b1a6; }
:root[data-theme="light"] .hero .eyebrow::before,
:root[data-theme="light"] .page-hero .eyebrow::before,
:root[data-theme="light"] .exp-card .eyebrow::before,
:root[data-theme="light"] .reserve-strip .eyebrow::before { background: #c9a96a; }
/* Ghost button (border outline + ink text) over a dark photo: in light
   mode the ink becomes dark + invisible. Force outline-cream when the
   ghost button sits on a dark-photo container. */
:root[data-theme="light"] .reserve-strip .btn--ghost,
:root[data-theme="light"] .exp-card .btn--ghost {
  --btn-fg: #f5f1ea;
  --btn-bd: rgba(255, 255, 255, 0.35);
}
:root[data-theme="light"] .reserve-strip .btn--ghost:hover,
:root[data-theme="light"] .exp-card .btn--ghost:hover {
  --btn-bd: #f5f1ea;
  --btn-bg: rgba(255, 255, 255, 0.06);
}

/* Footer was hard-coded #060504 — give it a warm cream surface that
   matches the rest of the page in light mode. */
:root[data-theme="light"] .site-footer { background: var(--bg-1); border-top: 1px solid var(--line); color: var(--ink); }
:root[data-theme="light"] .site-footer a { color: var(--ink); }

/* Modal backdrop & in-page overlays */
:root[data-theme="light"] .checkout-modal__backdrop { background: rgba(40, 30, 18, 0.45); }
:root[data-theme="light"] .menu-card__img-wrap::after { background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.18)); }

/* Search clear button hover stays red — already uses var(--red). Good. */

/* Light-mode tweaks for menu cards, totals, and inputs so they don't
   swallow text into the cream background. */
:root[data-theme="light"] .menu-card { box-shadow: 0 2px 8px -2px rgba(80, 60, 30, 0.08); }
:root[data-theme="light"] .menu-card:hover { box-shadow: 0 12px 32px -8px rgba(80, 60, 30, 0.18); }
:root[data-theme="light"] .field input,
:root[data-theme="light"] .field textarea { background: #fff; border-color: var(--line-strong); color: var(--ink); }
:root[data-theme="light"] .field input::placeholder,
:root[data-theme="light"] .field textarea::placeholder { color: var(--ink-mute); }
:root[data-theme="light"] .search-input { background: #fff; color: var(--ink); }
:root[data-theme="light"] .search-row { background: rgba(245, 240, 230, 0.96); border-bottom: 1px solid var(--line); }
:root[data-theme="light"] .cat-nav { background: rgba(245, 240, 230, 0.96); }

/* Cart panel + pay-method block read well by default but the inner
   subgrid needs a subtle border so it stays visually grouped. */
:root[data-theme="light"] .cart-panel,
:root[data-theme="light"] .pay-method,
:root[data-theme="light"] .pay-trust { border-color: var(--line-strong); }

/* Confirmation card */
:root[data-theme="light"] .confirm-card { background: var(--bg-1); border-color: var(--line-strong); }

/* ---------- Theme toggle button ---------- */
.theme-toggle {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out), transform .2s var(--ease-out);
  flex-shrink: 0;
  margin-right: 4px;
}
.theme-toggle:hover { background: var(--bg-3); border-color: var(--gold); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; transition: opacity .25s var(--ease-out), transform .35s var(--ease-out); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="light"] .theme-toggle .icon-sun  { display: block; color: var(--gold); }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* On phones the header is dense — keep the toggle visible but slightly smaller. */
@media (max-width: 760px) {
  .theme-toggle { width: 36px; height: 36px; }
  .theme-toggle svg { width: 16px; height: 16px; }
}
