/* ════════════════════════════════════════════
   PAPAYA PAPA — DESIGN SYSTEM
   Brand guidelines v.01 June 2024 applied
════════════════════════════════════════════ */

:root {
  --speed: 1.1s;
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ── Brand tokens ───────────────────────── */
  --papa-red:   #C83D01;
  --papa-beige: #F2EDE3;
  --papa-brown: #3F0101;
  --papa-blue:  #00147D;
  --papa-green: #0E2606;
  --papa-mint:  #639C70;

  /* ── Sunset / Golden Hour palette ────────
     Papa Red dominant                       */
  --sun-bg1:   #0D0100;
  --sun-bg2:   #3F0101;
  --sun-bg3:   #7A1A00;
  --sun-bg4:   #C83D01;
  --sun-glow:  rgba(200, 61, 1, 0.5);
  --sun-accent: var(--papa-beige);

  /* ── Dinner palette ───────────────────────
     Deep Papa Brown                         */
  --din-bg1:   #030000;
  --din-bg2:   #180000;
  --din-bg3:   #3F0101;
  --din-bg4:   #5A1000;
  --din-glow:  rgba(90, 16, 0, 0.5);
  --din-accent: var(--papa-red);

  /* ── Party palette ────────────────────────
     Papa Blue                               */
  --par-bg1:   #000008;
  --par-bg2:   #000515;
  --par-bg3:   #000F50;
  --par-bg4:   #00147D;
  --par-glow:  rgba(0, 20, 125, 0.6);
  --par-accent: var(--papa-beige);

  /* ── Typography ───────────────────────────
     Headline: Barlow Condensed (Formula Condensed Bold substitute)
     Body:     Cormorant Garamond (IvyPresto Text Thin substitute)
     Mono:     DM Mono                       */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-mono:    'DM Mono', monospace;
}

/* ─── Reset ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #0F0D0A;
  color: var(--papa-beige);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Grain texture overlay ─────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ════════════════════════════════════════════
   BACKGROUND LAYERS
════════════════════════════════════════════ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  transition: opacity var(--speed) var(--ease);
  background-size: cover;
  background-position: center;
}

.bg-sunset {
  opacity: 1;
  background:
    linear-gradient(180deg,
      rgba(5,1,0,0.63) 0%,
      rgba(5,1,0,0.47) 30%,
      rgba(5,1,0,0.43) 55%,
      rgba(5,1,0,0.53) 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 68%, rgba(200,80,10,0.28) 0%, transparent 70%),
    url('../img/sunset.jpg') center / cover no-repeat;
}

.bg-dinner {
  opacity: 0;
  background:
    linear-gradient(180deg,
      rgba(8,3,1,0.49) 0%,
      rgba(8,3,1,0.31) 35%,
      rgba(8,3,1,0.37) 65%,
      rgba(8,3,1,0.55) 100%
    ),
    radial-gradient(ellipse 60% 50% at 50% 70%, rgba(200,80,10,0.35) 0%, transparent 70%),
    url('../img/dinner.jpg') center / cover no-repeat;
  filter: saturate(0.50) brightness(1.11);
}

.bg-party {
  opacity: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,8,0.57) 0%,
      rgba(0,0,8,0.37) 35%,
      rgba(0,0,8,0.43) 65%,
      rgba(0,0,8,0.63) 100%
    ),
    radial-gradient(ellipse 60% 45% at 50% 55%, rgba(80,40,180,0.35) 0%, transparent 68%),
    url('../img/party.jpg') center / cover no-repeat;
  filter: brightness(1.03);
}

/* Mode switching */
body.mode-dinner .bg-sunset {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 1, 1);
}
body.mode-dinner .bg-dinner {
  opacity: 1;
  transition: opacity 1.8s 1.4s cubic-bezier(0, 0, 0.2, 1);
}
body.mode-party  .bg-sunset { opacity: 0; transition: opacity 1.4s cubic-bezier(0.4, 0, 1, 1); }
body.mode-party  .bg-dinner { opacity: 0; transition: opacity 1.4s cubic-bezier(0.4, 0, 1, 1); }
body.mode-party  .bg-party  { opacity: 1; transition: opacity 1.8s 1.4s cubic-bezier(0, 0, 0.2, 1); }

body:not(.mode-dinner):not(.mode-party) .bg-dinner { opacity: 0; transition: opacity 1.4s cubic-bezier(0.4, 0, 1, 1); }
body:not(.mode-dinner):not(.mode-party) .bg-party  { opacity: 0; transition: opacity 1.4s cubic-bezier(0.4, 0, 1, 1); }
body:not(.mode-dinner):not(.mode-party) .bg-sunset { opacity: 1; transition: opacity 1.8s 1.4s cubic-bezier(0, 0, 0.2, 1); }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 52px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.site-nav.scrolled {
  padding: 20px 52px;
}

.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  animation: logoSlideIn 1s var(--ease-soft) 0.2s both;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  filter: none;
  opacity: 1;
  transition: filter 0.35s var(--ease-soft), opacity 0.35s;
}

.nav-logo:hover .nav-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

@keyframes logoSlideIn {
  from  { opacity: 0; transform: translateX(-28px) rotate(-6deg); }
  60%   { transform: translateX(6px) rotate(1deg); }
  to    { opacity: 1; transform: translateX(0) rotate(0deg); }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: #fff; }

.reserve-btn-hero {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--papa-red);
  padding: 12px 28px;
  border-radius: 100px;
  transition: background 0.2s;
  box-shadow: 0 4px 20px rgba(200,61,1,0.4);
}
.reserve-btn-hero:hover { background: #e04800; }

@media (min-width: 769px) {
  .reserve-btn-hero { display: none; }
}

.reserve-btn {
  position: fixed;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--papa-red);
  padding: 12px 22px;
  border-radius: 100px;
  z-index: 900;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(200,61,1,0.4);
}
.reserve-btn:hover {
  background: #e04800;
  transform: translateY(calc(-50% - 2px));
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  animation: fadeUp 1s var(--ease-soft) 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 14vw, 160px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--papa-beige);
  margin-bottom: 32px;
  animation: fadeUp 1.2s var(--ease) 0.5s both;
}

.title-papaya,
.title-papa {
  display: block;
  transition: color 1.2s var(--ease-soft), text-shadow 1.2s var(--ease-soft);
}

/* ─── Golden Hour — warm amber sun ─────── */
body:not(.mode-dinner):not(.mode-party) .title-papaya {
  color: #FFB347;
  text-shadow:
    0 0 60px rgba(200,80,10,0.55),
    0 0 140px rgba(200,61,1,0.25);
}
body:not(.mode-dinner):not(.mode-party) .title-papa {
  color: var(--papa-beige);
  text-shadow: 0 0 80px rgba(200,80,10,0.3);
}

/* ─── Dinner — ivory with candlelight glow  */
body.mode-dinner .title-papaya,
body.mode-dinner .title-papa {
  color: #D4AF37;
  text-shadow:
    0 0 20px rgba(220,120,30,0.9),
    0 0 60px rgba(180,70,10,0.65),
    0 0 120px rgba(120,30,0,0.4);
}

/* ─── Party — electric white, violet halo ─ */
body.mode-party .title-papaya,
body.mode-party .title-papa {
  color: #ffffff;
  text-shadow:
    0 0 30px rgba(192,128,255,0.9),
    0 0 80px rgba(192,128,255,0.5),
    0 0 180px rgba(0,20,125,0.45);
}

/* Phase-specific taglines */
.hero-tagline {
  max-width: 480px;
  min-height: 250px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.92);
  animation: fadeUp 1s var(--ease-soft) 0.8s both;
}

.tagline { display: none; opacity: 0; transition: opacity 0.6s ease; }
body:not(.mode-dinner):not(.mode-party) .tagline-sunset,
body.mode-sunset .tagline-sunset { display: block; opacity: 1; }
body.mode-dinner .tagline-dinner  { display: block; opacity: 1; }
body.mode-party  .tagline-party   { display: block; opacity: 1; }

/* Phase timestamp badge */
.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 48px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: fadeUp 1s var(--ease-soft) 1s both;
}

.phase-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--papa-red);
  animation: pulse 2s ease infinite;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s var(--ease-soft) 1.4s both;
}

.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(233,230,219,0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(233,230,219,0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ════════════════════════════════════════════
   MODE SWITCHER (Fixed Bottom)
════════════════════════════════════════════ */
.mode-switcher {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 600;
  display: flex;
  gap: 3px;
  padding: 6px;
  background: rgba(10, 1, 0, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(233,230,219,0.2);
  border-radius: 60px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mode-switcher.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}

.mode-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 29px;
  border: none;
  background: transparent;
  color: rgba(233,230,219,0.85);
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.45s var(--ease-soft);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-btn .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mode-btn:hover { color: rgba(233,230,219,1); }

/* Active states — brand colors */
body:not(.mode-dinner):not(.mode-party) .mode-btn[data-mode="sunset"],
body.mode-sunset .mode-btn[data-mode="sunset"] {
  background: rgba(200, 61, 1, 0.25);
  color: var(--sun-accent);
}
body:not(.mode-dinner):not(.mode-party) .mode-btn[data-mode="sunset"] .dot,
body.mode-sunset .mode-btn[data-mode="sunset"] .dot { opacity: 1; }

body.mode-dinner .mode-btn[data-mode="dinner"] {
  background: rgba(210, 170, 40, 0.2);
  color: #F0CC45;
}
body.mode-dinner .mode-btn[data-mode="dinner"] .dot { opacity: 1; }

body.mode-party .mode-btn[data-mode="party"] {
  background: rgba(0, 20, 125, 0.4);
  color: var(--par-accent);
}
body.mode-party .mode-btn[data-mode="party"] .dot { opacity: 1; }

/* ════════════════════════════════════════════
   CONTENT WRAPPER
════════════════════════════════════════════ */
.section-divider {
  position: relative;
  z-index: 10;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(63,1,1,0.2), transparent);
}

.content-wrap {
  position: relative;
  z-index: 10;
  background: #0F0D0A;
}

/* ════════════════════════════════════════════
   ETHOS SECTION
════════════════════════════════════════════ */
.ethos-section {
  background: var(--papa-beige);
}

.ethos-section .about-label {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(63,1,1,0.18);
}

.ethos-section .about-text {
  color: rgba(40,8,4,0.72);
}

.ethos-section .ethos-headline {
  color: var(--papa-brown);
}

.ethos-section .ethos-closer {
  color: rgba(63,1,1,0.35) !important;
}

/* ════════════════════════════════════════════
   ABOUT STRIP
════════════════════════════════════════════ */
.about-strip {
  padding: 90px 52px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.about-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(233,230,219,0.3);
  padding-top: 6px;
}

.about-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(233,230,219,0.7);
}

.about-text p {
  margin-bottom: 24px;
}

.about-text p:last-child { margin-bottom: 0; }

.ethos-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--papa-beige);
  margin-bottom: 40px !important;
}

.ethos-statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--papa-red);
  margin-top: 40px;
  margin-bottom: 24px !important;
}

.ethos-closer {
  font-style: italic;
  color: rgba(233,230,219,0.45) !important;
  font-size: clamp(14px, 1.2vw, 16px) !important;
}

/* ════════════════════════════════════════════
   MENU
════════════════════════════════════════════ */
.menu-section {
  background: #0F0D0A;
  border-top: 1px solid rgba(242,237,227,0.08);
  padding: 80px 0 80px;
}

.menu-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 52px;
}

.menu-header {
  margin-bottom: 48px;
}

.menu-heading {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(233,230,219,0.9);
}

.menu-heading em {
  display: block;
  font-style: normal;
}

.menu-tabs {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
}

.menu-tab {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.menu-tab:hover { color: rgba(255,255,255,1); }

.menu-tab.active {
  color: var(--papa-red);
  border-color: var(--papa-red);
}

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

.menu-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}

.menu-section-label {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--papa-red);
  padding-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200,61,1,0.2);
  margin-bottom: 0;
}

.menu-grid-full .menu-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(233,230,219,0.05);
}

.menu-grid-full .item-name {
  font-size: 13px;
}

.kitchen-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: start;
}
.kitchen-cols .menu-section-label {
  padding-top: 20px;
  margin-bottom: 0;
}
.kitchen-cols > div > .menu-section-label:first-child {
  padding-top: 0;
}
.kitchen-cols .menu-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(233,230,219,0.05);
}
.kitchen-cols .item-name {
  font-size: 13px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(233,230,219,0.05);
  gap: 24px;
}

.item-name {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.03em;
  color: rgba(233,230,219,0.88);
  margin-bottom: 5px;
}

.item-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(233,230,219,0.35);
  line-height: 1.6;
}

.item-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(233,230,219,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 44px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233,230,219,0.2);
  text-align: center;
}

/* ════════════════════════════════════════════
   INFO / VISIT SECTION
════════════════════════════════════════════ */
.info-section .info-block-title { color: var(--papa-brown); }
.info-section .info-label { color: rgba(63,1,1,0.45); }
.info-section .info-list li { color: rgba(40,8,4,0.8); border-bottom-color: rgba(63,1,1,0.1); }
.info-section .info-list .day { color: var(--papa-brown); }
.info-section .info-list .closed-day { color: var(--papa-red); font-weight: 700; }
.info-section .map-link { color: rgba(63,1,1,0.45); border-bottom-color: rgba(200,61,1,0.3); }
.info-section .map-link:hover { color: var(--papa-red); border-color: var(--papa-red); }
.info-section {
  background: var(--papa-beige);
  border-top: 1px solid rgba(63,1,1,0.1);
  padding: 100px 52px;
}

.info-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 72px;
}

.info-block-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(233,230,219,0.85);
  margin-bottom: 28px;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(233,230,219,0.7);
  margin-bottom: 20px;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(233,230,219,0.08);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}

.info-list li:last-child { border-bottom: none; }
.info-list .day { color: #ffffff; font-weight: 700; }
.info-list .closed-day { color: rgba(255,80,80,0.7); font-weight: 700; }

.info-block a {
  color: rgba(233,230,219,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.info-block a:hover { color: var(--papa-beige); }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233,230,219,0.4);
  text-decoration: none;
  margin-top: 16px;
  border-bottom: 1px solid rgba(200,61,1,0.3);
  padding-bottom: 4px;
  transition: all 0.3s;
}

.map-link:hover {
  color: var(--papa-red);
  border-color: var(--papa-red);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: #090807;
  border-top: 1px solid rgba(233,230,219,0.04);
  padding: 36px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233,230,219,0.75);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(233,230,219,0.6);
}

.footer-social a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(233,230,219,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--papa-red); }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

@keyframes scrollPulse {
  0%   { transform: scaleY(1); opacity: 0.4; }
  50%  { transform: scaleY(0.6) translateY(-4px); opacity: 0.7; }
  100% { transform: scaleY(1); opacity: 0.4; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-logo-img { height: 40px; }

  .hero { padding-top: 90px; justify-content: flex-start; padding-bottom: 120px; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-title { font-size: 56px; margin-bottom: 24px; }

  .reserve-btn { display: none !important; }

  .reserve-btn-hero { margin-bottom: 20px; }

  .phase-badge { margin-bottom: 24px; }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 70px 24px;
  }

  .menu-inner { padding: 0 24px; }
  .menu-header { padding-bottom: 0; }
  .menu-tabs { position: static; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 20px; margin-top: 24px; }
  .menu-grid { grid-template-columns: 1fr; }

  .info-section { padding: 80px 24px; }
  .info-inner { grid-template-columns: 1fr; gap: 50px; }

  footer { padding: 28px 24px; flex-direction: column; gap: 16px; text-align: center; }

  .mode-btn { padding: 10px 16px; font-size: 8px; }
}
