/* ============================================================
   MOON MUNCHIES v3
   Vibe: Late-night NYC spot. Neon signs on dark walls.
         Bold, alive, confident. Grown-up party energy.
   Fonts: Bebas Neue (headlines) + Cabinet Grotesk (body)
   Colors: Midnight blue, cream, soft yellow, neon pink
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Palette */
  --night:      #0b0d18;
  --night-mid:  #10132200;
  --navy:       #0b0d18;
  --navy-lift:  #181d35;
  --navy-card:  #1a1f38;
  --cream:      #f5eedc;
  --cream-dim:  #c9bfa8;
  --cream-mute: #7a7264;
  --yellow:     #f0d060;
  --yellow-dim: #c8a930;
  --pink:       #ff2d78;
  --pink-glow:  rgba(255,45,120,0.35);
  --pink-subtle:rgba(255,45,120,0.08);
  --yellow-glow:rgba(240,208,96,0.3);
  --white:      #ffffff;

  /* Typography */
  --font-head: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing / misc */
  --nav-h:   68px;
  --bar-h:   0px;
  --t:       0.22s;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --radius:  4px;
  --radius-lg: 12px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--night);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* Subtle noise grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ── Type ─────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}
h1 { font-size: clamp(4.5rem, 12vw, 10rem); }
h2 { font-size: clamp(2.8rem,  6vw,  5.5rem); }
h3 { font-size: clamp(1.8rem,  3vw,  2.8rem); }

p { max-width: 62ch; }

.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout ───────────────────────────────────────────────── */
.container { width: min(1160px, 92%); margin-inline: auto; }
.section   { padding-block: clamp(64px, 9vw, 120px); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-pink {
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--pink);
  box-shadow: 0 0 20px var(--pink-glow), 0 0 60px rgba(255,45,120,0.15);
}
.btn-pink:hover {
  background: transparent;
  color: var(--pink);
  box-shadow: 0 0 30px var(--pink-glow), 0 0 80px rgba(255,45,120,0.2);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--night);
  border: 2px solid var(--yellow);
  font-weight: 700;
  box-shadow: 0 0 20px var(--yellow-glow);
}
.btn-yellow:hover {
  background: transparent;
  color: var(--yellow);
  box-shadow: 0 0 30px var(--yellow-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,238,220,0.3);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245,238,220,0.05);
}

/* ── Neon text effect ─────────────────────────────────────── */
.neon-pink {
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink), 0 0 40px rgba(255,45,120,0.5);
}
.neon-yellow {
  color: var(--yellow);
  text-shadow: 0 0 10px var(--yellow), 0 0 40px rgba(240,208,96,0.5);
}

/* ── Announce bar ─────────────────────────────────────────── */
.announce {
  height: var(--bar-h);
  background: var(--pink);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.announce__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.announce__track span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding-inline: 0.5rem;
}
.announce__track span::before {
  content: '✦';
  margin-right: 0.75rem;
  opacity: 0.7;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--bar-h); left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,13,24,0.95);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(245,238,220,0.07);
}
.nav__inner {
  width: min(1160px, 92%);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: color var(--t);
}
.nav__logo-img {
  display: block;
  height: 44px;
  width: auto;
}
.nav__logo:hover { color: var(--yellow); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
  transition: right var(--t) var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.active::after { right: 0; }

.nav__cta { margin-left: 1.5rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__mobile {
  display: none;
  position: fixed; inset: 0;
  background: var(--night);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.nav__mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--font-head);
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--t);
  line-height: 1;
}
.nav__mobile a:hover { color: var(--pink); text-shadow: 0 0 20px var(--pink-glow); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--bar-h) + var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Full-bleed hero photo + overlays (first layer = top: draws a clear darken scrim on the cookie image) */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 12, 0.52) 0%, rgba(4, 6, 12, 0.45) 45%, rgba(4, 6, 12, 0.58) 100%),
    radial-gradient(ellipse 75% 60% at 50% 45%, rgba(255,255,255,0.03) 0%, transparent 65%),
    radial-gradient(ellipse 120% 95% at 50% 50%, transparent 38%, rgba(7,9,18,0.72) 72%, rgba(7,9,18,0.96) 100%),
    linear-gradient(180deg, rgba(10,12,22,0.35) 0%, rgba(10,12,22,0.12) 42%, rgba(10,12,22,0.5) 100%),
    url("../images/hero-background.jpg") center / cover no-repeat;
  pointer-events: none;
}

/* Horizontal scan line */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,45,120,0.4) 30%, rgba(255,45,120,0.4) 70%, transparent 100%);
  top: 40%;
  pointer-events: none;
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.6s 0.05s var(--ease) forwards;
}
.hero__kicker::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
}

.hero__title {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.6s 0.12s var(--ease) forwards;
}
.hero__title .line2 {
  display: block;
  color: var(--yellow);
  text-shadow: 0 0 20px var(--yellow-glow), 0 0 60px rgba(240,208,96,0.2);
  -webkit-text-stroke: 1px var(--yellow-dim);
}

.hero__sub {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.6s 0.2s var(--ease) forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.6s 0.28s var(--ease) forwards;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fade-up 0.6s 0.36s var(--ease) forwards;
}
.hero__proof-stars {
  display: flex; gap: 2px;
}
.hero__proof-stars span {
  width: 12px; height: 12px;
  background: var(--yellow);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  box-shadow: 0 0 4px var(--yellow-glow);
}
.hero__proof-text { font-size: 0.82rem; color: var(--cream-mute); }
.hero__proof-text strong { color: var(--cream); }

/* Home hero: headline + proof use default styles; subhead larger cream with soft shadow */
body.home .hero__sub {
  color: var(--white);
  font-size: 1.14rem;
  font-weight: 500;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 14px rgba(0, 0, 0, 0.35);
}
body.home .hero__sub strong {
  color: var(--pink);
  font-weight: 700;
  text-shadow: 0 0 14px var(--pink-glow), 0 1px 3px rgba(0, 0, 0, 0.5);
}
body.home .nav:not(.scrolled) .nav__links a {
  font-size: 0.8rem;
}

/* Hero visual panel */
.hero__panel {
  position: relative;
  opacity: 0;
  animation: fade-in 0.8s 0.3s var(--ease) forwards;
}

.hero__sign {
  background: var(--navy-card);
  border: 1.5px solid rgba(255,45,120,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,45,120,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Neon glow border effect */
.hero__sign::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,45,120,0.3), transparent 50%, rgba(240,208,96,0.15));
  pointer-events: none;
}

.hero__sign-icon {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 16px rgba(255,45,120,0.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__sign-title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
  text-shadow: 0 0 12px var(--pink-glow), 0 0 30px rgba(255,45,120,0.3);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.hero__sign-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 2rem;
}

.hero__sign-hours {
  border-top: 1px solid rgba(245,238,220,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(245,238,220,0.05);
}
.hours-line:last-child { border-bottom: none; }
.hours-line .day { color: var(--cream-mute); font-weight: 400; }
.hours-line .time { color: var(--yellow); font-weight: 600; }
.hours-line .time.late {
  color: var(--pink);
  text-shadow: 0 0 6px rgba(255,45,120,0.4);
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--navy-card);
  border: 1.5px solid rgba(245,238,220,0.1);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  animation: badge-drift 5s ease-in-out infinite;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.float-badge--1 { top: -1rem; right: -2rem; animation-delay: 0s; }
.float-badge--2 { bottom: 2rem; left: -2.5rem; animation-delay: -2.5s; }

@keyframes badge-drift {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

/* ── Stats ────────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  border-block: 1px solid rgba(245,238,220,0.06);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px;
}
.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(245,238,220,0.06);
  transition: background var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,45,120,0.04); }
.stat-item__num {
  font-family: var(--font-head);
  font-size: 3rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ── Menu Cards ───────────────────────────────────────────── */
.menu-section { background: var(--night); }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}
.sec-head__right a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t);
}
.sec-head__right a:hover { gap: 0.7rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.menu-card {
  background: var(--navy-card);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.menu-card:hover { background: var(--navy-lift); }

.menu-card--wide { grid-column: span 2; }

.menu-card__img {
  aspect-ratio: 4/3;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Real photo layer (used with menu-card__img); keeps images visible under the gradient */
.menu-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.menu-card--wide .menu-card__img { aspect-ratio: 18/8; }
.menu-card__img--drinks {
  background: var(--navy);
}
.menu-img--cake-classic {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Classic-Cookie-Cake.webp") center / cover no-repeat;
}
.menu-img--cake-double-chocolate {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Double-Chocolate-Cookie-Cake.webp") center / cover no-repeat;
}
.menu-img--cake-birthday {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Birthday-Cookie-Cake.webp") center / cover no-repeat;
}
.menu-img--brownie-fudge {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Fudge-Brownie.webp") center / cover no-repeat;
}
.menu-img--brownie-cosmic-oreo {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Cosmic-Oreo-Brownie.webp") center / cover no-repeat;
}
.menu-img--brownie-pb-cup {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Peanut-Butter-Cup-Brownie.webp") center / cover no-repeat;
}
.menu-img--brownie-caramel-pecan {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Caramel-Pecan-Brownie.webp") center / cover no-repeat;
}
.menu-img--brownie-nutty-cubes {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Nutty-Chocolate-Fudge-Cubes.webp") center / cover no-repeat;
}
.menu-img--birthday-cookie-box {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Birthday-Cookie-Box.webp") center / cover no-repeat;
}
.menu-img--drinks {
  background: linear-gradient(to top, rgba(11,13,24,0.45) 0%, rgba(11,13,24,0.1) 60%), url("../images/menu-items/fixed/Drinks.webp") center / cover no-repeat;
}
.menu-img--event-small {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Cookie-Tray.webp") center / cover no-repeat;
}
.menu-img--event-large {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Mixed-Dessert-Tray.webp") center / cover no-repeat;
}

/* Home menu preview image assignments */
.menu-img--home-cookie-flavors {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Classic-Chocolate-Chip-Cookie.webp") center / cover no-repeat;
}
.menu-img--home-birthday-box {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Birthday-Cookie-Box.webp") center / cover no-repeat;
}
.menu-img--home-tray-small {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Cookie-Tray.webp") center / cover no-repeat;
}
.menu-img--home-cookie-cake {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Double-Chocolate-Cookie-Cake.webp") center / cover no-repeat;
}
.menu-img--home-tray-large {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Mixed-Dessert-Tray.webp") center / cover no-repeat;
}

/* Cookies page image assignments */
.menu-img--cookie-classic {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Classic-Chocolate-Chip-Cookie.webp") center / cover no-repeat;
}
.menu-img--cookie-mm {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Midnight-M%26M-Crunch-Cookie.webp") center / cover no-repeat;
}
.menu-img--cookie-pb-swirl {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Peanut-Butter-Galaxy-Swirl-Cookie.webp") center / cover no-repeat;
}
/* File on disk uses U+2019 (’), not ASCII apostrophe — must encode as %E2%80%99 */
.menu-img--cookie-smores {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/S%E2%80%99mores-Cookie.webp") center / cover no-repeat;
}
.menu-img--cookie-cream {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Cookies-%26-Cream-Cookie.webp") center / cover no-repeat;
}
.menu-img--cookie-birthday {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Birthday-Cake-Cookie.webp") center / cover no-repeat;
}
.menu-img--cookie-brown-butter {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Brown-Butter-Sea-Salt-Cookie.webp") center / cover no-repeat;
}
.menu-img--cookie-caramel-chunk {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Caramel-Chocolate-Chunk-Cookie.webp") center / cover no-repeat;
}
.menu-img--cookie-double-fudge {
  background: linear-gradient(to top, rgba(11,13,24,0.5) 0%, rgba(11,13,24,0.12) 60%), url("../images/menu-items/fixed/Double-Chocolate-Fudge-Cookie.webp") center / cover no-repeat;
}
.menu-card__img::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--navy-card) 0%, transparent 50%);
}
.menu-card__img-ph {
  opacity: 0.12;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--cream);
}
.menu-card__img-ph span {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
}

/* Neon tag */
.menu-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 12px var(--pink-glow);
}
.menu-card__tag--yellow {
  background: var(--yellow);
  color: var(--night);
  box-shadow: 0 0 10px var(--yellow-glow);
}

.menu-card__body {
  padding: 1.35rem 1.45rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card__name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.menu-card__desc {
  font-size: 0.84rem;
  color: var(--cream-mute);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.menu-card__list {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.9rem;
}
.menu-card__list li {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.45;
  border-bottom: 1px solid rgba(245,238,220,0.08);
  padding-bottom: 0.3rem;
}
.menu-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}
.menu-card__foot--split {
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu-card__foot--split .menu-card__cta {
  flex: 1 1 auto;
  min-width: 7.5rem;
  justify-content: center;
}
.menu-card__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(240,208,96,0.3);
}
.menu-card__cta {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink);
  display: flex; align-items: center; gap: 0.35rem;
  transition: gap var(--t), text-shadow var(--t);
}
.menu-card:hover .menu-card__cta {
  gap: 0.6rem;
  text-shadow: 0 0 8px var(--pink-glow);
}

/* ── How It Works ─────────────────────────────────────────── */
.how { background: var(--navy); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.step {
  background: var(--navy-card);
  padding: 2.5rem 2rem;
  transition: background var(--t);
  position: relative;
}
.step:hover { background: var(--navy-lift); }
.step__num {
  font-family: var(--font-head);
  font-size: 5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--pink);
  text-shadow: 0 0 20px var(--pink-glow);
  opacity: 0.25;
  display: block;
  margin-bottom: 1.25rem;
  transition: opacity var(--t);
}
.step:hover .step__num { opacity: 0.5; }
.step__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.step__desc {
  font-size: 0.875rem;
  color: var(--cream-mute);
  line-height: 1.7;
}
.step__desc a { color: var(--pink); }

/* ── Delivery ─────────────────────────────────────────────── */
.delivery { background: var(--night); }
.delivery__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.delivery__info {
  background: var(--navy-card);
  padding: 3rem;
}
.delivery__info p {
  font-size: 0.9rem; color: var(--cream-mute);
  line-height: 1.8; margin-bottom: 2rem;
}
.zone-list { margin-bottom: 2.5rem; }
.zone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245,238,220,0.06);
  font-size: 0.88rem;
}
.zone-item:last-child { border-bottom: none; }
.zone-item__name { color: var(--cream); font-weight: 500; }
.zone-item__tag {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink);
}
.delivery__visual {
  background:
    linear-gradient(to top, rgba(11,13,24,0.35) 0%, rgba(11,13,24,0.08) 60%),
    url("../images/map-astoria.png") center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px; position: relative;
}
.delivery__visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,45,120,0.07) 0%, transparent 65%);
}
.delivery__visual-inner {
  opacity: 0.15; text-align: center;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--navy); }
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.reviews-score {
  display: flex; align-items: baseline; gap: 0.5rem;
}
.reviews-score__num {
  font-family: var(--font-head);
  font-size: 5rem; letter-spacing: 0.03em;
  color: var(--yellow);
  text-shadow: 0 0 20px var(--yellow-glow);
  line-height: 1;
}
.reviews-score__sub {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream-mute);
  display: block; margin-top: 0.3rem;
}
.review-stars {
  display: flex; gap: 3px; margin-bottom: 0.25rem;
}
.review-stars span {
  width: 10px; height: 10px; background: var(--yellow);
  box-shadow: 0 0 4px var(--yellow-glow);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}
.review-card {
  background: var(--navy-card);
  padding: 2rem;
  transition: background var(--t);
}
.review-card:hover { background: var(--navy-lift); }
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cream-dim);
  margin: 0.75rem 0 1.5rem;
  font-style: italic;
}
.review-card__name {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream-mute);
}
.review-card__name strong {
  color: var(--cream); display: block;
  font-size: 0.82rem; margin-bottom: 0.1rem;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--night);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245,238,220,0.06);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,45,120,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-banner__inner h2 { margin-bottom: 1rem; }
.cta-banner__inner p {
  font-size: 1rem;
  color: var(--cream-mute);
  margin: 0 auto 2.5rem;
  max-width: 46ch;
}
.cta-banner__actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--bar-h) + var(--nav-h) + clamp(3.5rem, 7vw, 7rem));
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
  background: var(--navy);
  border-bottom: 1px solid rgba(245,238,220,0.06);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 70% at 5% 60%, rgba(255,45,120,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero h1 { margin-top: 0.75rem; }
.page-hero p {
  font-size: 1rem; color: var(--cream-mute);
  line-height: 1.8; margin-top: 1rem;
}

/* ── Menu Page: filter ────────────────────────────────────── */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  border-bottom: none;
  margin-bottom: 2rem;
  overflow-x: visible;
  scrollbar-width: none;
}
.menu-filter::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 0.62rem 1rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-mute);
  background: rgba(245,238,220,0.02);
  border: 1px solid rgba(245,238,220,0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.filter-btn:hover { color: var(--cream); }
.filter-btn.active {
  color: var(--pink);
  border-color: rgba(255,45,120,0.45);
  background: rgba(255,45,120,0.08);
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.full-menu-grid .menu-card {
  border: 1px solid rgba(245,238,220,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.flavor-note {
  margin-top: 3.5rem;
  padding: 2.25rem;
  border: 1.5px solid rgba(255,45,120,0.2);
  background: var(--pink-subtle);
  border-radius: var(--radius);
}
.flavor-note p {
  font-size: 0.95rem; color: var(--cream-dim);
  line-height: 1.75; margin-bottom: 1.5rem;
}
.flavor-note strong { color: var(--pink); }

/* ── About ────────────────────────────────────────────────── */
.story-split {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.story-img {
  background: var(--navy-card);
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.story-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(255,45,120,0.06) 0%, transparent 55%);
}
.story-img-ph {
  opacity: 0.12; text-align: center;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream);
}
.story-year-bg {
  position: absolute; bottom: 1.5rem; right: 2rem;
  font-family: var(--font-head);
  font-size: 6rem; letter-spacing: 0.02em;
  color: rgba(255,45,120,0.1);
  text-shadow: 0 0 30px rgba(255,45,120,0.1);
  line-height: 1;
}
.story-text {
  background: var(--navy-card);
  padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.story-text h2 { margin: 0.75rem 0 1.75rem; }
.story-text p {
  font-size: 0.9rem; color: var(--cream-mute);
  line-height: 1.85; margin-bottom: 1.2rem;
}

.values-section { background: var(--navy); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.value-card {
  background: var(--navy-card);
  padding: 2.25rem;
  transition: background var(--t);
}
.value-card:hover { background: var(--navy-lift); }
.value-card__num {
  font-family: var(--font-head);
  font-size: 1rem; letter-spacing: 0.06em;
  color: var(--pink); display: block; margin-bottom: 1.25rem;
  text-shadow: 0 0 8px var(--pink-glow);
}
.value-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 0.6rem; line-height: 1;
}
.value-card__desc { font-size: 0.86rem; color: var(--cream-mute); line-height: 1.75; }

.nina-section { background: var(--night); }
.nina-split {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.nina-img {
  background:
    linear-gradient(to top, rgba(11,13,24,0.35) 0%, rgba(11,13,24,0.08) 60%),
    url("../images/nina-vega.png") center top / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem; padding: 2.5rem;
}
.nina-img-ph {
  opacity: 0.12; text-align: center;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream);
}
.nina-text {
  background: var(--navy-card);
  padding: 3rem;
}
.nina-text h2 { margin: 0.5rem 0 0.3rem; }
.nina-role {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink); display: block; margin-bottom: 1.75rem;
}
.nina-text p {
  font-size: 0.9rem; color: var(--cream-mute);
  line-height: 1.85; margin-bottom: 1.2rem;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-section { background: var(--night); }
.contact-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 1.5px;
  background: rgba(245,238,220,0.05);
  border: 1.5px solid rgba(245,238,220,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.contact-info-col {
  background: var(--navy-card);
  padding: 3rem;
}
.contact-info-col > p {
  font-size: 0.9rem; color: var(--cream-mute);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.contact-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(245,238,220,0.06);
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 2.5rem; }
.contact-item__label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 0.35rem;
}
.contact-item__val { font-size: 0.92rem; color: var(--cream); }
.contact-item__val a { transition: color var(--t); }
.contact-item__val a:hover { color: var(--pink); }

.hours-box {
  border: 1px solid rgba(245,238,220,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(245,238,220,0.05);
  font-size: 0.83rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--cream-mute); }
.hours-row .time { color: var(--yellow); font-weight: 500; }
.hours-row .time.pink-time {
  color: var(--pink);
  text-shadow: 0 0 6px rgba(255,45,120,0.3);
}
.hours-row .closed { color: rgba(245,238,220,0.2); }

.contact-form-col {
  background: var(--night);
  padding: 3rem;
}
.contact-form-col > h3 {
  font-family: var(--font-head);
  font-size: 2rem; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 0.4rem; line-height: 1;
}
.contact-form-col > .form-sub {
  font-size: 0.83rem; color: var(--cream-mute); margin-bottom: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-mute); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--navy-card);
  border: 1.5px solid rgba(245,238,220,0.09);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 400;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-card); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,238,220,0.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--font-head);
  font-size: 2.5rem; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink); text-shadow: 0 0 16px var(--pink-glow);
  margin-bottom: 0.75rem;
}
.form-success p { font-size: 0.9rem; color: var(--cream-mute); margin-inline: auto; }

/* ── Cart drawer + checkout simulation ────────────────────── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
}
.cart-drawer.open { display: block; }
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,9,18,0.72);
  backdrop-filter: blur(4px);
}
.cart-drawer__panel {
  position: relative;
  width: min(640px, 94%);
  max-height: 90svh;
  overflow: auto;
  margin: 4vh auto 0;
  background: var(--navy-card);
  border: 1px solid rgba(245,238,220,0.12);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
}
.cart-drawer__close {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  color: var(--cream-mute);
  font-size: 1.5rem;
  line-height: 1;
}
.cart-drawer__close:hover { color: var(--cream); }

.cart-empty {
  font-size: 0.9rem;
  color: var(--cream-mute);
  padding: 1rem 0 0.35rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.8rem 0 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(245,238,220,0.1);
  border-radius: 8px;
  background: rgba(245,238,220,0.02);
}
.cart-item strong {
  display: block;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
}
.cart-item span { color: var(--cream-mute); font-size: 0.82rem; }

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.cart-item__controls button {
  border: 1px solid rgba(245,238,220,0.18);
  color: var(--cream);
  background: transparent;
  border-radius: 6px;
  height: 28px;
  min-width: 28px;
  padding: 0 0.45rem;
}
.cart-item__controls button:hover {
  border-color: rgba(255,45,120,0.48);
  color: var(--pink);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(245,238,220,0.12);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.cart-summary strong { color: var(--yellow); font-weight: 600; }

.checkout-form h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}

/* Hide "add photo" helper overlays once placeholder image is set */
.menu-card__img-ph,
.story-img-ph,
.nina-img-ph,
.delivery__visual-inner {
  opacity: 0;
  pointer-events: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(245,238,220,0.06);
  padding-block: 5rem 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(245,238,220,0.06);
  margin-bottom: 2.5rem;
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 1rem;
}
.footer__logo-img {
  display: block;
  height: 56px;
  width: auto;
}
.footer__brand p {
  font-size: 0.85rem; color: var(--cream-mute);
  line-height: 1.75; margin-bottom: 1.75rem; max-width: 28ch;
}
.footer__social { display: flex; gap: 1.25rem; }
.footer__social a {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-mute);
  transition: color var(--t);
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.footer__social a:hover { color: var(--pink); border-bottom-color: var(--pink); }

.footer__col h4 {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-mute); margin-bottom: 1.4rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer__col ul li a {
  font-size: 0.86rem; color: rgba(245,238,220,0.45);
  transition: color var(--t);
}
.footer__col ul li a:hover { color: var(--cream); }

.footer__bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: 0.73rem; color: rgba(245,238,220,0.22); }
.footer__hours { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__hours span { font-size: 0.7rem; color: rgba(245,238,220,0.28); }
.footer__hours strong { color: rgba(240,208,96,0.55); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .story-split, .nina-split, .delivery__body, .contact-split { grid-template-columns: 1fr; }
  .story-img, .nina-img { min-height: 260px; }
  .nina-split { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .menu-grid, .full-menu-grid, .steps, .values-grid, .review-grid { grid-template-columns: 1fr; }
  .menu-card--wide { grid-column: span 1; }
  .menu-card--wide .menu-card__img { aspect-ratio: 4/3; }
  .menu-card__list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; }
  .hero__proof { flex-wrap: wrap; gap: 1rem; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
