/* ============================================================
   ROMA PIZZARIA SLANGERUP — Award-Worthy Stylesheet
   Mobile-first · Fluid · Premium
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;700&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --color-primary: #111116;
  --color-bg: #FAF8F5;
  --color-surface: #FFFFFF;
  --color-accent: #C5A059;
  --color-accent-hover: #B08D4B;
  --color-accent-subtle: rgba(197, 160, 89, 0.10);
  --color-success: #3E5F49;
  --color-success-bg: rgba(62, 95, 73, 0.12);

  /* Text */
  --color-text-main: #111116;
  --color-text-muted: #6B6B72;
  --color-text-faint: #9A9AA2;
  --color-text-light: #FAF8F5;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid Spacing — tightened for mobile comfort */
  --space-2xs: clamp(0.25rem, 0.5vw, 0.375rem);
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1.25rem);
  --space-md: clamp(1.25rem, 2.5vw, 2rem);
  --space-lg: clamp(2rem, 4vw, 3.5rem);
  --space-xl: clamp(3.5rem, 7vw, 6rem);

  /* Fluid Typography — optimised mobile-first */
  --text-2xs: clamp(0.65rem, 0.7vw, 0.75rem);
  --text-xs: clamp(0.75rem, 0.85vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1vw, 1rem);
  --text-base: clamp(0.9375rem, 1.1vw, 1.0625rem);
  --text-lg: clamp(1.0625rem, 1.4vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1.8vw, 1.75rem);
  --text-2xl: clamp(1.625rem, 2.8vw, 2.5rem);
  --text-3xl: clamp(2rem, 4vw, 3.5rem);
  --text-4xl: clamp(2.5rem, 5.5vw, 5rem);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows — barely-there, premium feel */
  --shadow-xs: 0 1px 3px rgba(17, 17, 22, 0.05);
  --shadow-sm: 0 2px 8px rgba(17, 17, 22, 0.06), 0 1px 2px rgba(17, 17, 22, 0.04);
  --shadow-md: 0 6px 20px rgba(17, 17, 22, 0.08), 0 2px 6px rgba(17, 17, 22, 0.04);
  --shadow-lg: 0 16px 40px rgba(17, 17, 22, 0.10), 0 4px 12px rgba(17, 17, 22, 0.05);
  --shadow-gold: 0 6px 20px rgba(197, 160, 89, 0.30);
  --shadow-gold-sm: 0 3px 10px rgba(197, 160, 89, 0.20);

  /* Border */
  --border-subtle: rgba(17, 17, 22, 0.06);
  --border-light: rgba(17, 17, 22, 0.10);
  --border-gold: rgba(197, 160, 89, 0.25);

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-sharp: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s var(--ease-sharp);
  --t-normal: 0.28s var(--ease-smooth);
  --t-slow: 0.5s var(--ease-smooth);
  --t-spring: 0.4s var(--ease-spring);

  /* Layout */
  --container-width: 1200px;
  --header-height: 72px;
  --header-height-scrolled: 60px;
}

/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  /* Subtle award-winning mesh gradient overlay */
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(197, 160, 89, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(197, 160, 89, 0.04) 0%, transparent 50%);
  color: var(--color-text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: var(--text-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ── ACCESSIBILITY ─────────────────────────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.875rem 1.5rem;
  z-index: 9999;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-gold);
  transition: top var(--t-normal);
}

.skip-link:focus-visible {
  top: 16px;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-text-light);
}

.bg-surface {
  background-color: var(--color-surface);
}

.text-center {
  text-align: center;
}

.mt-md {
  margin-top: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.align-center {
  align-items: center;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.625rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  /* Ensure finger-friendly 44px min touch target on mobile */
  min-height: 44px;
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    transform var(--t-spring),
    box-shadow var(--t-normal);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid rgba(17, 17, 22, 0.2);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-surface);
  border-color: var(--color-primary);
}

.btn-secondary:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

/* Inverted — for dark backgrounds */
.btn-secondary-invert {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(250, 248, 245, 0.3);
}

.btn-secondary-invert:hover {
  background-color: rgba(250, 248, 245, 0.1);
  border-color: rgba(250, 248, 245, 0.6);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
}

.btn-block {
  width: 100%;
}

/* Pulsing call button */
.btn-phone-pulse {
  animation: phonePulse 2.4s ease-in-out infinite;
}

@keyframes phonePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.6);
  }

  60% {
    box-shadow: 0 0 0 14px rgba(197, 160, 89, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
  transition:
    height var(--t-normal),
    box-shadow var(--t-normal),
    background-color var(--t-normal);
  will-change: height;
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 248, 245, 0.97);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.025em;
  line-height: 1;
}

.logo-sub {
  font-size: var(--text-2xs);
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* Desktop nav */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-main);
  position: relative;
  padding: 0.375rem 0;
  letter-spacing: -0.01em;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width var(--t-normal);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-phone {
  display: none;
}

/* ── DESKTOP VISIBILITY FIX ── */
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  .btn-phone {
    display: inline-flex;
  }
}

/* Hamburger toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--t-fast);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle:hover {
  background-color: var(--border-subtle);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  position: relative;
  transition: all var(--t-normal);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

/* ── MOBILE NAV OVERLAY ─────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-primary);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-normal);
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  width: 100%;
  max-width: 420px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-fast);
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-nav-menu {
  margin: auto 0;
}

.mobile-nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.mobile-nav-menu a {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.02em;
  transition: color var(--t-fast);
}

.mobile-nav-menu a.active,
.mobile-nav-menu a:hover {
  color: var(--color-accent);
}

.mobile-nav-footer {
  text-align: center;
  padding-bottom: var(--space-lg);
}

.nav-note,
.cta-note {
  font-size: var(--text-xs);
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ── MAIN CONTENT OFFSET ─────────────────────────────────────── */
main {
  padding-top: var(--header-height);
}

/* ── HERO SECTION ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  background-color: var(--color-primary);
  transform: scale(1.04);
  will-change: transform;
  transition: transform 0.6s ease-out;
}

/* Parallax hint on scroll — JS adds .is-scrolled to <body> */
body.is-scrolled .hero-bg {
  transform: scale(1.06) translateY(2%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Richer, more cinematic overlay */
  background:
    linear-gradient(170deg, rgba(17, 17, 22, 0.85) 0%, rgba(17, 17, 22, 0.35) 100%),
    linear-gradient(0deg, rgba(17, 17, 22, 0.5) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-size: var(--text-4xl);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.0;
}

.hero-subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  line-height: 1.55;
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(62, 95, 73, 0.85);
  color: #b5e8ca;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

/* Pulsing live dot */
.trust-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: liveDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes liveDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ── SECTION HEADERS ──────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: var(--space-2xs);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xs);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}



/* ── CARDS ────────────────────────────────────────────────────── */
.card {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 4px 24px -6px rgba(17, 17, 22, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition:
    transform var(--t-spring),
    box-shadow var(--t-normal),
    background-color var(--t-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    0 16px 40px -10px rgba(17, 17, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.85);
}

.card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.card-desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  flex: 1;
  font-size: var(--text-sm);
}

.link-accent {
  color: var(--color-accent);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t-spring);
}

.link-accent:hover {
  gap: 9px;
}

.link-accent .arrow {
  flex-shrink: 0;
}

/* ── INFO / CONTACT SECTION ──────────────────────────────────── */
.info-details {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item strong {
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.info-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ── HOURS CARD ───────────────────────────────────────────────── */
.hours-card {
  background-color: var(--color-surface);
  color: var(--color-text-main);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.hours-card h3 {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--text-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Live "Åbent" badge */
.hours-open-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-success);
  background: var(--color-success-bg);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.hours-list {
  display: flex;
  flex-direction: column;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5625rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--t-fast);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li.is-today {
  background: var(--color-accent-subtle);
  color: var(--color-primary);
  font-weight: 700;
  border-left: 3px solid var(--color-accent);
  border-bottom-color: transparent;
  padding-left: calc(0.625rem - 3px + 0.625rem);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Tabular number alignment for times */
.hours-list li span:last-child {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ── REVIEWS ──────────────────────────────────────────────────── */
.review-card {
  background: rgba(17, 17, 22, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  position: relative;
  overflow: hidden;
  color: var(--color-text-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
  background: rgba(17, 17, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Decorative quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(197, 160, 89, 0.15);
  pointer-events: none;
  select: none;
}

.stars {
  color: var(--color-accent);
  font-size: 0.9375rem;
  letter-spacing: 3px;
}

.review-text {
  font-size: var(--text-md);
  font-style: italic;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.review-author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  color: var(--color-text-light);
}

.review-author .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-xl) 0 var(--space-md);
  /* Top rule with gold accent */
  border-top: 2px solid var(--color-accent);
}

.footer-cro-cta {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
  box-shadow: 0 10px 30px -10px rgba(17, 17, 22, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-cro-cta .cro-title {
  color: var(--color-text-light);
  font-size: var(--text-2xl);
  margin: 0;
}

.footer-top {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo-text {
  color: var(--color-text-light);
}

.footer-desc {
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-contact h4,
.footer-links h4 {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  font-weight: 600;
}

.footer-contact p,
.footer-links ul {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-phone {
  display: inline-block;
  margin-top: var(--space-xs);
  font-weight: 700;
  color: var(--color-accent);
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.smiley-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity var(--t-fast);
}

.smiley-link:hover {
  opacity: 1;
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s var(--ease-smooth),
    transform 0.6s var(--ease-smooth);
}

/* Staggered children */
.fade-in-up.is-visible:nth-child(1) {
  transition-delay: 0ms;
}

.fade-in-up.is-visible:nth-child(2) {
  transition-delay: 80ms;
}

.fade-in-up.is-visible:nth-child(3) {
  transition-delay: 160ms;
}

.fade-in-up.is-visible:nth-child(4) {
  transition-delay: 240ms;
}

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: calc(var(--space-xl) + var(--header-height)) 0 calc(var(--space-lg) + 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero > .container {
  position: relative;
  z-index: 2;
}

.contact-hero .section-title {
  color: var(--color-text-light);
}

.contact-hero .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.contact-cards {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  height: 100%;
  transition:
    transform var(--t-spring),
    box-shadow var(--t-normal);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

/* ── FAQ ACCORDION ────────────────────────────────────────────── */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xs);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: box-shadow var(--t-normal);
}

.faq-item:focus-within {
  box-shadow: var(--shadow-md);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: var(--space-md);
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.35;
  min-height: 44px;
  transition: color var(--t-fast);
}

.faq-button:hover {
  color: var(--color-accent);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--t-spring);
}

.faq-button[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--t-normal),
    padding var(--t-normal);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.faq-button[aria-expanded="true"]+.faq-content {
  padding-bottom: var(--space-md);
  max-height: 500px;
}

/* ── MENU PAGE ────────────────────────────────────────────────── */
.menu-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: calc(var(--space-xl) + var(--header-height)) 0 var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Subtle texture */
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(197, 160, 89, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(197, 160, 89, 0.06) 0%, transparent 45%);
}

.menu-hero > .container {
  position: relative;
  z-index: 2;
}

.menu-hero .section-title {
  color: var(--color-text-light);
}

.menu-hero .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ── MENU SUB-NAV ─────────────────────────────────────────────── */
.menu-subnav-wrapper {
  position: sticky;
  top: var(--header-height);
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 90;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
  transition:
    box-shadow 0.4s var(--ease-smooth),
    border-color 0.4s ease;
}

.menu-subnav-wrapper.is-scrolled {
  box-shadow:
    0 8px 28px -8px rgba(17, 17, 22, 0.07),
    0 2px 6px -2px rgba(17, 17, 22, 0.03);
  border-bottom-color: var(--border-gold);
}

.menu-subnav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 0.5rem 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image:
    linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}

.menu-subnav::-webkit-scrollbar {
  display: none;
}

.menu-subnav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 6px 14px;
  background: var(--color-surface);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border: 1.5px solid var(--border-light);
  scroll-snap-align: start;
  min-height: 34px;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.32s var(--ease-spring),
    box-shadow 0.28s var(--ease-smooth),
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.menu-subnav a .subnav-icon {
  flex-shrink: 0;
  transition:
    transform 0.36s var(--ease-spring),
    color 0.22s ease;
}

.menu-subnav a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 5px 16px -4px rgba(197, 160, 89, 0.16),
    0 2px 6px -2px rgba(17, 17, 22, 0.06);
  border-color: var(--border-gold);
  color: var(--color-primary);
}

.menu-subnav a:hover .subnav-icon {
  transform: rotate(-7deg) scale(1.15);
  color: var(--color-accent);
}

.menu-subnav a:active {
  transform: scale(0.96);
  transition-duration: 0.08s;
}

/* Active pill */
.menu-subnav a.active {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow:
    0 4px 14px -2px rgba(197, 160, 89, 0.4),
    0 1px 4px -1px rgba(197, 160, 89, 0.2);
}

.menu-subnav a.active .subnav-icon {
  color: var(--color-primary);
}

/* ── MENU BODY ────────────────────────────────────────────────── */
.menu-category {
  padding: var(--space-lg) 0;
  scroll-margin-top: calc(var(--header-height) + 72px);
}

.menu-category-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.025em;
}

.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-light) 0%, transparent 100%);
}

.menu-grid {
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Menu item card */
.menu-item {
  background: var(--color-surface);
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  position: relative;
  /* Gold left rule */
  border-left: 3px solid rgba(197, 160, 89, 0.25);
  transition:
    border-left-color var(--t-normal),
    box-shadow var(--t-normal),
    transform var(--t-spring);
}

.menu-item:hover {
  border-left-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.375rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px dashed rgba(17, 17, 22, 0.10);
}

.menu-item-name {
  font-size: var(--text-base);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.menu-item-prices {
  display: flex;
  gap: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  font-size: var(--text-sm);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.menu-item-desc {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  line-height: 1.55;
}

/* Price column headers */
.price-header {
  display: flex;
  justify-content: flex-end;
  gap: 0.875rem;
  padding-right: 1.125rem;
  margin-bottom: var(--space-xs);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
}

.price-header span {
  min-width: 44px;
  text-align: right;
}

/* Menu notice bar */
.menu-notice {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--text-sm);
  border-left: 4px solid var(--color-accent);
}

.menu-notice strong {
  color: var(--color-accent);
}

/* ── SAFE AREA (iOS notch / home indicator) ───────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom));
  }

  .mobile-nav-footer {
    padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom));
  }
}

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    transform: none !important;
  }
}

/* ── MOBILE BOTTOM NAV ───────────────────────────────────────────── */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(65px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 22, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    z-index: 9999;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 6px;
    transition: color 0.2s ease;
  }

  .bottom-nav-item svg {
    color: var(--color-text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .bottom-nav-item.nav-primary {
    color: var(--color-text-light);
  }
  
  .bottom-nav-item.nav-primary svg {
    color: var(--color-accent);
  }

  .bottom-nav-item:hover,
  .bottom-nav-item:active {
    color: var(--color-accent);
  }
  
  .bottom-nav-item:hover svg,
  .bottom-nav-item:active svg {
    color: var(--color-accent);
    transform: scale(1.1);
  }
}

/* --- Trust Bar Info Card --- */
.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  color: var(--color-text-light);
}
.info-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0;
  font-family: var(--font-heading);
}
.info-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin: 0;
}
.info-card .icon-wrapper {
  margin-bottom: var(--space-xs);
}

/* --- Review Stars --- */
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-sm);
}
.review-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  flex: 1;
}
.review-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-sm);
}

/* ── OPENING HOURS DARK SECTION ───────────────────────────── */
.section-dark-hours {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-xl) 0;
  text-align: center;
}

.hours-card-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 500px;
  margin: var(--space-lg) auto;
  text-align: left;
}

.hours-list-dark {
  list-style: none;
}

.hours-list-dark li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}

.hours-list-dark li:last-child {
  border-bottom: none;
}

.hours-list-dark li span:last-child {
  color: var(--color-text-light);
}

.hours-list-dark li.is-today span {
  color: var(--color-accent);
  font-weight: 700;
}

/* ── FLOATING CALL BTN ────────────────────────────────────── */
.floating-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  z-index: 1000;
  animation: float-vibrate 3s infinite;
  transition: transform var(--t-spring), background-color var(--t-fast);
}

.floating-call-btn:hover {
  background-color: #16a34a;
  transform: scale(1.1);
  animation: none;
}

.floating-call-btn svg {
  width: 28px;
  height: 28px;
}

@keyframes float-vibrate {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  10%, 20% { transform: translate3d(-1px, 0, 0) rotate3d(0, 0, 1, -3deg); }
  15%, 25% { transform: translate3d(1px, 0, 0) rotate3d(0, 0, 1, 3deg); }
  30% { transform: translate3d(0, 0, 0) rotate3d(0, 0, 1, 0); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 768px) {
  .floating-call-btn {
    bottom: 90px; /* Above mobile bottom nav */
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* PIMPED BTN */
.btn-pimped {
  position: relative;
  overflow: hidden;
}
.btn-pimped::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}