/* Self-hosted fonts — no CDN, no third parties.
   Fraunces variable font (opsz 9..144, wght 300..900, SOFT 0..100, italic/roman).
   Caveat for handwritten accents. Both licensed OFL, served from our origin. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/fraunces-roman-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/fraunces-roman-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/fraunces-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/fraunces-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/caveat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/caveat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --paper: #f4ead5;
  --paper-deep: #ead9b8;
  --ink: #1f1510;
  --ink-soft: #4a3628;
  --achiote: #c73e1d;
  --achiote-dark: #8e2a12;
  --cobalt: #2e4a7b;
  --saffron: #e8a628;
  --verde: #3a5a40;

  --f-display: "Fraunces", "Playfair Display", Georgia, serif;
  --f-hand: "Caveat", "Comic Sans MS", cursive;

  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 14, "SOFT" 50;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse at 15% 5%, transparent 35%, rgba(31,21,16,0.1) 100%);
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

::selection { background: var(--saffron); color: var(--ink); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  background: color-mix(in oklab, var(--paper) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,21,16,0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.brand:hover .brand-mark { transform: rotate(-12deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-sup {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  font-style: italic;
}
.brand-main {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 1.9rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--f-display);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1.5px;
  background: var(--achiote);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: var(--achiote); }
.nav-links a:not(.cta):hover::after { transform: scaleX(1); }
.nav-links .cta {
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-style: normal;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-links .cta:hover {
  background: var(--achiote);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(199,62,29,0.35);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 5rem 2rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy { animation: fadeUp 1s ease both; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--achiote);
  margin-bottom: 1.75rem;
}
.eyebrow-mark { font-size: 0.9rem; color: var(--saffron); }

.hero-title {
  font-size: clamp(3.3rem, 9.5vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-title .line {
  display: block;
  animation: fadeUp 1.1s ease both;
}
.hero-title .line:nth-child(1) { animation-delay: 0.05s; }
.hero-title .line:nth-child(2) { animation-delay: 0.2s; }
.hero-title .line:nth-child(3) { animation-delay: 0.35s; }
.hero-title .line-italic {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink-soft);
  padding-left: 1.3em;
  font-size: 0.78em;
}
.hero-title .line-big {
  font-size: 1.18em;
  color: var(--achiote);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-title .dot { color: var(--cobalt); font-style: normal; }

.hero-sub {
  margin-top: 2.1rem;
  max-width: 34em;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 14, "SOFT" 50;
}

.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--achiote);
}
.btn.primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--achiote);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero-hand {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cobalt);
  font-family: var(--f-hand);
  font-size: 1.7rem;
  font-weight: 700;
  transform: rotate(-2deg);
  transform-origin: left center;
  animation: fadeUp 1.2s 0.7s ease both;
}
.hand-arrow { width: 72px; height: 50px; flex-shrink: 0; }
.hand-arrow svg { width: 100%; height: 100%; }

.hero-stamp {
  justify-self: end;
  width: 290px;
  max-width: 100%;
  color: var(--achiote);
  transform: rotate(8deg);
  animation: stampWobble 6s ease-in-out infinite, fadeUp 1.3s 0.3s ease both;
  filter: drop-shadow(3px 4px 0 rgba(31,21,16,0.14));
}
.stamp { width: 100%; height: auto; display: block; }

@keyframes stampWobble {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6.5deg) translateY(-6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.15rem 0;
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 2.25rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.marquee-track .dot-sep { color: var(--saffron); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== SECTION ========== */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 2rem;
}
.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.kicker {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--achiote);
  margin-bottom: 1.1rem;
  display: inline-block;
}
.kicker::before {
  content: "❈";
  margin-right: 0.55rem;
  color: var(--saffron);
  font-size: 0.9em;
}
.section h2 {
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 1.1rem;
}
.section h2 em {
  font-style: italic;
  color: var(--achiote);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 42em;
  font-style: italic;
  font-variation-settings: "opsz" 14;
}

/* ========== MENU ========== */
.menu-list {
  display: grid;
  gap: 0;
}
.dish {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.75rem 0.75rem;
  border-bottom: 1px solid rgba(31,21,16,0.14);
  position: relative;
  transition: background 0.4s ease, padding-left 0.3s ease;
}
.dish:first-child { border-top: 1px solid rgba(31,21,16,0.14); }
.dish:hover {
  background: linear-gradient(to right, rgba(232,166,40,0.12), transparent 75%);
  padding-left: 1.5rem;
}
.dish-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--achiote);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  min-width: 3.5em;
}
.dish-body h3 {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.dish-tag {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-family: var(--f-hand);
  font-size: 1.35rem;
  color: var(--saffron);
  transform: rotate(-4deg);
  font-weight: 700;
  font-style: normal;
}
.dish-body p {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 46em;
  font-style: italic;
  font-variation-settings: "opsz" 14;
}
.dish-dots {
  flex: 1;
  height: 1px;
  align-self: flex-end;
  min-width: 24px;
  margin-bottom: 0.7rem;
  background-image: radial-gradient(circle, var(--ink-soft) 1px, transparent 1.5px);
  background-size: 9px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  opacity: 0.45;
}
.dish-price {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.dish.featured {
  background: linear-gradient(to right, rgba(232,166,40,0.18), transparent 85%);
  border-left: 3px solid var(--saffron);
  padding-left: 1.5rem;
}
.dish.featured .dish-price { color: var(--achiote); }

.sides {
  margin: 5rem auto 0;
  padding: 2.75rem 3rem;
  background: var(--paper-deep);
  border: 1.5px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  max-width: 640px;
  position: relative;
}
.sides::before {
  content: "";
  position: absolute;
  top: 7px; left: 7px; right: 7px; bottom: 7px;
  border: 1px dashed var(--ink);
  pointer-events: none;
}
.sides header {
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
}
.sides .kicker { margin-bottom: 0.4rem; }
.sides h3 {
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.sides ul { position: relative; }
.sides li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.8rem 0;
}
.sides .dots {
  height: 1px;
  align-self: flex-end;
  margin-bottom: 0.4rem;
  background-image: radial-gradient(circle, var(--ink-soft) 1px, transparent 1.5px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  opacity: 0.5;
}
.sides li span:first-child {
  font-size: 1.05rem;
  font-style: italic;
}
.sides li span:last-child {
  font-variant-numeric: tabular-nums;
  color: var(--achiote);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ========== DIVIDER ========== */
.divider {
  color: var(--achiote);
  padding: 1.25rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.divider svg { width: 100%; height: 32px; display: block; }
.divider.flip svg { transform: scaleY(-1); }

/* ========== STORY ========== */
.story {
  background: var(--ink);
  color: var(--paper);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(232,166,40,0.16), transparent 55%),
    radial-gradient(circle at 8% 90%, rgba(199,62,29,0.14), transparent 55%);
  pointer-events: none;
}
.story-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.story .kicker { color: var(--saffron); }
.story .kicker::before { color: var(--achiote); }
.story h2 {
  color: var(--paper);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  margin-bottom: 2rem;
}
.story h2 em { color: var(--saffron); font-weight: 300; }
.story .lede {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  line-height: 1.5;
  max-width: 22em;
}
.story-copy > p:not(.lede):not(.signature):not(.kicker) {
  color: color-mix(in oklab, var(--paper) 72%, var(--ink));
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 38em;
  line-height: 1.65;
}
.signature {
  margin-top: 1.8rem;
  font-family: var(--f-hand);
  font-size: 2rem;
  color: var(--saffron);
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}
.stats li {
  border-top: 1.5px solid var(--saffron);
  padding-top: 1.1rem;
}
.stat-big {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(3rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--saffron);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.04em;
}
.stat-big sup { font-size: 0.5em; vertical-align: super; }
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--paper);
  font-style: italic;
  line-height: 1.3;
  opacity: 0.78;
}

/* ========== VISIT ========== */
.ticket {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 3.5rem;
  background: var(--paper-deep);
  border: 1.5px solid var(--ink);
  position: relative;
  box-shadow: 9px 9px 0 var(--ink);
  max-width: 1000px;
  margin: 0 auto;
}
.ticket::before {
  content: "";
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px dashed var(--ink);
  pointer-events: none;
}
.ticket-perf {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  background-image: radial-gradient(circle, var(--paper) 4px, transparent 5px);
  background-size: 14px 20px;
  background-repeat: repeat-y;
  background-position: center;
  z-index: 2;
}
.ticket-perf.left { left: -7px; }
.ticket-perf.right { right: -7px; }
.ticket-col { position: relative; }
.ticket-label {
  display: block;
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--achiote);
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(31,21,16,0.22);
}
.ticket-col p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
}
.ticket-col strong {
  font-family: var(--f-display);
  font-weight: 700;
  margin-right: 0.4rem;
  font-style: italic;
}
.ticket-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-style: italic;
  color: var(--cobalt);
  border-bottom: 1px solid var(--cobalt);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.ticket-col a:hover { color: var(--achiote); border-color: var(--achiote); }

/* ========== ORDER ========== */
.order { text-align: center; }
.order-inner { max-width: 760px; margin: 0 auto; }
.order .kicker { display: inline-block; }
.order h2 { font-size: clamp(3rem, 7.5vw, 5.8rem); }
.order .section-sub { margin: 1.5rem auto 3rem; text-align: center; }

.order-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.btn.big {
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem 3.25rem;
}
.btn.big .btn-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  font-style: italic;
}
.btn.big .btn-phone {
  font-size: 1.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.order-apps {
  display: flex;
  gap: 0.8rem;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  align-items: center;
}
.order-apps a {
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.order-apps a:hover { color: var(--achiote); border-color: var(--achiote); }

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4.5rem 2rem 3rem;
  text-align: center;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--achiote);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--paper);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.footer-tag {
  font-family: var(--f-hand);
  font-size: 1.6rem;
  color: var(--saffron);
  margin-bottom: 2rem;
}
.footer-meta {
  font-size: 0.85rem;
  color: rgba(244, 234, 213, 0.55);
  font-style: italic;
  letter-spacing: 0.06em;
}

/* ========== FOOTER LINKS (privacy · whitepaper · NoJS toggle) ========== */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(244, 234, 213, 0.7);
}
.footer-links a {
  border-bottom: 1px solid rgba(244, 234, 213, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-links a:hover { color: var(--saffron); border-color: var(--saffron); }
.footer-links .sep { opacity: 0.4; }
/* NoJS toggle: by default (JS off or opted out), only "Disable" is useful
   since it's a no-op without JS. Show "Re-enable" when the user has explicitly
   opted out via the toggle. When JS is fully running, show "Disable". */
.nojs-off { display: none; }
html.nojs .nojs-on { display: none; }
html.nojs .nojs-off { display: inline; }

/* ========== SCROLL REVEAL ========== */
/* Default (no JS / Tor Safest / NoJS toggle): everything visible, no animation.
   Only hide behind an observer when JS is actually running. */
html.js .dish,
html.js .stats li,
html.js .ticket-col,
html.js .story-copy,
html.js .section-head,
html.js .sides {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.dish.in, .stats li.in, .ticket-col.in, .story-copy.in, .section-head.in, .sides.in {
  opacity: 1;
  transform: translateY(0);
}
.menu-list .dish:nth-child(1).in { transition-delay: 0s; }
.menu-list .dish:nth-child(2).in { transition-delay: 0.06s; }
.menu-list .dish:nth-child(3).in { transition-delay: 0.12s; }
.menu-list .dish:nth-child(4).in { transition-delay: 0.18s; }
.menu-list .dish:nth-child(5).in { transition-delay: 0.24s; }
.menu-list .dish:nth-child(6).in { transition-delay: 0.3s; }
.stats li:nth-child(2).in { transition-delay: 0.1s; }
.stats li:nth-child(3).in { transition-delay: 0.2s; }
.stats li:nth-child(4).in { transition-delay: 0.3s; }
.ticket-col:nth-child(4).in { transition-delay: 0.1s; }
.ticket-col:nth-child(5).in { transition-delay: 0.2s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-stamp {
    width: 220px;
    justify-self: center;
    order: -1;
  }
  .story-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .ticket { grid-template-columns: 1fr; padding: 2.75rem 2.25rem; }
  .ticket-col:not(:last-child) {
    padding-bottom: 1.75rem;
    border-bottom: 1px dashed rgba(31,21,16,0.2);
  }
}

@media (max-width: 680px) {
  html { font-size: 16px; }
  .nav { padding: 0.9rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.92rem; }
  .nav-links .cta { padding: 0.5rem 0.95rem; }
  .brand-main { font-size: 1.2rem; }
  .brand-sup { font-size: 0.6rem; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { padding: 3rem 1.25rem 4.5rem; }
  .section { padding: 4.5rem 1.25rem; }
  .story { padding: 5.5rem 1.25rem; }
  .hero-title .line-italic { padding-left: 0.6em; }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .ticket { padding: 2.25rem 1.75rem; box-shadow: 6px 6px 0 var(--ink); }
  .sides { padding: 2rem 1.75rem; box-shadow: 5px 5px 0 var(--ink); margin-top: 4rem; }
  .dish {
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
    padding: 1.5rem 0.25rem;
  }
  .dish-num {
    grid-column: 1 / -1;
    min-width: 0;
  }
  .dish-dots { display: none; }
  .dish-body { grid-column: 1; }
  .dish-price { grid-column: 2; grid-row: 2; }
  .marquee-track { font-size: 1rem; gap: 1.5rem; }
  .divider { padding: 1rem 1.25rem; }
  .btn.big { padding: 1.25rem 2rem; }
  .btn.big .btn-phone { font-size: 1.45rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-stamp { transform: rotate(8deg); }
  .dish, .stats li, .ticket-col, .story-copy, .section-head, .sides {
    opacity: 1;
    transform: none;
  }
}
