/* ==========================================================================
   Athens Pizza & Pasta — Demo concept
   Themes: terracotta · gold-olive · aegean (toggle in demo banner)
   ========================================================================== */

:root,
html[data-theme="terracotta"] {
  /* Palette — Terracotta (default): bold, appetizing */
  --espresso: #140e0a;
  --espresso-2: #1c1410;
  --espresso-3: #2a1f18;
  --terracotta: #c45c26;
  --terracotta-hot: #e06a2c;
  --terracotta-deep: #9a4318;
  --accent-rgb: 196, 92, 38;
  --gold: #d4a574;
  --gold-soft: #e8c9a8;
  --olive: #6b7c4e;
  --cream: #f5ebe0;
  --cream-2: #ebe0d2;
  --cream-muted: #c9b8a6;
  --ink: #1a120b;
  --ink-soft: rgba(26, 18, 11, 0.72);
  --white: #fffaf5;
  --line: rgba(212, 165, 116, 0.18);
  --line-strong: rgba(212, 165, 116, 0.32);
  --banner-from: #9a4318;
  --banner-to: #c45c26;
  --theme-color: #140e0a;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Layout */
  --max: 1180px;
  --header-h: 84px;
  --demo-h: 56px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 12px 40px rgba(20, 14, 10, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mobile-bar: 64px;
}

/* Gold & Olive — refined institution, less chain-pizza */
html[data-theme="gold"] {
  --espresso: #12100c;
  --espresso-2: #1a1712;
  --espresso-3: #28231c;
  --terracotta: #a67c2e;
  --terracotta-hot: #c9a04a;
  --terracotta-deep: #7a5a1c;
  --accent-rgb: 166, 124, 46;
  --gold: #e0c07a;
  --gold-soft: #f0d9a8;
  --olive: #7a8f52;
  --cream: #f6f0e4;
  --cream-2: #ebe3d4;
  --cream-muted: #c4b59e;
  --ink: #16120c;
  --ink-soft: rgba(22, 18, 12, 0.72);
  --white: #fffdf8;
  --line: rgba(224, 192, 122, 0.2);
  --line-strong: rgba(224, 192, 122, 0.38);
  --banner-from: #5c6b38;
  --banner-to: #a67c2e;
  --theme-color: #12100c;
}

/* Aegean — Greek first: deep blue + cream + gold */
html[data-theme="aegean"] {
  --espresso: #0a121a;
  --espresso-2: #0f1a24;
  --espresso-3: #172636;
  --terracotta: #1f6f9a;
  --terracotta-hot: #2d8fc4;
  --terracotta-deep: #145a7a;
  --accent-rgb: 31, 111, 154;
  --gold: #d4b896;
  --gold-soft: #e8d4b8;
  --olive: #5a7a6a;
  --cream: #eef3f7;
  --cream-2: #dde6ee;
  --cream-muted: #a8b8c6;
  --ink: #0c141c;
  --ink-soft: rgba(12, 20, 28, 0.72);
  --white: #f7fafc;
  --line: rgba(212, 184, 150, 0.16);
  --line-strong: rgba(212, 184, 150, 0.32);
  --banner-from: #0e3d5c;
  --banner-to: #1f6f9a;
  --theme-color: #0a121a;
}

/* Cypress — deep Mediterranean green */
html[data-theme="green"] {
  --espresso: #0c120e;
  --espresso-2: #121a14;
  --espresso-3: #1c2a20;
  --terracotta: #3d7a4a;
  --terracotta-hot: #4f9a5e;
  --terracotta-deep: #2a5a35;
  --accent-rgb: 61, 122, 74;
  --gold: #c9b87a;
  --gold-soft: #e0d4a8;
  --olive: #6b8f5a;
  --cream: #eef4ee;
  --cream-2: #dde8dd;
  --cream-muted: #a8b8a8;
  --ink: #0e1410;
  --ink-soft: rgba(14, 20, 16, 0.72);
  --white: #f6faf6;
  --line: rgba(201, 184, 122, 0.16);
  --line-strong: rgba(201, 184, 122, 0.34);
  --banner-from: #1e3d28;
  --banner-to: #3d7a4a;
  --theme-color: #0c120e;
}

/* Roman — travertine stone, marble cream, imperial red-ochre */
html[data-theme="roman"] {
  --espresso: #1a1410;
  --espresso-2: #241c16;
  --espresso-3: #34281e;
  --terracotta: #8b3a2a;
  --terracotta-hot: #a84a36;
  --terracotta-deep: #6a2c1e;
  --accent-rgb: 139, 58, 42;
  --gold: #c4a574;
  --gold-soft: #e0cda8;
  --olive: #7a6b4a;
  --cream: #f3ebe0;
  --cream-2: #e6d9c8;
  --cream-muted: #c2b09a;
  --ink: #1a120c;
  --ink-soft: rgba(26, 18, 12, 0.72);
  --white: #faf6f0;
  --line: rgba(196, 165, 116, 0.2);
  --line-strong: rgba(196, 165, 116, 0.38);
  --banner-from: #4a3228;
  --banner-to: #8b3a2a;
  --theme-color: #1a1410;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--demo-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--espresso);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--mobile-bar);
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* Typography helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow--light {
  color: var(--gold-soft);
}

.eyebrow .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.9;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn:focus-visible,
.menu-tab:focus-visible,
.nav a:focus-visible,
.nav-toggle:focus-visible,
.header-phone:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta-hot), var(--terracotta-deep));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.45);
}

.btn-ghost {
  background: rgba(255, 250, 245, 0.08);
  border: 1px solid rgba(255, 250, 245, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 250, 245, 0.14);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--line-strong);
  color: var(--cream);
  padding: 0.8rem 1.2rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(212, 165, 116, 0.08);
}

/* Demo banner */
.demo-banner {
  position: relative;
  z-index: 1001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  background: linear-gradient(90deg, var(--banner-from), var(--banner-to));
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  min-height: var(--demo-h);
}

.demo-banner-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 100%;
}

.theme-toggle-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  padding: 0 0.35rem 0 0.5rem;
  white-space: nowrap;
}

.theme-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.theme-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.theme-btn.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.theme-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .demo-banner {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem 0.55rem;
  }

  .demo-banner-label {
    font-size: 0.62rem;
  }

  .theme-toggle-label {
    display: none;
  }

  .theme-btn {
    font-size: 0.62rem;
    padding: 0.35rem 0.55rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 14, 10, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(20, 14, 10, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 3px rgba(var(--accent-rgb), 0.15),
    0 4px 14px rgba(0, 0, 0, 0.35);
  /* Prefer sharper downscale from the 602px source */
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

@media (min-width: 900px) {
  .logo-img {
    width: 72px;
    height: 72px;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-text em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 420px) {
  .logo-img {
    width: 56px;
    height: 56px;
  }

  .logo-text strong {
    font-size: 1.25rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terracotta-hot), var(--terracotta-deep));
  color: var(--white) !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
}

.nav-cta:hover {
  filter: brightness(1.08);
}

.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  transition: background 0.2s ease, color 0.2s ease;
}

.header-phone:hover {
  background: rgba(212, 165, 116, 0.12);
  color: var(--gold-soft);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .nav-toggle,
  .header-phone {
    display: none;
  }
}

/* Mobile nav open */
@media (max-width: 899px) {
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(20, 14, 10, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .nav.is-open a {
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav.is-open .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    border: 0 !important;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 4.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    animation: none;
    transform: scale(1.05);
  }
  html {
    scroll-behavior: auto;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0.25) 35%, rgba(20, 14, 10, 0.75) 70%, rgba(20, 14, 10, 0.96) 100%),
    linear-gradient(90deg, rgba(20, 14, 10, 0.75) 0%, rgba(20, 14, 10, 0.2) 55%, rgba(20, 14, 10, 0.45) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 6rem 1.25rem 0;
}

.hero-eyebrow {
  flex-wrap: wrap;
  color: var(--gold-soft);
}

.hero h1 {
  font-size: clamp(2.55rem, 7vw, 4.6rem);
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.h1-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 38rem;
  color: rgba(245, 235, 224, 0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-badges li {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(20, 14, 10, 0.35);
  backdrop-filter: blur(6px);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.hero-scroll:hover {
  opacity: 1;
  color: var(--gold);
}

@media (min-width: 768px) {
  .hero-scroll {
    display: flex;
  }
  .hero {
    align-items: center;
    padding-bottom: 2rem;
  }
  .hero-content {
    padding-top: 4rem;
  }
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 100%;
}

.trust-item {
  background: var(--espresso-2);
  padding: 1.35rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--cream-muted);
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-item {
    padding: 1.6rem 1.25rem;
  }
}

/* Section heads */
.section-head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
  text-align: center;
}

.section-head--light h2 {
  color: var(--white);
}

.section-lead,
.section-note {
  max-width: 36rem;
  margin: 0.5rem auto 0;
  color: var(--cream-muted);
  font-size: 1rem;
  font-weight: 300;
}

.section-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Favorites */
.favorites {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--accent-rgb), 0.08), transparent 60%),
    var(--espresso);
}

.favorites-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .favorites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fav-card--hero {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    min-height: 340px;
  }
  .fav-card--hero .fav-media {
    aspect-ratio: auto;
    height: 100%;
  }
  .fav-card--hero .fav-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.fav-card {
  background: var(--espresso-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.fav-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.fav-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--espresso-3);
}

.fav-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.fav-card:hover .fav-media img {
  transform: scale(1.05);
}

.fav-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.fav-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-hot);
  margin-bottom: 0.5rem;
}

.fav-body h3 {
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.fav-body p {
  color: var(--cream-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Menu */
.menu-section {
  padding: 4.5rem 0 5rem;
  background:
    linear-gradient(180deg, var(--espresso) 0%, var(--espresso-2) 40%, var(--espresso) 100%);
}

.menu-tabs {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-muted);
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.03);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.menu-tab:hover {
  color: var(--white);
  border-color: var(--line-strong);
}

.menu-tab.is-active {
  background: linear-gradient(135deg, var(--terracotta-hot), var(--terracotta-deep));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.28);
}

.menu-panels {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.menu-panel {
  display: none;
  animation: panelIn 0.4s var(--ease);
}

.menu-panel.is-active {
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  .menu-panel {
    animation: none;
  }
  .fav-card:hover,
  .fav-card:hover .fav-media img,
  .moment:hover img {
    transform: none;
  }
}

.menu-intro {
  color: var(--cream-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.menu-intro--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
}

@media (min-width: 800px) {
  .menu-cols {
    grid-template-columns: 1fr 1fr;
  }
  .menu-cols--center {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
  }
}

.menu-group-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.menu-list + .menu-group-title {
  margin-top: 2rem;
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.menu-item-name {
  font-weight: 600;
  color: var(--white);
  font-size: 1.02rem;
}

.menu-item-price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.menu-item-meta {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}

.menu-list p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  font-weight: 300;
  line-height: 1.5;
}

.menu-list--compact li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.menu-list--compact li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-side-card {
  background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.12), rgba(20, 14, 10, 0.4));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  height: fit-content;
}

.menu-side-note {
  color: var(--cream-muted);
  font-size: 0.9rem;
  margin: -0.5rem 0 1rem;
  font-weight: 300;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-cloud span {
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(20, 14, 10, 0.35);
}

.menu-side-foot {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--gold-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.menu-dessert-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: start;
}

.menu-dessert-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.menu-cta {
  max-width: var(--max);
  margin: 2.75rem auto 0;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.18), rgba(42, 31, 24, 0.8));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

@media (min-width: 1180px) {
  .menu-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

.menu-cta h3 {
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.menu-cta p {
  color: var(--cream-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Moments / gallery */
.moments {
  padding: 5rem 0 4rem;
  background: var(--espresso-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.moments-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .moments-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
  }
  .moment--wide {
    grid-column: span 2;
  }
}

.moment {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--espresso-3);
  border: 1px solid var(--line);
}

.moment--wide {
  aspect-ratio: 16 / 10;
  grid-column: span 2;
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.moment:hover img {
  transform: scale(1.06);
}

.moment figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(10, 7, 5, 0.88));
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.moment:hover figcaption,
.moment:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .moment figcaption {
    opacity: 1;
    transform: none;
    padding-top: 1.5rem;
  }
}

/* Story */
.story {
  padding: 5.5rem 0;
  background: var(--espresso);
}

.story-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .story-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
  }
}

.story-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--espresso-2);
}

.story-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: var(--espresso-2);
}

.story-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: linear-gradient(145deg, var(--terracotta-hot), var(--terracotta-deep));
  color: var(--white);
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.story-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.story-badge strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
}

.story-copy h2 {
  margin-bottom: 1.1rem;
}

.story-copy p {
  color: var(--cream-muted);
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 38rem;
}

.story-points {
  margin: 1.5rem 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.story-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--cream);
  font-size: 0.98rem;
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
}

.story-sign {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  background: var(--espresso-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 520px) {
  .story-sign {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
}

.story-sign img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-height: 200px;
  object-fit: cover;
  /* Pan up so the full sign (and rainbow) stays in frame, less pole below */
  object-position: center 22%;
  display: block;
}

.story-sign-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 1rem 1.15rem;
}

.story-sign-kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.story-sign p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.3;
  color: var(--white);
  font-weight: 600;
}

.story-sign-addr {
  margin: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: var(--cream-muted) !important;
}

/* Catering */
.catering {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.catering-bg {
  position: absolute;
  inset: 0;
}

.catering-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(1.05);
}

/* No full-section blackout — only local scrims behind words */
.catering-bg::after {
  content: none;
}

.catering-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .catering-inner {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2rem;
  }
}

/* Soft panel only around the headline/copy — photo shows everywhere else */
.catering-copy {
  padding: 1.5rem 1.45rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 9, 7, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  max-width: 36rem;
}

.catering-copy h2 {
  max-width: 16ch;
  margin-bottom: 0.85rem;
  color: #fffaf5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.catering-copy > p {
  color: rgba(255, 250, 245, 0.92);
  font-weight: 400;
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

.catering-list {
  display: grid;
  gap: 0.85rem;
}

.catering-list li {
  background: rgba(12, 9, 7, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.05rem 1.15rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.catering-list li:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(12, 9, 7, 0.58);
  transform: translateY(-2px);
}

.catering-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fffaf5;
  margin-bottom: 0.15rem;
}

.catering-list span {
  font-size: 0.9rem;
  color: rgba(255, 250, 245, 0.9);
  font-weight: 400;
}

/* Visit */
.visit {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(var(--accent-rgb), 0.1), transparent 55%),
    var(--espresso);
}

.visit-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 880px) {
  .visit-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
  }
}

.visit-copy h2 {
  margin-bottom: 0.75rem;
}

.visit-phone a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
}

.visit-phone a:hover {
  color: var(--gold-soft);
}

.hours {
  margin: 1.75rem 0;
  padding: 1.35rem 1.4rem;
  background: var(--espresso-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hours h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hours dl {
  display: grid;
  gap: 0.55rem;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.hours dl div:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours dt {
  color: var(--cream);
  font-weight: 500;
}

.hours dd {
  color: var(--cream-muted);
  font-weight: 300;
  text-align: right;
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--cream-muted);
  font-weight: 300;
  line-height: 1.5;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.visit-web a {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  font-size: 1.08rem;
}

.visit-web a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  /* Light surface so browser dark-mode does not invert map tiles */
  background: #e8e6e1;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  color-scheme: only light;
  forced-color-adjust: none;
}

.visit-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  background: #fff;
  /* Critical: prevent forced-dark / Auto Dark Mode from inverting satellite */
  color-scheme: only light;
  forced-color-adjust: none;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

/* Belt-and-suspenders if a parent ever reintroduces filters */
.visit-map * {
  filter: none !important;
  -webkit-filter: none !important;
}

/* Footer — centered modern */
.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--accent-rgb), 0.14), transparent 55%),
    linear-gradient(180deg, var(--espresso-2) 0%, #080604 100%);
  padding: 3.75rem 0 2.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-brand-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.55rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-since {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-tagline {
  margin: 0.85rem 0 0;
  max-width: 32rem;
  color: var(--cream-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(var(--accent-rgb), 0.14);
  transform: translateY(-1px);
}

.footer-social .yelp-link:hover {
  border-color: #d32323;
  color: #ff6b6b;
}

/* Review rotator */
.footer-reviews {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.footer-reviews-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-reviews-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--white);
  font-weight: 600;
}

.review-rotator {
  width: 100%;
}

.review-stage {
  position: relative;
  min-height: 168px;
}

.review-card--featured {
  margin: 0;
  width: 100%;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.review-card--featured[hidden] {
  display: block !important;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.review-card--featured.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.review-card--featured:not(.is-active):not([hidden]) {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.review-text {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.review-name {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-soft);
}

.review-source {
  opacity: 0.8;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.review-nav {
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.review-nav:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(var(--accent-rgb), 0.15);
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  max-width: 220px;
}

.review-dot {
  appearance: none;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.review-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

.review-count {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: rgba(201, 184, 166, 0.7);
  letter-spacing: 0.04em;
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.92rem;
  color: var(--cream-muted);
}

.footer-meta a {
  color: var(--gold-soft);
  font-weight: 600;
}

.footer-dot {
  opacity: 0.45;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(201, 184, 166, 0.5);
  max-width: 36rem;
  margin: 0;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .review-card--featured {
    transition: none;
  }
}

/* Mobile call bar */
.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(20, 14, 10, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
}

.mobile-call-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terracotta-hot), var(--terracotta-deep));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.35);
}

.mobile-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  .mobile-call-bar {
    display: none;
  }
}

/* ========== Open status badge ========== */
.open-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  border-color: rgba(92, 180, 110, 0.45) !important;
  background: rgba(92, 180, 110, 0.12) !important;
  color: #b8e6c2 !important;
}

.open-badge.is-closed {
  border-color: rgba(201, 184, 166, 0.35) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--cream-muted) !important;
}

.open-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #5cb46e;
  box-shadow: 0 0 0 0 rgba(92, 180, 110, 0.55);
  animation: pulse-dot 2s ease infinite;
}

.open-badge.is-closed .open-dot {
  background: #8a7a6a;
  animation: none;
  box-shadow: none;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(92, 180, 110, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(92, 180, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 180, 110, 0); }
}

/* Surprise me */
.surprise-box {
  margin-top: 1.5rem;
  max-width: 28rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.surprise-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.surprise-btn {
  width: 100%;
  font-size: 0.9rem;
}

.surprise-result {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--white);
}

.surprise-result strong {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ========== Film / Instagram feature ========== */
.film {
  padding: 5rem 0 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(var(--accent-rgb), 0.12), transparent 55%),
    var(--espresso-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.film-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .film-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.film-copy h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.film-copy > p {
  color: var(--cream-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.film-bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.film-bullets li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--cream);
  font-size: 0.95rem;
}

.film-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
}

.film-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.film-embed-wrap {
  width: 100%;
}

.film-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--espresso-3);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}

.film-frame .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.film-credit {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--cream-muted);
  text-align: center;
}

.film-credit a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Love ticker */
.love-ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 0.9rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.love-ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 40s linear infinite;
  padding-left: 2rem;
}

.love-ticker-track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-soft);
  white-space: nowrap;
}

.love-ticker-track span::after {
  content: "·";
  margin-left: 2.5rem;
  color: var(--cream-muted);
  font-style: normal;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .love-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    padding: 0 1rem;
  }
  .love-ticker-track span:nth-child(n + 9) {
    display: none;
  }
  .love-ticker-track span::after {
    margin-left: 1rem;
  }
  .open-dot {
    animation: none;
  }
}

/* Visit open status + copy phone */
.open-status {
  margin: 0.35rem 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.open-status.is-open {
  color: #8fd49a;
}

.open-status.is-closed {
  color: var(--cream-muted);
}

.visit-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.copy-phone-btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--cream-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.copy-phone-btn:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(var(--accent-rgb), 0.12);
}

/* Moments clickable */
.moment {
  cursor: zoom-in;
}

.moment:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(8px);
  padding: 1rem;
  gap: 0.5rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-figure {
  margin: 0;
  max-width: min(920px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-figure figcaption {
  color: var(--cream-muted);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .lightbox-nav {
    display: none;
  }
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--mobile-bar) + 1rem);
  z-index: 998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(20, 14, 10, 0.9);
  color: var(--gold-soft);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: opacity 0.25s, transform 0.25s;
}

.back-top[hidden] {
  display: none !important;
}

@media (min-width: 900px) {
  .back-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--mobile-bar) + 1.25rem);
  transform: translateX(-50%);
  z-index: 2100;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.toast[hidden] {
  display: none !important;
}

@media (min-width: 900px) {
  .toast {
    bottom: 2rem;
  }
}

/* Small polish */
::selection {
  background: rgba(var(--accent-rgb), 0.45);
  color: var(--white);
}

/* Reveal on scroll (optional class added by JS) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
