/* ============================================================
   DROP'S FREGENE — Landing page styles
   Shared base + per-variant theming via [data-variant]
   ============================================================ */

* { box-sizing: border-box; }

/* ── Skate-deck custom cursor (applies inside artboards) ─────── */
.drops-page,
.drops-page * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><defs><filter id='s' x='-20%25' y='-20%25' width='140%25' height='140%25'><feDropShadow dx='1' dy='1' stdDeviation='0.6' flood-opacity='0.4'/></filter></defs><g filter='url(%23s)'><ellipse cx='16' cy='16' rx='5' ry='13' fill='%230e4a8a' stroke='%231a1a1a' stroke-width='1.6'/><ellipse cx='16' cy='16' rx='3' ry='11' fill='none' stroke='%23f5ead2' stroke-width='0.6' opacity='0.5'/><circle cx='16' cy='5.5' r='1.6' fill='%231a1a1a'/><circle cx='16' cy='26.5' r='1.6' fill='%231a1a1a'/><circle cx='13' cy='5.5' r='0.8' fill='%23c98a3a'/><circle cx='19' cy='26.5' r='0.8' fill='%23c98a3a'/></g></svg>") 16 16, auto;
}
.drops-page a,
.drops-page button,
.drops-page .clickable {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><g><ellipse cx='16' cy='16' rx='5' ry='13' fill='%23c98a3a' stroke='%231a1a1a' stroke-width='1.6' transform='rotate(20 16 16)'/><circle cx='13' cy='6' r='1.6' fill='%231a1a1a'/><circle cx='19' cy='26' r='1.6' fill='%231a1a1a'/></g></svg>") 16 16, pointer;
}

/* ── Artboard root ───────────────────────────────────────────── */
.drops-page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   WOOD TEXTURE — shared mixin
   Layered gradients = dark plank with grain + seams + knots.
   No external images. Two variant tonalities below.
   ============================================================ */
.drops-page {
  background-color: var(--wood-base);
  background-image:
    /* knots / dark blotches */
    radial-gradient(ellipse 240px 80px at 12% 18%, rgba(0,0,0,0.40), transparent 65%),
    radial-gradient(ellipse 180px 60px at 88% 32%, rgba(0,0,0,0.35), transparent 65%),
    radial-gradient(ellipse 200px 70px at 30% 62%, rgba(0,0,0,0.30), transparent 65%),
    radial-gradient(ellipse 220px 70px at 70% 84%, rgba(0,0,0,0.35), transparent 65%),
    /* warm highlights catching the grain */
    radial-gradient(ellipse 260px 50px at 55% 8%,  rgba(255,210,140,0.06), transparent 70%),
    radial-gradient(ellipse 260px 50px at 25% 78%, rgba(255,210,140,0.05), transparent 70%),
    /* horizontal plank seams every ~220px */
    repeating-linear-gradient(0deg,
      transparent 0 218px,
      rgba(0,0,0,0.55) 218px 220px,
      rgba(255,255,255,0.05) 220px 221px,
      transparent 221px 440px),
    /* secondary plank break around 1/2 height */
    repeating-linear-gradient(0deg,
      transparent 0 109px,
      rgba(0,0,0,0.18) 109px 110px,
      transparent 110px 220px),
    /* fine vertical wood grain */
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.08) 0 1px,
      transparent 1px 3px,
      rgba(255,255,255,0.02) 3px 4px,
      transparent 4px 7px,
      rgba(0,0,0,0.05) 7px 8px,
      transparent 8px 13px),
    /* coarse undulating grain */
    repeating-linear-gradient(92deg,
      rgba(0,0,0,0.06) 0 2px,
      transparent 2px 18px,
      rgba(255,255,255,0.015) 18px 20px,
      transparent 20px 48px),
    /* base wood tonal sweep */
    linear-gradient(178deg, var(--wood-light) 0%, var(--wood-base) 40%, var(--wood-dark) 75%, var(--wood-base) 100%);
}

/* ============================================================
   VARIANTE A — "Sunset Lineup"  (warm teak / blue / cream)
   ============================================================ */
[data-variant="A"] {
  --wood-base:  #3a2316;
  --wood-light: #4a2e1c;
  --wood-dark:  #1f130a;

  --bg:   var(--wood-base);
  --bg-2: #2a1810;
  --ink:   #f1e3c2;
  --ink-2: #d8c89c;
  --blue:   #6ab0e5;
  --blue-2: #98c8ed;
  --ochre:  #e8a94a;
  --tomato: #e85a3a;

  color: var(--ink);
  font-family: "DM Serif Text", "Cormorant Garamond", Georgia, serif;
}

[data-variant="A"] .display { font-family: "Yeseva One", serif; font-weight: 400; letter-spacing: -0.01em; }
[data-variant="A"] .script  { font-family: "Caveat Brush", cursive; font-weight: 400; }
[data-variant="A"] .mono    { font-family: "DM Mono", ui-monospace, monospace; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

[data-variant="A"] .paper {
  background-image:
    radial-gradient(hsl(0 0% 100% / 0.02) 1px, transparent 1px),
    radial-gradient(hsl(0 0% 100% / 0.015) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
}

/* ============================================================
   VARIANTE B — "Night Tide"  (ebony / amber / cream)
   ============================================================ */
[data-variant="B"] {
  --wood-base:  #1d1108;
  --wood-light: #2a1a0e;
  --wood-dark:  #0b0603;

  --bg:   var(--wood-base);
  --bg-2: #150c06;
  --ink:   #f5ead2;
  --ink-2: #d8c89c;
  --blue:   #4a9cdb;
  --blue-2: #6ab0e5;
  --ochre:  #ffb648;
  --tomato: #ff5d39;

  color: var(--ink);
  font-family: "EB Garamond", Georgia, serif;
}

[data-variant="B"] .display { font-family: "Alfa Slab One", serif; font-weight: 400; letter-spacing: -0.02em; line-height: 0.92; }
[data-variant="B"] .script  { font-family: "Permanent Marker", cursive; font-weight: 400; transform: rotate(-3deg); display: inline-block; }
[data-variant="B"] .mono    { font-family: "Space Mono", ui-monospace, monospace; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

[data-variant="B"] .paper {
  background-image:
    radial-gradient(hsl(0 0% 100% / 0.025) 1px, transparent 1px),
    radial-gradient(hsl(0 0% 100% / 0.015) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { position: relative; padding: 96px 80px; z-index: 1; }
.section + .section { border-top: 1px solid currentColor; border-color: color-mix(in oklab, currentColor 15%, transparent); }

/* Keep all page-level direct children above the JungleBackdrop */
.drops-page > * { position: relative; z-index: 1; }
.drops-page > .jungle-backdrop { z-index: 0; }

.kicker {
  font-family: var(--mono-font, "DM Mono", monospace);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1.5px;
  background: currentColor;
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  display: flex;
  overflow: hidden;
  border-block: 2px solid currentColor;
  padding: 18px 0;
  gap: 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  flex-shrink: 0;
  will-change: transform;
  transform: translateZ(0);
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-size: 42px;
}
.marquee-item .dot { width: 14px; height: 14px; border-radius: 50%; background: currentColor; display: inline-block; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

[data-variant="A"] .marquee { background: var(--blue); color: var(--bg); }
[data-variant="A"] .marquee-item { font-family: "Yeseva One", serif; }
[data-variant="B"] .marquee { background: var(--ochre); color: var(--bg); }
[data-variant="B"] .marquee-item { font-family: "Alfa Slab One", serif; }

/* ============================================================
   Image slot styling helpers
   ============================================================ */
image-slot {
  display: block;
  border: 1.5px solid currentColor;
  background:
    repeating-linear-gradient(45deg,
      color-mix(in oklab, currentColor 6%, transparent) 0 8px,
      transparent 8px 16px);
}
[data-variant="A"] image-slot { border-color: var(--ink); }
[data-variant="B"] image-slot { border-color: color-mix(in oklab, var(--ink) 50%, transparent); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-family: "Space Mono", "DM Mono", monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  color: inherit;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 currentColor; }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
[data-variant="A"] .btn-primary { background: var(--blue); color: var(--bg); border-color: var(--blue); }
[data-variant="B"] .btn-primary { background: var(--ochre); color: var(--bg); border-color: var(--ochre); }
.btn .arrow { display: inline-block; transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Wave SVG helpers
   ============================================================ */
.wave-line { stroke: currentColor; stroke-width: 2; fill: none; }
@keyframes wave-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-100px); }
}
.wave-anim { animation: wave-drift 8s linear infinite; will-change: transform; }

/* ============================================================
   Decorative chips / stickers
   ============================================================ */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
}

/* ============================================================
   Card primitives
   ============================================================ */
.card {
  position: relative;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  padding: 24px;
  background: color-mix(in oklab, currentColor 4%, transparent);
}

/* Number badges for menu items */
.numlabel {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
}

/* dotted leader line for menu price lists */
.leader {
  flex: 1;
  border-bottom: 1.5px dotted color-mix(in oklab, currentColor 50%, transparent);
  margin: 0 12px;
  align-self: end;
  margin-bottom: 8px;
}

/* Stamps */
.stamp {
  display: inline-grid;
  place-items: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 2px solid currentColor;
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 8px;
  transform: rotate(-8deg);
}

/* ============================================================
   Hero specifics
   ============================================================ */
.hero {
  min-height: 900px;
  padding: 48px 80px 72px;
  display: flex;
  flex-direction: column;
}
.hero-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-bottom: 24px;
}
.hero-nav-side {
  display: flex;
  gap: 36px;
  font-family: "Space Mono", monospace;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-nav-left  { justify-content: flex-end; }
.hero-nav-right { justify-content: flex-start; }
.hero-nav-side a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.hero-nav-side a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.hero-nav-side a:hover::after { transform: scaleX(1); }

/* MENU link — stand-out CTA pill in the header */
.hero-nav-side a.nav-menu-cta {
  background: var(--ochre, #d97a3c);
  color: #1a0e07;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid #1a0e07;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.45);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.hero-nav-side a.nav-menu-cta::after { display: none; }
.hero-nav-side a.nav-menu-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  background: #e89052;
}
.site-header.is-scrolled .hero-nav-side a.nav-menu-cta {
  padding: 6px 12px;
}

.header-logo {
  display: inline-grid;
  place-items: center;
  width: 118px; height: 118px;
  padding: 7px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #1a1a1a,
    0 0 0 5px #ffffff,
    0 0 0 6.5px #1a1a1a,
    0 14px 36px rgba(0,0,0,0.55);
}
.header-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.hero-subtopbar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 0 0;
  border-top: 1px dashed color-mix(in oklab, currentColor 35%, transparent);
  margin-top: 16px;
  opacity: 0.75;
}
.hero-subtopbar-dot { opacity: 0.4; }

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-top: 56px;
}
.hero-headline {
  font-size: 168px;
  line-height: 0.86;
  margin: 0;
}
.hero-headline .underline-wave {
  text-decoration: underline wavy;
  text-underline-offset: 18px;
  text-decoration-thickness: 4px;
}

/* ============================================================
   Animated background blob waves
   ============================================================ */
.bg-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-waves svg {
  position: absolute;
  bottom: -10px;
  left: -120px;
  width: calc(100% + 240px);
  opacity: 0.35;
}

/* ============================================================
   Sun motif
   ============================================================ */
.sun {
  position: absolute;
  border-radius: 50%;
}

/* ============================================================
   Misc small bits
   ============================================================ */
.divider-wave {
  display: block;
  width: 100%;
  height: 24px;
  color: currentColor;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.dropcap::first-letter {
  font-family: "Yeseva One", serif;
  font-size: 5em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
}
[data-variant="B"] .dropcap::first-letter {
  font-family: "Alfa Slab One", serif;
  color: var(--ochre);
}

/* prevent default scroll inside artboard preview screens */
.drops-page img { user-select: none; -webkit-user-drag: none; }

/* ============================================================
   Hero slider (rotating background images with Ken Burns)
   ============================================================ */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  animation: heroKenBurns 14s ease-out infinite alternate;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.hero-slide.is-active { opacity: 1; }
@keyframes heroKenBurns {
  from { transform: translateZ(0) scale(1.04) translate(0, 0); }
  to   { transform: translateZ(0) scale(1.14) translate(-12px, -8px); }
}

/* Respect users / iOS power-saver mode that asks for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none !important; }
  .marquee-track { animation-duration: 80s; }
  .wave-anim { animation: none; }
  * { scroll-behavior: auto !important; }
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,6,3,0.55) 0%, rgba(11,6,3,0.35) 40%, rgba(11,6,3,0.85) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 80%);
  z-index: 1;
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-slider-dot {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.hero-slider-dot.is-active { background: var(--ochre); width: 56px; }
.hero-slider-dot:hover { background: rgba(255,255,255,0.55); }

.hero.has-slider { position: relative; min-height: 760px; padding-top: 80px; padding-bottom: 80px; }
.hero.has-slider .hero-grid,
.hero.has-slider .hero-content { position: relative; z-index: 2; }
.hero.has-slider .bg-waves { z-index: 3; }
.hero.has-slider .sun { display: none; }

/* ============================================================
   Instagram-style gallery
   ============================================================ */
.ig-post .ig-overlay { transition: opacity .2s ease; }
.ig-post:hover .ig-overlay { opacity: 1 !important; }
.ig-post image-slot { border: none !important; border-radius: 0 !important; }

/* ============================================================
   "Seleziona Menu" page — two big choice cards
   ============================================================ */
.menu-select-hero {
  min-height: calc(100svh - 80px);
  padding: 80px 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.menu-select-title {
  font-size: 128px;
  line-height: 0.9;
  margin: 16px 0 28px;
}
.menu-select-sub {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.5;
}
.menu-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 48px 40px 32px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: inherit;
  text-decoration: none;
  text-align: left;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 320px 120px at 50% -10%, rgba(255,182,72,0.18), transparent 70%),
    radial-gradient(ellipse 280px 100px at 50% 110%, rgba(74,156,219,0.12), transparent 70%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.menu-card:hover {
  transform: translate(-4px, -8px);
  background: rgba(0, 0, 0, 0.55);
  border-color: var(--ochre);
  box-shadow: 8px 12px 0 rgba(255,182,72,0.18), 0 24px 60px rgba(0,0,0,0.5);
}
.menu-card:hover::before { opacity: 1; }
.menu-card:hover .menu-card-cta { color: var(--ochre); }
.menu-card:hover .menu-card-cta .arrow { transform: translateX(8px); }

.menu-card-stamp {
  position: absolute;
  top: 24px; right: 28px;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.45;
}
.menu-card-flag {
  position: absolute;
  top: 22px; left: 24px;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.4);
}
.menu-card-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  color: var(--ochre);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), color .25s ease;
}
.menu-card:hover .menu-card-icon { transform: scale(1.08) rotate(-4deg); }
.menu-card-after .menu-card-icon { color: var(--blue-2, #4a9cdb); }
.menu-card:hover.menu-card-after .menu-card-icon { color: var(--ochre); }

.menu-card-body { flex: 1; }
.menu-card-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 14px;
}

/* Time-alert badge for dinner cards — pulses gently to grab attention */
.time-alert {
  position: absolute;
  top: 24px; right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--ochre, #d97a3c);
  color: #1a0e07;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid #1a0e07;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.35);
  transform: rotate(4deg);
  z-index: 4;
  animation: timeAlertPulse 2.2s ease-in-out infinite;
}
.time-alert::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e84a2e;
  box-shadow: 0 0 0 0 rgba(232, 74, 46, 0.85);
  animation: timeAlertDot 1.4s ease-out infinite;
}
@keyframes timeAlertPulse {
  0%, 100% { transform: rotate(4deg) scale(1); }
  50%      { transform: rotate(4deg) scale(1.06); }
}
@keyframes timeAlertDot {
  0%   { box-shadow: 0 0 0 0    rgba(232, 74, 46, 0.85); }
  70%  { box-shadow: 0 0 0 10px rgba(232, 74, 46, 0);    }
  100% { box-shadow: 0 0 0 0    rgba(232, 74, 46, 0);    }
}
.menu-card-kicker .time-highlight {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 4px;
  background: var(--ochre, #d97a3c);
  color: #1a0e07;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.menu-card-title {
  font-size: 48px;
  line-height: 1;
  margin: 0 0 18px;
  text-align: center;
}
.menu-card-desc {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 24px;
  text-align: center;
  opacity: 0.88;
}
.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.menu-card-cta {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px dashed color-mix(in oklab, currentColor 35%, transparent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: color .2s ease;
}
.menu-card-cta .arrow { display: inline-block; transition: transform .2s ease; }

.menu-select-foot {
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}
.menu-select-foot a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.menu-select-foot a:hover { color: var(--ochre); }

/* ============================================================
   Menu page (menu_it.html)
   ============================================================ */
.menu-hero {
  text-align: center;
  padding: 56px 80px 32px;
}
.menu-hero-title {
  font-size: 128px;
  line-height: 0.92;
  margin: 16px 0 24px;
  position: relative;
}
.menu-hero-script {
  position: absolute;
  right: 50%;
  margin-right: -260px;
  bottom: 30px;
  transform: rotate(-6deg);
  font-size: 38px;
  color: var(--ochre);
}
.menu-hero-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.5;
  opacity: 0.9;
}

/* After-dinner notice: paper-note pinned under the hero title */
.menu-hero-notice {
  position: relative;
  display: block;
  max-width: 620px;
  margin: 8px auto 28px;
  padding: 22px 26px 20px;
  background: color-mix(in oklab, var(--ochre, #ffb648) 18%, transparent);
  border: 2px dashed color-mix(in oklab, var(--ochre, #ffb648) 70%, transparent);
  border-radius: 12px;
  color: var(--ink, #f5ead2);
  text-align: left;
  transform: rotate(-0.6deg);
  box-shadow: 4px 6px 0 rgba(0,0,0,0.25);
}
.menu-hero-notice::before,
.menu-hero-notice::after {
  /* Tape strips at the top corners — keeps the paper-note vibe */
  content: "";
  position: absolute;
  top: -10px;
  width: 56px;
  height: 18px;
  background: color-mix(in oklab, var(--ink, #f5ead2) 80%, transparent);
  opacity: 0.55;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.menu-hero-notice::before { left: 18px; transform: rotate(-6deg); }
.menu-hero-notice::after  { right: 18px; transform: rotate(5deg); }

.menu-hero-notice-tag {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
  background: var(--ochre, #ffb648);
  color: #1a0e07;
  font-size: 11px;
  letter-spacing: 0.18em;
  border-radius: 4px;
  font-weight: 700;
}
.menu-hero-notice p {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink, #f5ead2);
}
.menu-hero-notice strong {
  color: var(--ochre, #ffb648);
  font-weight: 700;
}
.menu-hero-notice-thanks {
  font-family: "Permanent Marker", cursive;
  font-size: 22px;
  color: var(--blue, #6ab0e5);
  display: inline-block;
  transform: rotate(-1.5deg);
  margin-left: 4px;
}
@media (max-width: 640px) {
  .menu-hero-notice {
    /* Bigger, louder version on mobile — was getting lost between the huge
       headline and the soft sub paragraph. Now ochre-filled with dark text
       so it pops at thumb level. */
    margin: 18px 2px 32px;
    padding: 22px 20px 22px;
    background: var(--ochre, #ffb648);
    border: 2.5px dashed #1a0e07;
    color: #1a0e07;
    transform: rotate(-1deg);
    box-shadow: 5px 7px 0 rgba(0,0,0,0.45);
  }
  .menu-hero-notice-tag {
    background: #1a0e07;
    color: var(--ochre, #ffb648);
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .menu-hero-notice p {
    font-size: 17px;
    line-height: 1.45;
    color: #1a0e07;
    font-weight: 500;
  }
  .menu-hero-notice strong {
    color: #1a0e07;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }
  .menu-hero-notice-thanks {
    color: #1a0e07;
    font-size: 22px;
    display: block;
    margin: 8px 0 0 0;
    text-align: right;
  }
  .menu-hero-notice::before,
  .menu-hero-notice::after {
    background: color-mix(in oklab, #f5ead2 90%, transparent);
    opacity: 0.85;
    width: 48px;
    height: 16px;
  }
  .menu-hero-notice::before { left: 14px; }
  .menu-hero-notice::after  { right: 14px; }
}
.menu-mode-switch {
  display: inline-flex;
  margin-top: 36px;
  padding: 6px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  gap: 4px;
}
.menu-mode-btn {
  font: inherit;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.menu-mode-btn:hover { background: rgba(255,255,255,0.06); }
.menu-mode-btn.is-active {
  background: var(--ochre);
  color: #1a1a1a;
}

/* Sticky horizontal tab bar */
.menu-tabbar {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgb(11, 6, 3);
  border-top: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  border-bottom: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (hover: hover) and (pointer: fine) {
  .menu-tabbar {
    background: rgba(11, 6, 3, 0.92);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }
}
  padding: 10px 24px;
  margin: 0 -24px;
  overflow: hidden;
}
.menu-tabbar-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 4px 56px;
}
.menu-tabbar-track::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid color-mix(in oklab, currentColor 25%, transparent);
  color: inherit;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
}
.menu-tab:hover {
  border-color: currentColor;
  background: rgba(255,255,255,0.05);
}
.menu-tab.is-active {
  background: var(--ochre);
  color: #1a1a1a;
  border-color: var(--ochre);
}

/* Sections */
.menu-body {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 56px;
}
.menu-block {
  padding: 56px 0;
  border-bottom: 1px dashed color-mix(in oklab, currentColor 22%, transparent);
  scroll-margin-top: 160px;
}
.menu-block:last-of-type { border-bottom: none; }

.menu-sectitle { margin-bottom: 36px; }
.menu-sectitle-h {
  font-size: 72px;
  line-height: 0.95;
  margin: 14px 0 8px;
}
.menu-sectitle-sub {
  font-style: italic;
  opacity: 0.75;
  font-size: 18px;
}

.menu-block-headrow {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in oklab, currentColor 18%, transparent);
}
.menu-block-headrow span:nth-child(2),
.menu-block-headrow span:nth-child(3) {
  width: 100px;
  text-align: right;
}

.menu-items { display: flex; flex-direction: column; gap: 28px; }

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.menu-item-main { flex: 1; min-width: 0; }
.menu-item-name {
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chili-icon {
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.menu-item-desc {
  font-size: 16px;
  line-height: 1.45;
  opacity: 0.82;
  max-width: 700px;
}
.menu-item-allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.alg-pill {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, currentColor 40%, transparent);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.8;
}
.alg-pill-chili {
  border-color: #e3331b;
  background: rgba(227, 51, 27, 0.12);
  padding: 0 4px;
  opacity: 1;
}
.menu-item-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ochre);
  white-space: nowrap;
  min-width: 100px;
  text-align: right;
}
.menu-item-prices span:nth-child(2) {
  font-size: 14px;
  opacity: 0.75;
  color: var(--ink);
  font-weight: 400;
}

/* Footnotes / allergens index */
.menu-footnotes {
  margin-top: 64px;
  padding: 40px;
  border: 1.5px solid color-mix(in oklab, currentColor 25%, transparent);
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
}
.menu-footnotes p { font-size: 16px; line-height: 1.55; }
.alg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px 24px;
  margin: 24px 0 24px;
}
.alg-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   SITE HEADER — integrated in flow, sticks when scrolled
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px 80px;
  background: transparent;
  color: var(--ink, #f5ead2);
  /* iOS Safari note: do NOT animate backdrop-filter and prefer solid bg on
     scrolled state — the blur over moving content tanks frame-rate. */
  transition: padding .3s cubic-bezier(.2,.7,.3,1), background .25s ease, box-shadow .25s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); /* own compositing layer = stable scroll */
}
.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Compact + opaque state — once user has scrolled past the natural top */
.site-header.is-scrolled {
  padding: 10px 80px;
  /* Solid background — no backdrop-filter on mobile/desktop sticky. */
  background: rgb(11, 6, 3);
  box-shadow:
    0 1px 0 color-mix(in oklab, var(--ink, #f5ead2) 15%, transparent),
    0 10px 30px rgba(0,0,0,0.4);
}
/* Re-enable the glass effect only on devices that handle it well (desktop
   with hover + fine pointer) where it's a pure compositing win. */
@media (hover: hover) and (pointer: fine) {
  .site-header.is-scrolled {
    background: rgba(11, 6, 3, 0.92);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }
}
.site-header.is-scrolled .header-logo {
  width: 62px; height: 62px;
  padding: 4px;
  box-shadow:
    0 0 0 1.5px #1a1a1a,
    0 0 0 4px #ffffff,
    0 0 0 5.5px #1a1a1a,
    0 6px 18px rgba(0,0,0,0.55);
}


/* ============================================================
   RESPONSIVE — tablet + mobile
   Overrides inline JSX styles via attribute selectors + !important.
   ============================================================ */

html, body { overflow-x: clip; }
.drops-page { max-width: 100%; overflow-x: clip; }

/* Prevent iOS rubber-banding from cascading scroll events into ancestor
   compositors — also makes scroll-lock for the burger overlay actually stick. */
html, body { overscroll-behavior-y: none; }

/* Hide skate-deck cursor on touch devices (no hover anyway) */
@media (hover: none) and (pointer: coarse) {
  .drops-page, .drops-page * { cursor: auto !important; }
}

/* ───────── TABLET ≤ 1024px ───────── */
@media (max-width: 1024px) {
  .section { padding: 64px 40px !important; }

  /* Header */
  .site-header { padding: 18px 32px; }
  .site-header.is-scrolled { padding: 10px 32px; }
  .site-header-inner { gap: 16px; }
  .header-logo { width: 88px; height: 88px; padding: 5px;
    box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 4px #fff, 0 0 0 5.5px #1a1a1a, 0 10px 24px rgba(0,0,0,.5); }
  .site-header.is-scrolled .header-logo { width: 52px; height: 52px; padding: 3px;
    box-shadow: 0 0 0 1.5px #1a1a1a, 0 0 0 3px #fff, 0 0 0 4.5px #1a1a1a, 0 6px 18px rgba(0,0,0,.55); }
  .hero-nav-side { font-size: 14px; gap: 16px; }
  .hero-nav-side a[style*="24px"] { font-size: 16px !important; }

  /* Collapse 2-col section layouts */
  .section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .section [style*="position: sticky"] { position: static !important; }

  /* Hero */
  .hero { min-height: auto !important; padding: 32px 32px 56px !important; }
  .hero-headline { font-size: 96px !important; }
  .hero-content > p { font-size: 18px !important; }

  /* Section headlines — shrink them all */
  .section h2.display { font-size: 64px !important; line-height: 0.95 !important; }

  /* 3-column grids → 2 columns */
  .section [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer 4-col → 2-col */
  .section [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Menu select grid */
  .menu-select-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .menu-select-title { font-size: 80px !important; }

  /* Info section 2-col grid (map + info) */
  .section > div[style*="grid-template-columns: 1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .section iframe { height: 380px !important; }

  .section iframe { height: 100% !important; }
  .section div[style*="height: 520"] { height: 380px !important; }

  /* Marquee speed/font */
  .marquee { font-size: 32px !important; }
  /* Tablet menu hero shrink */
  .menu-hero { padding: 40px 32px 24px !important; }
  .menu-hero-title { font-size: 88px !important; }
  .menu-hero-script { font-size: 38px !important; }
}

/* ───────── MOBILE ≤ 640px ───────── */
@media (max-width: 640px) {
  .section { padding: 40px 18px !important; }

  /* Header — burger nav on mobile */
  .site-header { padding: 10px 14px; }
  .site-header.is-scrolled { padding: 8px 14px; }
  .site-header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    grid-template-columns: none !important;
  }
  .header-logo { width: 64px; height: 64px; padding: 3px;
    box-shadow: 0 0 0 1.5px #1a1a1a, 0 0 0 3px #fff, 0 0 0 4.5px #1a1a1a, 0 5px 14px rgba(0,0,0,.5);
    order: 0;
    margin: 0 auto;
  }
  .site-header.is-scrolled .header-logo { width: 52px; height: 52px; padding: 2px; }

  /* Hide inline nav, show burger */
  .hero-nav-side { display: none !important; }
  .burger-btn { display: inline-flex !important; }

  /* Reserve symmetric space on the left so the centered logo stays centered */
  .site-header-inner::before {
    content: "";
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  /* Hero doesn't need extra top padding — header is compact now */
  .hero { padding-top: 80px !important; }

  /* Force ALL grids in sections to single column */
  .section [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* Stat cards row: keep 3-col but tight */
  .section [style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 20"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  /* Footer wants 2-col not 1 so the lists don't stack tediously */
  .section [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero */
  .hero { padding: 80px 14px 32px !important; min-height: auto !important; }
  .hero-content { padding: 24px 0 32px !important; gap: 18px !important; }
  .hero-headline {
    font-size: clamp(36px, 11.5vw, 56px) !important;
    line-height: 0.92 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
  .hero-headline > span { white-space: nowrap; }
  .hero-content > p { font-size: 16px !important; line-height: 1.5 !important; max-width: 100% !important; }
  .hero-content p .script { font-size: 22px !important; }

  /* Headlines — shrink all big display sizes; clamp w/ viewport so they always fit */
  .section h2.display {
    font-size: clamp(28px, 10vw, 44px) !important;
    line-height: 1 !important;
    margin: 12px 0 16px !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    text-wrap: balance;
  }
  .menu-select-title { font-size: 48px !important; }
  .menu-select-sub { font-size: 16px !important; margin-bottom: 32px !important; }

  /* Big inline font sizes — shrink the worst offenders */
  [style*="font-size: 168px"] { font-size: 54px !important; }
  [style*="font-size: 144px"] { font-size: 48px !important; }
  [style*="font-size: 120px"] { font-size: 40px !important; }
  [style*="font-size: 112px"] { font-size: 40px !important; }
  [style*="font-size: 96px"]  { font-size: 40px !important; }
  [style*="font-size: 88px"]  { font-size: 38px !important; }
  [style*="font-size: 80px"]  { font-size: 34px !important; }
  [style*="font-size: 72px"]  { font-size: 32px !important; }
  [style*="font-size: 64px"]  { font-size: 30px !important; }
  [style*="font-size: 56px"]  { font-size: 28px !important; }
  [style*="font-size: 48px"]  { font-size: 26px !important; }
  [style*="font-size: 42px"]  { font-size: 24px !important; }
  [style*="font-size: 36px"]  { font-size: 22px !important; }
  [style*="font-size: 34px"]  { font-size: 22px !important; }
  [style*="font-size: 28px"]  { font-size: 20px !important; }
  [style*="font-size: 26px"]  { font-size: 18px !important; }

  /* Marquee */
  .marquee { font-size: 22px !important; padding: 16px 0 !important; }

  /* Buttons */
  .btn { font-size: 12px !important; padding: 11px 16px !important; letter-spacing: 0.08em; }

  /* Event/tap rows — kill rigid column layouts */
  .section a[style*="120px 1fr auto"],
  .section a[style*="grid-template-columns: 120px"] {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    gap: 8px !important;
    padding: 20px 0 !important;
  }

  /* Gallery profile header — stack centered */
  .section [style*="grid-template-columns: auto 1fr auto"] {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
  }

  /* Info: map iframe — also shrink its parent container (inline height: 520) */
  .section iframe { height: 100% !important; }
  .section div[style*="height: 520"] { height: 280px !important; }

  /* Tap cards inner padding */
  .section [style*="padding: 28px"] { padding: 18px !important; }

  /* Footer */
  .section [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] > div { width: 100% !important; }
  .section img[alt*="Drop"][src*="logo-white"] { width: 200px !important; }

  /* Menu select cards */
  .menu-select-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .menu-card { padding: 24px !important; }
  .menu-card-title { font-size: 32px !important; }
  .menu-card-icon { width: 70px !important; height: 70px !important; }
  .menu-card-flag svg { width: 48px !important; height: 32px !important; }
  .menu-card-stamp { width: 56px !important; height: 56px !important; font-size: 9px !important; }
  .time-alert { font-size: 9px !important; padding: 6px 10px !important; top: 14px !important; right: 16px !important; }

  /* Menu page title — shrink to fit smartphone */
  .menu-hero { padding: 32px 16px 16px !important; text-align: center; }
  .menu-hero-title { font-size: 56px !important; line-height: 0.95 !important; }
  .menu-hero-script {
    position: static !important;
    display: block !important;
    margin: 6px 0 0 !important;
    right: auto !important;
    bottom: auto !important;
    font-size: 28px !important;
    transform: none !important;
    text-align: center;
  }
  .menu-hero-sub { font-size: 15px !important; max-width: 100% !important; }

  /* Menu page item rows */
  .menu-item { padding: 16px 0 !important; }
  .menu-item-name { font-size: 18px !important; }
  .menu-item-desc { font-size: 13px !important; }
  .menu-item-price { font-size: 17px !important; min-width: 70px !important; }
  .menu-body { padding: 24px 16px !important; }

  /* Decor scale down — leaves shouldn't dominate phone */
  .jungle-backdrop { opacity: 0.5 !important; }
}

/* ───────── SMALL MOBILE ≤ 380px ───────── */
@media (max-width: 380px) {
  .header-logo { width: 56px; height: 56px; }
}

/* ============================================================
   BURGER BUTTON + MOBILE FULLSCREEN MENU
   ============================================================ */

/* Burger button — hidden on desktop, only shown on mobile via the
   media-query override above */
.burger-btn {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink, #f5ead2);
  cursor: pointer;
  flex: 0 0 44px;
  position: relative;
  z-index: 1002;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.burger-btn:hover { background: rgba(255,255,255,0.08); }
.burger-btn:active { transform: scale(0.94); }

.burger-lines {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 14px;
}
.burger-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.65,.05,.36,1), top .25s ease, opacity .2s ease;
}
.burger-lines span:nth-child(1) { top: 0; }
.burger-lines span:nth-child(2) { top: 6px; }
.burger-lines span:nth-child(3) { top: 12px; }

.burger-btn.is-open .burger-lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.burger-btn.is-open .burger-lines span:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open .burger-lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Fullscreen overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  /* Use small viewport height — accounts for iOS Safari's address bar so the
     overlay doesn't extend behind it, leaving an unreachable footer. */
  height: 100svh;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  background: var(--bg, #1a0e07);
  color: var(--ink, #f5ead2);
  /* Subtle paper-grain texture matches the rest of the site */
  background-image:
    radial-gradient(circle at 20% 12%, rgba(232,169,74,0.10), transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(106,176,229,0.10), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.015) 0 2px,
      transparent 2px 6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.7,.3,1), visibility .35s;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: max(18px, env(safe-area-inset-top)) max(22px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Top row inside overlay: logo + close button */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}
.mobile-menu-logo {
  display: inline-flex;
  width: 64px;
  height: 64px;
  padding: 3px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px #1a1a1a,
    0 0 0 3px #fff,
    0 0 0 4.5px #1a1a1a,
    0 5px 14px rgba(0,0,0,.5);
  background: #1a1a1a;
}
.mobile-menu-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.mobile-menu-close {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink, #f5ead2);
  font-family: inherit;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.mobile-menu-close span { transform: translateY(-2px); }
.mobile-menu-close:hover { background: rgba(255,255,255,0.08); }
.mobile-menu-close:active { transform: scale(0.94); }

/* The main vertical link list — large display typography */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.mobile-menu-nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 6px;
  color: var(--ink, #f5ead2);
  text-decoration: none;
  font-family: "Alfa Slab One", "DM Serif Text", Georgia, serif;
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1;
  letter-spacing: 0.005em;
  border-bottom: 1px solid color-mix(in oklab, var(--ink, #f5ead2) 18%, transparent);
  transition: color .2s ease, padding-left .25s ease, background .2s ease;
}
.mobile-menu-nav a:first-child {
  border-top: 1px solid color-mix(in oklab, var(--ink, #f5ead2) 18%, transparent);
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  color: var(--ochre, #ffb648);
  padding-left: 14px;
}
.mobile-menu-num {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  opacity: 0.55;
  flex: 0 0 auto;
  transform: translateY(-2px);
}
.mobile-menu-label {
  flex: 1;
}
.mobile-menu-nav a.is-cta .mobile-menu-label {
  color: var(--ochre, #ffb648);
}

/* Stagger-in animation when overlay opens */
.mobile-menu .mobile-menu-nav a {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.2,.7,.3,1),
    color .2s ease,
    padding-left .25s ease,
    background .2s ease;
}
.mobile-menu.is-open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu-nav a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(3) { transition-delay: .20s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(6) { transition-delay: .38s; }

/* Footer of overlay — small line with WhatsApp + place */
.mobile-menu-foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed color-mix(in oklab, var(--ink, #f5ead2) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.mobile-menu-foot a {
  color: var(--ochre, #ffb648);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.mobile-menu-foot-sep { opacity: 0.5; }
.mobile-menu-foot-place { opacity: 0.7; }

/* Don't let the overlay show on desktop, ever, even if state got stuck */
@media (min-width: 641px) {
  .mobile-menu { display: none !important; }
}
