/* ───────────────────────────────────────────────
   ASTERIA · Astoria — design tokens
   ─────────────────────────────────────────────── */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;

  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;

  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Switzer', 'Helvetica Neue', Arial, sans-serif;

  /* Gold gradient lifted from the logo */
  --gold-1: #f6efe2;
  --gold-2: #d9c6a6;
  --gold-3: #c3a983;
  --gold-gradient: linear-gradient(135deg, #f6efe2 0%, #d9c6a6 35%, #f2e8d6 60%, #c3a983 100%);
}

/* Dark — the default "supper club" theme */
:root,
[data-theme='dark'] {
  color-scheme: dark;
  --color-bg: oklch(0.15 0.02 260);
  --color-surface: oklch(0.18 0.022 260);
  --color-surface-2: oklch(0.21 0.024 260);
  --color-surface-offset: oklch(0.13 0.018 260);
  --color-divider: oklch(0.3 0.02 260 / 0.55);
  --color-border: oklch(0.82 0.06 80 / 0.22);
  --color-text: oklch(0.93 0.015 80);
  --color-text-muted: oklch(0.72 0.02 80);
  --color-text-faint: oklch(0.55 0.02 80);
  --color-text-inverse: oklch(0.15 0.02 260);
  --color-primary: #d9c6a6;
  --color-primary-hover: #f2e8d6;
  --color-primary-active: #c3a983;
  --color-on-primary: oklch(0.17 0.02 260);
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 24px 64px oklch(0 0 0 / 0.55);
  --hero-overlay: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 55%,
    oklch(0.15 0.02 260 / 0.9) 100%
  );
}

/* Light — daytime "cream & gold" */
[data-theme='light'] {
  color-scheme: light;
  --color-bg: #f6f2ea;
  --color-surface: #fbf8f2;
  --color-surface-2: #ffffff;
  --color-surface-offset: #efe9dd;
  --color-divider: oklch(0.85 0.03 80 / 0.7);
  --color-border: oklch(0.6 0.08 80 / 0.35);
  --color-text: #1c1b22;
  --color-text-muted: #5b5750;
  --color-text-faint: #8f8a80;
  --color-text-inverse: #fbf8f2;
  --color-primary: #8a6b3a;
  --color-primary-hover: #6e5430;
  --color-primary-active: #55401f;
  --color-on-primary: #fbf8f2;
  --shadow-sm: 0 1px 2px oklch(0.3 0.03 80 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.3 0.03 80 / 0.12);
  --shadow-lg: 0 24px 64px oklch(0.3 0.03 80 / 0.18);
  --hero-overlay: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 55%,
    oklch(0.15 0.02 260 / 0.9) 100%
  );
}
[data-theme='light'] .gold-text {
  background: linear-gradient(135deg, #7a5c2e, #a8865a 50%, #7a5c2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ───────────────────────────────────────────────
   Utilities
   ─────────────────────────────────────────────── */
.container {
  width: min(100% - clamp(var(--space-5), 6vw, var(--space-16)), var(--content-wide));
  margin-inline: auto;
}
.container--narrow {
  max-width: var(--content-default);
}
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: var(--space-4);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
}
.lede {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-top: var(--space-5);
}
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 100;
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  top: var(--space-4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold-gradient);
  color: var(--color-on-primary);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-md);
}
.btn--primary:active {
  filter: brightness(0.96);
}
[data-theme='light'] .btn--primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
[data-theme='light'] .btn--primary:hover {
  background: var(--color-primary-hover);
  filter: none;
}
.btn--ghost {
  color: var(--color-text);
  border-color: var(--color-border);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ───────────────────────────────────────────────
   Header
   ─────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: var(--space-4);
  transition:
    background var(--transition-interactive),
    box-shadow var(--transition-interactive),
    padding var(--transition-interactive);
}
.header--scrolled {
  background: color-mix(in oklab, var(--color-bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-divider);
  padding-block: var(--space-3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
}
.brand img {
  height: 44px;
  width: auto;
}
[data-theme='light'] .brand img {
  filter: brightness(0.55) sepia(0.4) saturate(1.4);
}
.nav {
  display: none;
}
.nav ul {
  display: flex;
  gap: var(--space-6);
}
.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: var(--space-2) 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--color-primary);
  transition: right 260ms var(--ease-out);
}
.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current='true'] {
  color: var(--color-text);
}
.nav a:hover::after,
.nav a[aria-current='true']::after {
  right: 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.header__actions .btn {
  min-height: 40px;
  padding: var(--space-2) var(--space-5);
  display: none;
}
.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid transparent;
}
.icon-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-border);
}
.menu-toggle {
  display: inline-flex;
}
@media (min-width: 900px) {
  .nav {
    display: block;
  }
  .header__actions .btn {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: color-mix(in oklab, var(--color-bg) 96%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms var(--ease-out),
    visibility 260ms;
}
.drawer[data-open='true'] {
  opacity: 1;
  visibility: visible;
}
.drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer ul {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.drawer a:not(.btn) {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}
.drawer .btn {
  margin-top: auto;
}

/* ───────────────────────────────────────────────
   Hero
   ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 120% 70% at 50% 110%, oklch(0.2 0.03 260) 0%, transparent 60%),
    linear-gradient(180deg, oklch(0.1 0.015 260) 0%, oklch(0.14 0.02 260) 55%, oklch(0.11 0.02 260) 100%);
}
/* soft gold stage glow behind the logo */
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 38% 34% at 50% 40%, oklch(0.72 0.08 80 / 0.34) 0%, transparent 70%),
    radial-gradient(ellipse 70% 45% at 50% 102%, oklch(0.62 0.07 80 / 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 0% 50%, oklch(0.3 0.05 260 / 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 100% 50%, oklch(0.3 0.05 260 / 0.5) 0%, transparent 70%);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  to {
    opacity: 0.75;
    transform: scale(1.06);
  }
}
/* scattered star points, echoing the logo */
.hero__stars {
  position: absolute;
  inset: -10%;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 18%, oklch(0.9 0.04 80 / 0.9), transparent 60%),
    radial-gradient(1px 1px at 78% 12%, oklch(0.9 0.04 80 / 0.8), transparent 60%),
    radial-gradient(1.6px 1.6px at 88% 32%, oklch(0.92 0.05 80 / 0.9), transparent 60%),
    radial-gradient(1px 1px at 22% 62%, oklch(0.9 0.04 80 / 0.6), transparent 60%),
    radial-gradient(1.3px 1.3px at 64% 74%, oklch(0.9 0.04 80 / 0.7), transparent 60%),
    radial-gradient(1px 1px at 40% 28%, oklch(0.9 0.04 80 / 0.55), transparent 60%),
    radial-gradient(1.4px 1.4px at 8% 84%, oklch(0.9 0.04 80 / 0.7), transparent 60%),
    radial-gradient(1px 1px at 94% 66%, oklch(0.9 0.04 80 / 0.6), transparent 60%),
    radial-gradient(1.1px 1.1px at 54% 8%, oklch(0.9 0.04 80 / 0.7), transparent 60%),
    radial-gradient(1px 1px at 32% 90%, oklch(0.9 0.04 80 / 0.5), transparent 60%),
    radial-gradient(1.2px 1.2px at 70% 48%, oklch(0.9 0.04 80 / 0.5), transparent 60%),
    radial-gradient(1px 1px at 4% 40%, oklch(0.9 0.04 80 / 0.5), transparent 60%);
  background-size: 100% 100%;
  animation: heroDrift 40s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  to {
    transform: translate3d(1.5%, -1%, 0) scale(1.03);
  }
}
/* fine grain so the dark reads as texture, not flat */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
/* thin gold rule under the hero */
.hero__media::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(60%, 720px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, oklch(0.8 0.06 80 / 0.5), transparent);
}
@media (prefers-reduced-motion: reduce) {
  .hero__glow,
  .hero__stars {
    animation: none;
  }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-overlay);
}
.hero__content {
  text-align: center;
  padding-block: var(--space-32) var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  width: min(78vw, 520px);
  height: auto;
  filter: drop-shadow(0 12px 40px oklch(0 0 0 / 0.45));
  opacity: 0;
  animation: rise 1.1s var(--ease-out) 0.15s forwards;
}
.hero__tag {
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: #f3ecdf;
  opacity: 0;
  animation: rise 1s var(--ease-out) 0.45s forwards;
}
.hero__meta {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d9c6a6;
  opacity: 0;
  animation: rise 1s var(--ease-out) 0.6s forwards;
}
.hero__meta span + span::before {
  content: '·';
  margin-right: var(--space-5);
  opacity: 0.6;
}
.hero__cta {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  animation: rise 1s var(--ease-out) 0.75s forwards;
}
.hero .btn--ghost {
  color: #f3ecdf;
  border-color: oklch(1 0 0 / 0.35);
}
.hero .btn--ghost:hover {
  border-color: #d9c6a6;
  color: #d9c6a6;
}
.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #d9c6a6);
  opacity: 0.7;
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%,
  100% {
    transform: translateX(-50%) scaleY(0.4);
    transform-origin: top;
    opacity: 0.2;
  }
  50% {
    transform: translateX(-50%) scaleY(1);
    opacity: 0.8;
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ───────────────────────────────────────────────
   Sections
   ─────────────────────────────────────────────── */
.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section--alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
}
.section-head {
  max-width: 62ch;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay='1'] {
  transition-delay: 0.12s;
}
.reveal[data-delay='2'] {
  transition-delay: 0.24s;
}
.reveal[data-delay='3'] {
  transition-delay: 0.36s;
}

/* Marquee strip */
.strip {
  border-block: 1px solid var(--color-divider);
  background: var(--color-surface-offset);
  overflow: hidden;
  padding-block: var(--space-4);
}
.strip__track {
  display: flex;
  gap: var(--space-12);
  width: max-content;
  animation: marquee 48s linear infinite;
}
.strip__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
}
.strip__track span::after {
  content: '✦';
  font-style: normal;
  font-size: 0.6em;
  color: var(--color-primary);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* About */
.about {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}
.about__media::before {
  content: '';
  position: absolute;
  display: none;
  inset: var(--space-6) auto auto var(--space-6);
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--color-primary);
  opacity: 0.55;
  border-radius: 0;
  z-index: -1;
}
.about__cap {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.about__cap::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-primary);
  vertical-align: middle;
  margin-right: 10px;
}
.about__body p + p {
  margin-top: var(--space-4);
}
.about__body .lede {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
}
.about__body p {
  color: var(--color-text-muted);
}
.chef {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  gap: var(--space-4);
  align-items: baseline;
}
.chef strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--color-text);
}
.chef span {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}
@media (min-width: 900px) {
  .about__media::before {
    display: block;
  }
  .about__cap {
    margin-top: var(--space-10);
  }
  .about {
    grid-template-columns: 5fr 6fr;
    gap: var(--space-20);
  }
  .about--flip .about__media {
    order: 2;
  }
}

/* Features trio */
.features {
  margin-top: var(--space-16);
  display: grid;
  gap: var(--space-8);
}
.feature {
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-sm);
  background: color-mix(in oklab, var(--color-surface) 70%, transparent);
}
.feature svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}
.feature h3 {
  margin-top: var(--space-5);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
}
.feature p {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
@media (min-width: 720px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ───────────────────────────────────────────────
   Menu
   ─────────────────────────────────────────────── */
.menu-tabs {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-divider);
}
.menu-tab {
  position: relative;
  padding: var(--space-3) var(--space-5);
  min-height: 44px;
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.menu-tab::after {
  content: '';
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: -1px;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 260ms var(--ease-out);
}
.menu-tab:hover {
  color: var(--color-text);
}
.menu-tab[aria-selected='true'] {
  color: var(--color-text);
}
.menu-tab[aria-selected='true']::after {
  transform: scaleX(1);
}
.menu-panel {
  margin-top: var(--space-12);
  display: none;
  animation: fadeIn 0.5s var(--ease-out);
}
.menu-panel[data-active='true'] {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-grid {
  display: grid;
  gap: var(--space-12) var(--space-16);
}
@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.menu-group__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  color: var(--color-text);
}
.menu-group__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-divider);
  transform: translateY(-0.35em);
}
.menu-group__note {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.menu-items {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.menu-item__name {
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}
.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-text-faint);
  transform: translateY(-0.3em);
  min-width: var(--space-4);
  opacity: 0.6;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-item__desc {
  margin-top: var(--space-1);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.menu-item--featured {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: color-mix(in oklab, var(--color-primary) 6%, transparent);
}
.menu-item--featured .menu-item__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
}
.menu-downloads {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
.menu-downloads a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.menu-downloads a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.menu-footnote {
  margin-top: var(--space-8);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-inline: auto;
}

/* ───────────────────────────────────────────────
   Live music — full bleed
   ─────────────────────────────────────────────── */
.music {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(var(--space-24), 14vw, var(--space-32));
  color: #f3ecdf;
}
.music__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.music__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.music::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    oklch(0.13 0.02 260 / 0.92) 0%,
    oklch(0.13 0.02 260 / 0.7) 55%,
    oklch(0.13 0.02 260 / 0.3) 100%
  );
}
.music .eyebrow {
  color: #d9c6a6;
}
.music__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--text-3xl);
  line-height: 1;
  margin-top: var(--space-5);
  max-width: 16ch;
}
.music__title em {
  font-style: italic;
}
.music p {
  margin-top: var(--space-6);
  color: oklch(0.88 0.015 80);
  max-width: 52ch;
}
.music__schedule {
  margin-top: var(--space-10);
  display: grid;
  gap: var(--space-4);
  max-width: 560px;
}
.music__note {
  margin: 0 0 var(--space-2) !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: #f3ecdf !important;
}
.music__slot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid oklch(1 0 0 / 0.14);
}
.music__slot strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
}
.music__slot span {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d9c6a6;
  white-space: nowrap;
}
.music .btn--primary {
  margin-top: var(--space-10);
}

/* ───────────────────────────────────────────────
   Gift cards
   ─────────────────────────────────────────────── */
.gift {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
.gift__card-wrap {
  perspective: 1200px;
  display: grid;
  place-items: center;
}
.gift-card {
  width: min(100%, 420px);
  aspect-ratio: 1.586;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 0% 0%, oklch(0.28 0.04 260) 0%, transparent 60%),
    radial-gradient(90% 90% at 100% 100%, oklch(0.32 0.06 80 / 0.55) 0%, transparent 60%),
    oklch(0.14 0.02 260);
  border: 1px solid oklch(0.82 0.06 80 / 0.35);
  box-shadow: var(--shadow-lg);
  transform: rotateX(6deg) rotateY(-10deg);
  transition: transform 600ms var(--ease-out);
  color: #f3ecdf;
}
.gift__card-wrap:hover .gift-card {
  transform: rotateX(0) rotateY(0);
}
.gift-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, oklch(1 0 0 / 0.08) 45%, transparent 60%);
  pointer-events: none;
}
.gift-card__logo {
  position: absolute;
  top: 8%;
  left: 7%;
  width: 46%;
}
.gift-card__label {
  position: absolute;
  bottom: 8%;
  left: 7%;
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d9c6a6;
}
.gift-card__amount {
  position: absolute;
  right: 7%;
  bottom: 8%;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  line-height: 1;
}
.gift-card__stars {
  position: absolute;
  right: 7%;
  top: 8%;
  font-size: var(--text-lg);
  color: #d9c6a6;
  letter-spacing: 0.4em;
}
.gift__body p {
  color: var(--color-text-muted);
  margin-top: var(--space-5);
}
.amounts {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.amount {
  min-width: 84px;
  min-height: 44px;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}
.amount:hover {
  border-color: var(--color-primary);
}
.amount[aria-pressed='true'] {
  border-color: var(--color-primary);
  background: color-mix(in oklab, var(--color-primary) 12%, transparent);
  color: var(--color-primary);
}
.gift__cta {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.gift__fine {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
@media (min-width: 900px) {
  .gift {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }
}

/* ───────────────────────────────────────────────
   Visit / Hours / Map
   ─────────────────────────────────────────────── */
.visit {
  display: grid;
  gap: var(--space-12);
}
.visit__info {
  display: grid;
  gap: var(--space-8);
}
.info-block h3 {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
}
.info-block address,
.info-block p {
  font-style: normal;
  margin-top: var(--space-3);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.35;
}
.info-block a:not(.btn) {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.info-block a:not(.btn):hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.hours {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}
.hours div span:first-child {
  color: var(--color-text-muted);
}
.hours div span:last-child {
  font-variant-numeric: tabular-nums;
}
.hours div.is-today span {
  color: var(--color-primary);
}
.visit__map {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  background: var(--color-surface-offset);
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}
[data-theme='dark'] .visit__map iframe {
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.95) brightness(0.9);
}
.visit__map a.map-link {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  z-index: 2;
}
@media (min-width: 900px) {
  .visit {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-20);
  }
  .visit__info {
    grid-template-columns: 1fr 1fr;
  }
  .visit__info .info-block--wide {
    grid-column: 1 / -1;
  }
}

/* ───────────────────────────────────────────────
   Newsletter
   ─────────────────────────────────────────────── */
.newsletter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--color-primary) 12%, transparent), transparent 70%);
  pointer-events: none;
}
.newsletter .section-title {
  margin-inline: auto;
}
.newsletter p {
  color: var(--color-text-muted);
  margin: var(--space-5) auto 0;
}
.signup {
  margin: var(--space-10) auto 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.signup__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.signup input {
  flex: 1;
  min-height: 52px;
  padding: var(--space-3) var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: var(--text-base);
}
.signup input::placeholder {
  color: var(--color-text-faint);
}
.signup input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-primary) 20%, transparent);
}
.signup input[aria-invalid='true'] {
  border-color: oklch(0.65 0.18 25);
}
.signup__fine {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin: 0 auto;
}
.signup__msg {
  min-height: 1.5em;
  font-size: var(--text-sm);
  color: var(--color-primary);
}
.signup__msg[data-state='error'] {
  color: oklch(0.72 0.16 25);
}
@media (min-width: 600px) {
  .signup__row {
    flex-direction: row;
  }
}

/* ───────────────────────────────────────────────
   Footer
   ─────────────────────────────────────────────── */
.footer {
  padding-block: var(--space-16) var(--space-8);
  background: var(--color-surface-offset);
}
.footer__grid {
  display: grid;
  gap: var(--space-10);
}
.footer__brand img {
  width: 160px;
}
[data-theme='light'] .footer__brand img {
  filter: brightness(0.55) sepia(0.4) saturate(1.4);
}
.footer__brand p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 34ch;
}
.footer h4 {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
}
.footer ul {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
}
.footer li a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer li a:hover {
  color: var(--color-text);
}
.footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.social {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}
.social svg {
  width: 18px;
  height: 18px;
}
.social:hover {
  color: var(--color-primary);
}
@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Hero always sits on the dark photo — keep its text light in both themes */
.hero__tag,
.hero__meta,
.hero .btn--ghost {
  color: #f3ecdf;
}
.hero .btn--ghost {
  border-color: oklch(1 0 0 / 0.38);
}
.hero .btn--ghost:hover {
  border-color: #d9c6a6;
  color: #d9c6a6;
}

/* ───────── hero background: constellation + Astoria skyline ───────── */
.hero--stars-d .hero__media {
  background-image: url('./assets/constellation.svg'),
    radial-gradient(ellipse at 50% 60%, oklch(0.2 0.03 260) 0%, oklch(0.13 0.02 260) 60%, oklch(0.1 0.015 260) 100%);
  background-size: cover, cover;
  background-position: center, center;
}
.hero--stars-d .hero__stars { display: none; }

/* ───────── site-wide starry sky (dark theme) ───────── */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--color-bg);
  background-image: url('./assets/sky.svg');
  background-size: 1600px 900px;
  background-position: center top;
  background-repeat: repeat;
  opacity: 0.85;
}
[data-theme='light'] .sky { display: none; }
body { background-color: transparent; }
[data-theme='light'] body { background-color: var(--color-bg); }
/* let the sky show through the flat section backgrounds */
.strip { background: color-mix(in oklab, var(--color-surface-offset) 70%, transparent); }
.newsletter { background: color-mix(in oklab, var(--color-surface) 55%, transparent); }
.footer { background: color-mix(in oklab, var(--color-surface-offset) 70%, transparent); }
/* Live Music keeps its own photo backdrop */
.music { background-color: var(--color-bg); }
.section--alt { background: color-mix(in oklab, var(--color-surface) 45%, transparent); }
[data-theme='light'] .section--alt { background: var(--color-surface); }
[data-theme='light'] .strip { background: var(--color-surface-offset); }
[data-theme='light'] .newsletter { background: var(--color-surface); }
[data-theme='light'] .footer { background: var(--color-surface-offset); }

/* ───────── Mobile polish (phones) ───────── */
@media (max-width: 700px) {
  /* Hero: keep buttons clear of the skyline, tighter rhythm */
  .hero__content {
    padding-block: var(--space-24) calc(var(--space-20) + 22vw);
  }
  .hero__logo {
    width: min(70vw, 300px);
  }
  .hero__tag {
    font-size: var(--text-lg);
    margin-top: var(--space-6);
    max-width: 30ch;
  }
  .hero__meta {
    flex-direction: column;
    gap: var(--space-2);
    letter-spacing: 0.22em;
  }
  .hero__meta span + span::before {
    content: none;
    margin: 0;
  }
  .hero__cta {
    width: 100%;
    max-width: 320px;
    flex-direction: column;
    gap: var(--space-3);
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero--stars-d .hero__media {
    background-size: auto 100%, cover;
    background-position: center bottom, center;
  }

  /* Full-width actions */
  .gift__cta,
  .visit__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  .gift__cta .btn,
  .visit__actions .btn,
  .music .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .visit__map a.map-link {
    right: var(--space-4);
    text-align: center;
  }

  /* Feature trio: icon left, text right */
  .features {
    margin-top: var(--space-10);
    gap: var(--space-3);
  }
  .feature {
    padding: var(--space-5);
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: var(--space-4);
    align-items: start;
  }
  .feature svg {
    width: 24px;
    height: 24px;
    margin: 0;
    grid-row: 1 / span 2;
  }
  .feature h3 {
    margin-top: 0;
    font-size: var(--text-lg);
  }
  .feature p {
    margin-top: var(--space-1);
    font-size: var(--text-sm);
  }

  /* Menu tabs: 2 x 2 grid */
  .menu-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 0;
  }
  .menu-tab {
    padding-inline: var(--space-2);
    border-bottom: 1px solid var(--color-divider);
    text-align: center;
  }
  .menu-downloads {
    flex-direction: column;
    align-items: stretch;
  }
  .menu-downloads a {
    justify-content: center;
  }

  /* Live music: darker wash so type stays crisp over the photo */
  .music::after {
    background: linear-gradient(
      to bottom,
      oklch(0.13 0.02 260 / 0.92) 0%,
      oklch(0.13 0.02 260 / 0.82) 60%,
      oklch(0.13 0.02 260 / 0.6) 100%
    );
  }
  .music__title {
    font-size: var(--text-2xl);
    max-width: none;
  }

  /* Gift amounts: tidy 3 + 2 grid */
  .amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }
  .amount {
    min-width: 0;
    width: 100%;
  }

  /* Visit: shorter map */
  .visit__map {
    min-height: 240px;
  }

  /* Footer: link columns side by side */
  .footer {
    padding-block: var(--space-12) var(--space-8);
  }
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8) var(--space-4);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer li a {
    font-size: var(--text-sm);
  }
}
