/* ─────────────────────────────────────────────
   COSTA ROLLS FRENCH TACOS — Pressed hot in Glattpark
   warm off-black · antique gold · tortilla gold ·
   grill heat · Oswald condensed + Inter + Cormorant moments
   ───────────────────────────────────────────── */

:root {
  --bg: #0a0806;
  --bg-2: #120e09;
  --ink: #f2e9d8;
  --ink-dim: #a89a82;
  --gold: #c9a227;
  --gold-bright: #e6c76c;
  --gold-faint: rgba(201, 162, 39, 0.28);
  --tortilla: #e0a94f;
  --heat: #d4622a;
  --steel: #8e8e93;
  --cream: #f4e6c8;
  --garnish: #7da05b;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { background: var(--bg); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #000; }

img { max-width: 100%; }

.icon-sprite { display: none; }
.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-star { fill: currentColor; stroke-width: 1.4; }

/* film grain */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}

/* ── header ── */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 3rem;
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.82), transparent);
}
.wordmark {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--ink);
}
.head-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.head-order, .head-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0a0806;
  text-decoration: none;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.75em 1.6em;
  border-radius: 4px;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.head-order:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.head-order-alt, .head-call {
  color: var(--ink);
  background: rgba(10, 8, 6, 0.42);
  border-color: var(--gold-faint);
}
.head-order-alt:hover, .head-call:hover {
  color: var(--gold-bright);
  background: rgba(10, 8, 6, 0.72);
  border-color: var(--gold-bright);
}

/* ── shared ── */
.label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}
.label::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--gold-faint);
  margin-top: 1.1rem;
}

em { font-style: italic; color: var(--gold-bright); }

.btn-solid, .btn-ghost, .btn-call, .btn-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.25s ease;
}
.btn-icon .icon { font-size: 1rem; }
.btn-solid {
  color: #0a0806;
  background: var(--gold);
  border: 1px solid var(--gold);
}
.btn-solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink);
  background: rgba(10, 8, 6, 0.35);
  border: 1px solid var(--gold-faint);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-call {
  color: var(--gold-bright);
  background: rgba(10, 8, 6, 0.48);
  border: 1px solid rgba(230, 199, 108, 0.36);
}
.btn-call:hover { border-color: var(--gold-bright); color: var(--cream); }
.btn-menu {
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid rgba(168, 154, 130, 0.28);
}
.btn-menu:hover { color: var(--ink); border-color: var(--ink-dim); }

/* reveal-on-scroll default state (only when JS is available) */
.js .reveal {
  opacity: 0;
  transform: translateY(2.4rem);
}

/* Ken-Burns stills */
.kb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
}
.kb .kb-img { animation: kb 26s ease-in-out infinite alternate; }
@keyframes kb {
  0% { transform: scale(1); }
  100% { transform: scale(1.09); }
}

/* ── 1 · hero ── */
.hero { height: 420vh; position: relative; }

.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh; /* tracks the real viewport as mobile URL bars collapse */
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #0a0806 url("../assets/img/hero-fallback.jpg") center / cover no-repeat;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 6, 0.68) 0%, rgba(10, 8, 6, 0.25) 45%, transparent 70%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 7vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 44rem;
  pointer-events: none;
}
.overline {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3rem, 8.4vw, 8rem);
  line-height: 1.0;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-shadow: 0 0 90px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
}
.hero-title .ch { display: inline-block; }
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  margin-top: 1.6rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  pointer-events: auto;
}
.hero-chips {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  pointer-events: auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(10, 8, 6, 0.55);
  border-radius: 4px;
  padding: 0.55em 1em;
  white-space: nowrap;
  text-decoration: none;
}
.chip .icon { font-size: 0.9rem; }
.chip-star { color: var(--gold-bright); }
.chip-open { color: var(--cream); }
.chip-open.is-open { color: var(--garnish); border-color: rgba(125, 160, 91, 0.45); }
.chip-open.is-closed { color: var(--heat); border-color: rgba(212, 98, 42, 0.4); }

.scroll-cue {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.cue-line {
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── 2 · explain (Was ist ein French Taco) ── */
.explain { position: relative; min-height: 130vh; }
.explain-media {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.explain-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 6, 0.92) 0%, rgba(10, 8, 6, 0.72) 46%, rgba(10, 8, 6, 0.35) 100%);
}
.explain-copy {
  position: relative;
  margin-top: -100vh;
  margin-top: -100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16vh 8vw;
  max-width: 72rem;
}
.explain-copy .label { margin-bottom: 3rem; }
.explain-heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.explain-body {
  max-width: 34rem;
  font-size: 0.92rem;
  line-height: 2;
  color: var(--ink-dim);
  margin-bottom: 4.6rem;
}
.build-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.4rem;
  max-width: 64rem;
}
.bstep {
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(10, 8, 6, 0.55);
  border-radius: 8px;
  padding: 1.6rem 1.5rem 1.7rem;
}
.bstep-index {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold);
}
.bstep h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.9rem 0 0.6rem;
}
.bstep p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--ink-dim);
}

/* ── 3 · menu (Wähl deine Füllung) ── */
.menu {
  position: relative;
  padding: 20vh 8vw 16vh;
  background:
    radial-gradient(ellipse 55% 38% at 30% 0%, rgba(201, 162, 39, 0.05), transparent 70%),
    var(--bg-2);
}
.menu .label { margin-bottom: 3rem; }
.menu-heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 5rem;
}
.taco-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
}
.taco-card {
  --accent: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 8px;
  background: rgba(10, 8, 6, 0.65);
  padding: 1.9rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
  outline: none;
}
.taco-card:hover, .taco-card:focus-visible, .taco-card.active {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -28px var(--accent);
}
.taco-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.taco-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--ink-dim);
  flex: 1;
}
.taco-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid rgba(201, 162, 39, 0.16);
  padding-top: 1.1rem;
}
.taco-price {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.taco-price strong { font-weight: 600; }
.taco-price small {
  color: var(--ink-dim);
  font-size: 0.64rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.taco-order {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-faint);
  padding-bottom: 0.3em;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.taco-order .icon { font-size: 0.88rem; }
.taco-order:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.taco-order-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.taco-order-alt { color: var(--gold-bright); }
.menu-note {
  margin-top: 3.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.menu-note a { color: var(--gold-bright); text-decoration: none; }
.menu-note a:hover { text-decoration: underline; }

/* ── 4 · cut ── */
.cut { height: 320vh; position: relative; }
#cut-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cut-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 6, 0.7) 0%, transparent 55%);
  pointer-events: none;
}
.cut-label {
  position: absolute;
  top: 14vh;
  left: 8vw;
}
.cut-callouts {
  position: absolute;
  left: 8vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.callout {
  position: absolute;
  top: 0; left: 0;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.14;
  white-space: nowrap;
  opacity: 0;
}
.cut-cta {
  position: absolute;
  left: 8vw;
  bottom: 11vh;
  opacity: 0;
}
.order-cluster {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ── 5 · sides ── */
.sides {
  position: relative;
  padding: 20vh 8vw 16vh;
  background:
    radial-gradient(ellipse 50% 36% at 75% 0%, rgba(212, 98, 42, 0.05), transparent 70%),
    var(--bg);
}
.sides .label { margin-bottom: 4.4rem; }
.sides-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
}
.sides-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  color: var(--tortilla);
}
.ledger { list-style: none; margin-bottom: 3.2rem; }
.ledger li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.ledger .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(168, 154, 130, 0.4);
  transform: translateY(-0.25em);
}
.ledger .price {
  font-weight: 500;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.sides-note {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.sweet-card {
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(10, 8, 6, 0.6);
  position: sticky;
  top: 10vh;
}
.sweet-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.sweet-card figcaption { padding: 1.6rem 1.7rem 1.8rem; }
.sweet-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sweet-card p { font-size: 0.8rem; color: var(--ink-dim); line-height: 1.8; }

/* ── 6 · hours ── */
.hours { position: relative; min-height: 140vh; }
.hours-media {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.hours-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 6, 0.93) 0%, rgba(10, 8, 6, 0.72) 48%, rgba(10, 8, 6, 0.3) 100%);
}
.hours-copy {
  position: relative;
  margin-top: -100vh;
  margin-top: -100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16vh 8vw;
  max-width: 60rem;
}
.hours-copy .label { margin-bottom: 3rem; }
.hours-heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3.4rem;
}
.hours-table {
  border-collapse: collapse;
  max-width: 30rem;
  width: 100%;
  margin-bottom: 1.6rem;
}
.hours-table td {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.hours-table td:first-child { color: var(--ink-dim); width: 9rem; }
.hours-table td:last-child { color: var(--cream); font-variant-numeric: tabular-nums; }
.closed-row td:last-child { color: var(--heat); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }
.rating-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  width: 100%;
  max-width: 34rem;
  margin-bottom: 0.8rem;
}
.rating-card {
  display: flex;
  min-width: 0;
  min-height: 44px;
  flex-direction: column;
  gap: 0.24rem;
  padding: 0.9rem 0.95rem;
  color: var(--ink-dim);
  text-decoration: none;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 6px;
  background: rgba(10, 8, 6, 0.58);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.rating-card:hover, .rating-card:focus-visible {
  border-color: rgba(242, 215, 134, 0.7);
  transform: translateY(-2px);
}
.rating-card strong {
  color: var(--gold-bright);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.rating-card > span:last-child { font-size: 0.68rem; }
.rating-platform {
  overflow: hidden;
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.live-data-meta {
  max-width: 34rem;
  margin-bottom: 1.1rem;
  color: var(--ink-dim);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
}
.hours-note {
  max-width: 32rem;
  font-size: 0.76rem;
  line-height: 1.9;
  color: var(--ink-dim);
  margin-bottom: 2.8rem;
}
.hours-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── 7 · finale ── */
.finale { position: relative; min-height: 130vh; }
.finale-media {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.finale-scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(10, 8, 6, 0.42) 0%, rgba(10, 8, 6, 0.9) 100%);
}
.finale-copy {
  position: relative;
  margin-top: -100vh;
  margin-top: -100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 6vw;
}
.finale-logo {
  width: clamp(150px, 18vw, 230px);
  height: auto;
  margin-bottom: 2.8rem;
  filter: drop-shadow(0 12px 44px rgba(0, 0, 0, 0.7));
}
.finale-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.2;
}
.finale-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3.8rem;
}

/* ── footer ── */
.site-foot {
  position: relative;
  padding: 3.4rem 3rem 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: var(--bg);
}
.site-foot .fine {
  letter-spacing: 0.1em;
  text-transform: none;
  opacity: 0.8;
  line-height: 1.9;
}
.site-foot a { color: var(--gold-bright); text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }

/* footer link-style button (impressum popout trigger) */
.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  color: var(--gold-bright);
  cursor: pointer;
}
.link-btn:hover { text-decoration: underline; }

/* ── impressum dialog ── */
.impressum-dialog {
  margin: auto;
  padding: 0;
  border: 1px solid var(--gold-faint);
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--ink);
  max-width: min(26rem, 92vw);
  max-height: 85vh;
  max-height: 85dvh;
  overflow-y: auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.impressum-dialog::backdrop {
  background: rgba(6, 5, 3, 0.72);
  backdrop-filter: blur(3px);
}
.imp-inner { padding: 2.2rem 2.4rem 2.4rem; }
.imp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.imp-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.imp-close {
  background: none;
  border: 1px solid var(--gold-faint);
  border-radius: 4px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.imp-close:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.imp-inner p {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--ink-dim);
  margin-bottom: 1.1rem;
}
.imp-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink) !important;
}
.imp-inner a { color: var(--gold-bright); text-decoration: none; }
.imp-inner a:hover { text-decoration: underline; }
.imp-fine { font-size: 0.7rem !important; opacity: 0.8; margin-bottom: 0 !important; }

/* ── sticky mobile order bar ── */
.order-bar {
  display: none;
  position: fixed;
  left: 0.8rem; right: 0.8rem;
  bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  align-items: center;
  justify-content: stretch;
  gap: 0.45rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(10, 8, 6, 0.92);
  border: 1px solid var(--gold-faint);
  padding: 0.5rem;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}
.order-bar-link {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px; /* comfortable thumb target */
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 6px;
  padding: 0.7rem 0.3rem;
  white-space: nowrap;
}
.order-bar-primary {
  color: #0a0806;
  background: var(--gold);
  border-color: var(--gold);
}
.order-bar .icon { font-size: 0.92rem; }

/* ── small screens ── */
@media (max-width: 760px) {
  .site-head { padding: 1.1rem 1.2rem; }
  .head-actions { display: none; }
  .order-bar { display: flex; }
  body { padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px)); }

  /* shorter scroll runs — phones reach the menu sooner */
  .hero { height: 340vh; }
  .cut { height: 280vh; }

  #hero-canvas { background-position: 58% center; }
  .hero-copy { left: 6vw; right: 6vw; max-width: none; }
  .hero-title { white-space: normal; letter-spacing: 0.08em; }
  .hero-chips { margin-top: 1.6rem; }
  .hero-chips .chip { white-space: normal; padding: 0.62em 0.95em; }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 2rem;
  }
  .scroll-cue { display: none; }

  .explain-copy, .hours-copy { padding: 14vh 7vw; }
  .callout { white-space: normal; max-width: 84vw; }
  /* the sticky order bar already owns this CTA moment on phones */
  .cut-cta { display: none; }
  .btn-solid, .btn-ghost, .btn-call, .btn-menu { width: 100%; padding-inline: 1.1rem; white-space: nowrap; }
  .btn-menu {
    color: var(--ink);
    background: rgba(10, 8, 6, 0.45);
    border-color: rgba(168, 154, 130, 0.4);
  }
  .hide-sm { display: none; }

  .sides-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sweet-card { position: static; }
  .hours-table td:first-child { width: 7.2rem; }
  .rating-grid { grid-template-columns: 1fr; max-width: 25rem; }
  .rating-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.8rem;
  }
  .rating-card > span:last-child { grid-column: 1 / -1; }
  .hours-ctas, .finale-ctas, .order-cluster { gap: 0.65rem; }
  .taco-foot { flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .taco-order-group { justify-content: flex-start; gap: 1.1rem; }
  .menu-note { font-size: 0.8rem; line-height: 1.9; }

  .grain { animation: none; } /* battery: no repaint loop on phones */
}

@media (prefers-reduced-motion: reduce) {
  .grain, .cue-line { animation: none; }
  .kb .kb-img { animation: none; }
}
