/* ===== Tokens ===== */
:root {
  --ink: #1a1410;
  --ink-soft: #4a4038;
  --cream: #faf4e8;
  --cream-2: #f3e9d6;
  --ember: #e8472b;
  --ember-dark: #c4341c;
  --gold: #f2a93b;
  --char: #211b16;
  /* vibrant Birria accents */
  --turq: #15a39a;
  --lime: #3fae5e;
  --pink: #e8527f;
  --grape: #7a3fa0;
  --line: rgba(26, 20, 16, 0.12);
  --shadow: 0 18px 40px -22px rgba(33, 27, 22, 0.55);
  --radius: 16px;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand__name {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.02;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 3D Intro ===== */
body.intro-locked { overflow: hidden; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background:
    radial-gradient(circle at 65% 35%, rgba(242, 169, 59, 0.25), transparent 55%),
    linear-gradient(135deg, #1a1209 0%, #2a1d14 50%, #100b06 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.7s ease;
}
.intro--leaving { opacity: 0; }

#cube-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}
#cube-canvas:active { cursor: grabbing; }

.intro__tip {
  position: fixed;
  z-index: 3;
  transform: translate(14px, -50%);
  background: rgba(20, 16, 12, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(242, 169, 59, 0.5);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
}
.intro__tip.is-on { opacity: 1; }

.intro__ui {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 4.5vh;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  pointer-events: none; /* let drags reach the canvas; re-enable on controls */
}
.intro__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.intro__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}
.intro__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.4rem 0 1.3rem;
}
.intro__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1d1712;
  border: 1px solid rgba(242, 169, 59, 0.30);
  color: #f4ece0;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.62em 1.15em;
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 10px 22px -14px rgba(0, 0, 0, 0.9);
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.intro__btn:hover {
  transform: translateY(-3px);
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  box-shadow: 0 16px 28px -16px rgba(232, 71, 43, 0.95);
}
.intro__enter {
  pointer-events: auto;
  background: var(--ember);
  color: #fff;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 2em;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 18px 40px -18px rgba(232, 71, 43, 0.9);
  transition: transform 0.15s ease, background 0.2s ease;
}
.intro__enter:hover { transform: translateY(-2px); background: var(--ember-dark); }
.intro__hint {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.intro__hint strong { color: var(--gold); font-weight: 600; }
.intro__play {
  pointer-events: auto;
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px dashed rgba(242, 169, 59, 0.7);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.intro__play:hover { color: var(--gold); border-color: var(--gold); }

/* ===== Rubik's Lounge (play.html) ===== */
.play-body { background: #100b06; overflow: hidden; }
.play-canvas { position: fixed; inset: 0; width: 100%; height: 100%; display: block; cursor: grab; }
.play-canvas:active { cursor: grabbing; }

.play-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(to bottom, rgba(16, 11, 6, 0.85), rgba(16, 11, 6, 0));
}
.play-bar__back { color: rgba(255, 255, 255, 0.8); font-weight: 600; font-size: 0.92rem; }
.play-bar__back:hover { color: var(--gold); }
.play-bar__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.play-bar__actions { display: flex; gap: 0.6rem; }
.play-btn {
  background: var(--ember);
  color: #fff;
  border: 1px solid var(--ember);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55em 1.1em;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}
.play-btn:hover { transform: translateY(-2px); background: var(--ember-dark); }
.play-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.4); }
.play-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.play-skins {
  position: fixed;
  top: 4.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
}
.play-skin {
  background: rgba(29, 23, 18, 0.8);
  color: #f4ece0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45em 0.95em;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}
.play-skin:hover { transform: translateY(-2px); border-color: var(--gold); }
.play-skin.is-active { background: var(--ember); border-color: var(--ember); color: #fff; }

.play-hint {
  position: fixed;
  bottom: 1.4rem;
  left: 0; right: 0;
  z-index: 10;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  pointer-events: none;
  padding: 0 1rem;
}
.play-hint strong { color: var(--gold); font-weight: 600; }

.play-music {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 11;
  width: min(340px, 86vw);
}
.play-music__toggle {
  display: block;
  margin-left: auto;
  margin-bottom: 0.6rem;
  background: #1d1712;
  color: #f4ece0;
  border: 1px solid rgba(242, 169, 59, 0.4);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5em 0.9em;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.play-music__toggle:hover { border-color: var(--gold); }
.play-music__panel {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: max-height 0.3s ease, opacity 0.25s ease;
  max-height: 360px;
  opacity: 1;
}
.play-music__panel.is-collapsed { max-height: 0; opacity: 0; }

@media (max-width: 560px) {
  .play-bar { flex-wrap: wrap; }
  .play-bar__title { order: -1; width: 100%; text-align: center; }
  .play-music { left: 1.2rem; width: auto; }
}

@media (max-width: 540px) {
  .intro__ui { margin-top: 24vh; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ember); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--ember-dark); transform: translateY(-2px); }
.btn--outline { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn--ghost { border-color: var(--ember); color: var(--ember); padding: 0.6em 1.2em; }
.btn--ghost:hover { background: var(--ember); color: #fff; }
.btn--block { width: 100%; margin-top: 6px; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 244, 232, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 70px;
}

/* Header navigation cube */
.nav__cube {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}
#nav-cube {
  width: 48px;
  height: 48px;
  display: block;
  cursor: pointer;
}
.nav__cube-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.6rem;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 5;
}
.nav__cube-tip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--ink);
}
.nav__cube-tip.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand__mark { font-size: 1.5rem; }
.brand__name { font-size: 1.6rem; letter-spacing: 0.04em; }
.brand__bbq { color: var(--ember); margin-left: 0.3rem; }
.nav__links { display: flex; align-items: center; gap: 1.8rem; margin-left: auto; }
.nav__links a { font-weight: 500; font-size: 0.96rem; transition: color 0.15s ease; }
.nav__links a:not(.btn):hover { color: var(--ember); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(20, 14, 8, 0.92) 0%, rgba(20, 14, 8, 0.6) 50%, rgba(20, 14, 8, 0.3) 100%),
    radial-gradient(circle at 78% 30%, rgba(232, 71, 43, 0.25), transparent 50%),
    url("img/food-truck.jpg") center / cover no-repeat,
    #1a1209;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.hero__content { position: relative; max-width: 660px; padding-top: 40px; padding-bottom: 60px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.hero__title { font-size: clamp(3.4rem, 9vw, 6.6rem); }
.hero__sub {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 1.4rem 0 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
  padding: 0.6rem 1.1rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}
.hero__badge-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ===== Strip ===== */
.strip { background: linear-gradient(90deg, var(--turq), var(--lime)); color: #fff; }
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.1rem 24px;
  font-weight: 500;
  font-size: 0.95rem;
}
.strip__item { display: flex; align-items: center; gap: 0.5rem; }
.strip__item span { font-size: 1.1rem; }

/* ===== Sections ===== */
.section { padding: 6rem 0; }
.section--alt { background: var(--cream-2); }
.section__head { text-align: center; max-width: 600px; margin: 0 auto 3.2rem; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ember);
  margin-bottom: 0.7rem;
}
.section__eyebrow--light { color: var(--gold); }
.section--alt .section__eyebrow { color: var(--turq); }
.story .section__eyebrow { color: var(--grape); }
.map .section__eyebrow { color: var(--pink); }
.section__title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.section__title--light { color: #fff; }
.section__lead { color: var(--ink-soft); margin-top: 0.8rem; font-size: 1.08rem; }

/* ===== Menu ===== */
.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.menu-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 71, 43, 0.4);
}
.menu-card h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.menu-card p { color: var(--ink-soft); font-size: 0.97rem; padding-right: 2.5rem; }
.menu-card__price {
  position: absolute;
  top: 1.6rem; right: 1.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--ember);
}
.menu-card--feature {
  grid-column: span 2;
  background: linear-gradient(135deg, #2a1d14, #432918);
  color: #fff;
  border: 0;
}
.menu-card--feature p { color: rgba(255, 255, 255, 0.8); }
.menu-card--feature .menu-card__price { color: var(--gold); font-size: 1.9rem; }
.menu-card__tag {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.menu__note {
  text-align: center;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* photo cards */
.menu-card__photo { background-size: cover; background-position: center; }
.menu-card--feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  padding: 0;
  overflow: hidden;
}
.menu-card--feature .menu-card__photo { min-height: 260px; }
.menu-card--feature .menu-card__body {
  padding: 1.9rem; display: flex; flex-direction: column; justify-content: center;
}
.menu-card--photo { padding: 0; overflow: hidden; }
.menu-card--photo .menu-card__photo--top { height: 175px; }
.menu-card--photo .menu-card__body { padding: 1.5rem 1.6rem 1.7rem; }
/* photo cards: price sits inline (no absolute overlap on the image) */
.menu-card--feature .menu-card__price,
.menu-card--photo .menu-card__price {
  position: static; display: inline-block; margin-top: 0.8rem;
}

/* drinks list */
.drinks {
  margin-top: 2.4rem;
  background: linear-gradient(135deg, rgba(21, 163, 154, 0.1), rgba(63, 174, 94, 0.1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.9rem;
}
.drinks__title { font-size: 1.6rem; margin-bottom: 1.1rem; }
.drinks__feature { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1.3rem; }
.drink-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.drink-card__photo { height: 230px; background-size: cover; background-position: center; }
.drink-card figcaption {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem;
  padding: 0.75rem 0.95rem; font-weight: 600;
}
.drink-card figcaption span { font-family: "Bebas Neue", sans-serif; color: var(--turq); font-size: 1.15rem; }
.drinks__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 2.4rem;
}
.drinks__list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-weight: 500;
}
.drinks__list li span:last-child { font-family: "Bebas Neue", sans-serif; color: var(--turq); font-size: 1.15rem; }

@media (max-width: 620px) {
  .menu-card--feature { grid-template-columns: 1fr; }
  .menu-card--feature .menu-card__photo { min-height: 180px; }
}

/* ===== Schedule ===== */
.schedule {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.schedule__row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.schedule__row:last-child { border-bottom: 0; }
.schedule__day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--ember);
}
.schedule__where { font-size: 0.96rem; color: var(--ink-soft); }
.schedule__where strong { color: var(--ink); font-weight: 600; }
.schedule__time { font-weight: 600; white-space: nowrap; }
.schedule__row--live { background: #fff7ed; }
.schedule__row--live em {
  font-style: normal;
  color: var(--ember);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Cartoon Map ===== */
.map__frame {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  background: #f3e9d6;
}
.map__svg { display: block; width: 100%; height: auto; }
.map__here { animation: bob 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes bob {
  0%, 100% { transform: translate(760px, 300px); }
  50% { transform: translate(760px, 290px); }
}
.map__legend {
  list-style: none;
  max-width: 980px;
  margin: 1.6rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem 1.4rem;
}
.map__legend li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.map__legend span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}
.map__legend--live { color: var(--ink); font-weight: 700; }
.map__legend--live span { background: var(--ember); color: #fff; }
.map__note { text-align: center; margin-top: 1.6rem; color: var(--ink-soft); }
.map__note a { color: var(--ember); font-weight: 600; text-decoration: underline; }

@media (max-width: 640px) {
  .map__legend { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Story ===== */
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.story__art {
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 169, 59, 0.4), transparent 60%),
    linear-gradient(135deg, var(--ember), var(--ember-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.story__art-emoji { font-size: clamp(4rem, 12vw, 7rem); }
.story__text p { color: var(--ink-soft); margin-top: 1rem; max-width: 48ch; }
.story__stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.story__stats div { display: flex; flex-direction: column; }
.story__stats strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  color: var(--ember);
  line-height: 1;
}
.story__stats span { font-size: 0.85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== Book ===== */
.book { background: linear-gradient(135deg, #221710, #3a2415); color: #fff; }
.book__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.book__copy p { color: rgba(255, 255, 255, 0.78); margin-top: 1rem; max-width: 42ch; }
.book__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.8rem;
  border-radius: var(--radius);
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: span 2; }
.field label { font-size: 0.82rem; font-weight: 600; color: rgba(255, 255, 255, 0.7); }
.field input, .field textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.book__form .btn--block { grid-column: span 2; }
.book__form-note {
  grid-column: span 2;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold);
}

/* ===== Footer ===== */
.footer { background: var(--char); color: var(--cream); padding: 3.5rem 0 1.5rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin-top: 0.8rem; max-width: 30ch; }
.footer__brand .brand__name { font-size: 1.5rem; }
.footer__col h4 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  color: #fff;
}
.footer__col a { display: block; color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; padding: 0.25rem 0; transition: color 0.15s ease; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__top:hover { color: var(--gold); }
.footer__bottom strong { color: var(--gold); font-weight: 700; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav__links {
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem 24px 1.4rem;
    transform: translateY(-130%);
    transition: transform 0.28s ease;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 0.5rem 0; }
  .nav__toggle { display: flex; }
  .menu-card--feature { grid-column: span 1; }
  .story__grid, .book__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .story__art { max-width: 320px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .section { padding: 4rem 0; }
  .book__form { grid-template-columns: 1fr; }
  .field--full, .book__form .btn--block, .book__form-note { grid-column: span 1; }
  .schedule__row { grid-template-columns: 50px 1fr; }
  .schedule__time { grid-column: 2; padding-left: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .strip__inner { justify-content: flex-start; }
}

/* Custom taco brand mark (replaces the emoji) */
.brand__mark { display: inline-flex; align-items: center; }
.brand__taco { width: 1.7rem; height: 1.7rem; display: block; }
.footer__brand .brand__taco { width: 1.6rem; height: 1.6rem; }
