/* ═══════════════════════════════════════════════════
   TANNA — Global Styles
   Italian Restaurant · Cabo San Lucas
   Light Theme — Mediterranean Linen
   ═══════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --background: #FAFAF8;
  --text-dark: #2A2A2A;
  --text-gray: #4A4A4A;
  --text-light: #6B6B6B;
  --red: #D42B2B;
  --red-light: #E8534A;
  --red-wash: rgba(212,43,43,0.04);
  --border: #E8E4DF;
  --cream: #F5F0E8;
  --gold: #C9A96E;
  --white: #FFFFFF;
  --max-width: 1300px;
  --nav-height: 60px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--background);
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--background);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── FIXED SCROLL ELEMENTS ─── */
.fixed-logo-left {
  position: fixed !important;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100000 !important;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 20px;
  pointer-events: auto;
}

.fixed-logo-left img {
  width: 140px;
  display: block;
}

.fixed-reserve-right {
  position: fixed !important;
  right: 0;
  top: 50%;
  z-index: 100000 !important;
  transform: translateY(-50%);
  pointer-events: auto;
}

.fixed-reserve-tab {
  background: var(--red);
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 20px 14px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.fixed-reserve-tab:hover {
  background: #b82424;
}

.fixed-reserve-flyout {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  white-space: nowrap;
}

.fixed-reserve-right.open .fixed-reserve-flyout {
  opacity: 1;
  visibility: visible;
}

.fixed-reserve-flyout a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--red);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background 0.3s;
}

.fixed-reserve-flyout a:first-child {
  border-radius: 6px 0 0 0;
}

.fixed-reserve-flyout a:last-child {
  border-radius: 0 0 0 6px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.fixed-reserve-flyout a:hover {
  background: #b82424;
}

.fixed-reserve-flyout svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .fixed-logo-left {
    padding: 10px 10px;
  }
  .fixed-logo-left img {
    width: 65px;
  }
  .intro,
  .brunch-callout,
  .reviews-section,
  .map-section {
    padding-left: 80px !important;
  }
  .has-nav-logo .menu-container {
    padding-left: 0 !important;
  }
  .has-nav-logo .intro,
  .has-nav-logo .brunch-callout,
  .has-nav-logo .reviews-section,
  .has-nav-logo .map-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .has-nav-logo .week-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .week-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .fixed-reserve-tab {
    font-size: 0.8rem;
    padding: 20px 14px;
    letter-spacing: 0.25em;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  }
  .fixed-reserve-flyout a {
    font-size: 0.8rem;
    padding: 10px 14px;
  }
}

/* ─── MUCCA BANNER ─── */
.mucca-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 1.2rem 2rem;
  z-index: 100000;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mucca-banner.show {
  transform: translateY(0);
}

.mucca-banner button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 0.5rem;
}

/* ─── STRIPE ACCENT ─── */
.stripe-accent {
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    #D42B2B 0px, #D42B2B 16px,
    #FAFAF8 16px, #FAFAF8 32px
  );
}

/* Top-of-page stripe (fixed) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    #D42B2B 0px, #D42B2B 16px,
    #FAFAF8 16px, #FAFAF8 32px
  );
  z-index: 10000;
}


/* ═══════════════════════════════════════════════════
   SITE LOGO
   ═══════════════════════════════════════════════════ */
.site-logo {
  height: auto;
  object-fit: contain;
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo-link .site-logo {
  width: 150px;
  margin-top: 10px;
}

.hero-logo .site-logo {
  width: clamp(180px, 28vw, 280px);
}

.footer-logo-img .site-logo {
  width: 160px;
  margin: 0 auto 1.5rem;
}


/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 2rem 0;
  z-index: 9999;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.navbar.scrolled .nav-links a,
.navbar--dark .nav-links a {
  color: var(--text-light);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active,
.navbar--dark .nav-links a:hover,
.navbar--dark .nav-links a.active {
  color: var(--text-dark);
}

.navbar--dark .hamburger span {
  background: var(--text-dark);
}

.nav-reserve {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 100px;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500 !important;
  transition: background 0.3s, transform 0.3s;
}

.nav-reserve:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

.nav-instagram {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.nav-instagram:hover {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(20px + var(--nav-height));
  left: 0;
  width: 100%;
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 9998;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--text-dark); }

.mobile-menu .nav-reserve {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

/* Mobile logo in navbar — hidden on desktop */
.nav-mobile-logo {
  display: none;
}
.nav-mobile-left {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100px;
  }
  .nav-links { display: none; }
  .nav-mobile-left {
    display: flex;
    align-items: center;
  }
  .nav-mobile-left .hamburger {
    display: flex;
  }
  .nav-mobile-logo {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-mobile-logo img {
    height: 46px;
    width: auto;
  }
  .nav-right-mobile {
    display: flex;
    align-items: center;
  }
  .hamburger { display: flex; }
  .mobile-menu {
    top: 100px;
  }
  /* Hide static side logo on pages with navbar logo — mobile only */
  .has-nav-logo .fixed-logo-left {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════
   HERO (Landing Page)
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 2rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.hero-ctas .hero-reserve {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.hero-ctas .hero-reserve-secondary {
  display: flex;
  align-items: center;
}

.hero-reserve-secondary {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s;
  line-height: 1;
  box-sizing: border-box;
}

.hero-reserve-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ── Reviews Section ── */
.reviews-section {
  padding: 5rem 2rem 5rem 120px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.reviews-rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.reviews-rating .stars {
  color: #F4B400;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.reviews-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
  flex-shrink: 0;
  width: 320px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: left;
}

.review-card .review-stars {
  color: #F4B400;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.review-card .review-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.review-card .review-author {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
}

.review-card .review-date {
  font-size: 0.65rem;
  color: var(--text-light);
}

.reviews-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.reviews-link:hover {
  color: var(--red);
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-reserve-secondary {
    padding: 0.8rem 2rem;
    font-size: 0.7rem;
  }
  .review-card {
    width: 280px;
  }
}

.hero > *:not(.hero-bg) {
  position: relative;
  z-index: 2;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide--active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
  margin-top: 1.5rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 2rem auto;
}

.hero-reserve {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-top: 1rem;
}

.hero-reserve:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,43,43,0.2);
}

.hero-location {
  margin-top: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-location a {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.hero-location a:hover { color: var(--red-light); }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

.hero-hours {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Solid button (red filled) ── */
.btn-solid {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-solid:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,43,43,0.2);
}

/* ── Photo Strip ── */
.photo-strip {
  padding: 0;
  overflow: hidden;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.strip-slot {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.strip-slot .strip-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.strip-slot .strip-img--active {
  opacity: 1;
}

.photo-strip-grid img:not(.strip-img) {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .photo-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-slot {
    height: 200px;
  }
  .photo-strip-grid img:not(.strip-img) {
    height: 200px;
  }
}

/* ── Reserve Section ── */
.reserve-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--cream);
}

.reserve-inner {
  max-width: 500px;
  margin: 0 auto;
}

.reserve-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.reserve-divider {
  width: 50px;
  height: 1px;
  background: var(--red);
  margin: 1.5rem auto;
}

.reserve-details {
  margin-bottom: 2rem;
}

.reserve-details p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-gray);
  line-height: 2;
}

.reserve-phone {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ─── THE WEEK AT TANNA ─── */
.week-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--cream);
}

.week-inner {
  max-width: 800px;
  margin: 0 auto;
}

.week-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.week-events {
  display: flex;
  gap: 2rem;
}

.week-event {
  flex: 1;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(212, 43, 43, 0.15);
  border-radius: 8px;
}

.week-event h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.week-event h3 em {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}

.week-event-time {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.week-event p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.week-event-teaser {
  font-style: italic;
}

.week-event-deal {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  border-top: 1px solid rgba(212, 43, 43, 0.15);
  padding-top: 0.75rem;
}

@media (max-width: 768px) {
  .week-events {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.reserve-phone-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.reserve-phone-link:hover {
  color: var(--red);
}


/* ═══════════════════════════════════════════════════
   INTRO SECTION (Landing)
   ═══════════════════════════════════════════════════ */
.intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem 6rem 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.intro-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.intro-image {
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }
}


/* ═══════════════════════════════════════════════════
   STORY PAGE
   ═══════════════════════════════════════════════════ */
.story-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.story-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

.story-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

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

.story-section.reverse { direction: rtl; }
.story-section.reverse > * { direction: ltr; }

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.story-text p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-gray);
  margin-bottom: 1.2rem;
}

.story-image {
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.story-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px dashed var(--border);
}

.story-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.story-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.story-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.story-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-gray);
}

.story-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
}

@media (max-width: 768px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .story-section.reverse { direction: ltr; }
}


/* ═══════════════════════════════════════════════════
   MENU PAGE
   ═══════════════════════════════════════════════════ */

/* Category Navigation */
.category-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  width: 100%;
  left: 0;
}

.category-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: center;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-nav-inner::-webkit-scrollbar { display: none; }

@media (max-width: 767px) {
  .category-nav {
    top: 100px;
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
  }
  .category-nav-inner {
    justify-content: flex-start;
    padding: 0 1rem;
  }
}

.cat-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-gray);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: all 0.3s;
}

.cat-btn:hover {
  border-color: var(--text-light);
  color: var(--text-dark);
}

.cat-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Menu Container */
.menu-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 6rem 120px;
}

.menu-hero {
  text-align: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 2rem;
}

.menu-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

.menu-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* Section Headers */
.menu-section {
  margin-bottom: 4rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,43,43,0.2), transparent);
}

/* Section stripe divider */
/* ── Pizza Style Toggle ── */
.pizza-style-toggle {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pizza-style-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.pizza-style-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.pizza-style-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.pizza-style-img {
  height: 160px;
  overflow: hidden;
}

.pizza-style-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pizza-style-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 1rem 0 0.3rem;
  color: var(--text-dark);
}

.pizza-style-card p {
  font-size: 0.8rem;
  color: var(--text-gray);
  padding: 0 1rem 1.2rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .pizza-style-img { height: 120px; }
  .pizza-style-card h4 { font-size: 1.1rem; }
}

/* ── Pizza List Layout ── */
.pizza-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pizza-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(212,43,43,0.3);
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s;
}

.pizza-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.pizza-item-img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}

.pizza-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pizza-item-text {
  flex: 1;
  min-width: 0;
}

.pizza-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.pizza-item-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}

.pizza-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 0.5rem;
}

@media (max-width: 480px) {
  .pizza-item { gap: 1rem; padding: 0.75rem; }
  .pizza-item-img { width: 65px; height: 65px; }
  .pizza-item-name { font-size: 1.1rem; }
  .pizza-item-desc { font-size: 0.8rem; }
}

.pasta-rotate-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.pasta-rotate-img--active {
  opacity: 1;
}

.flip-card--wheel,
.flip-card--wheel * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='10' cy='10' r='8' fill='white' stroke='%23ccc' stroke-width='1'/%3E%3C/svg%3E") 10 10, pointer;
}

.section-divider-img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .section-divider-img {
    height: 160px;
  }
}

.section-stripe {
  height: 6px;
  width: 60px;
  margin: 0 auto 3rem;
  background: repeating-linear-gradient(
    90deg,
    #D42B2B 0px, #D42B2B 16px,
    #FAFAF8 16px, #FAFAF8 32px
  );
  border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Featured card spanning 2 columns */
.flip-card.featured {
  grid-column: span 2;
}

/* Tablet: 2-column grid */
@media (min-width: 768px) and (max-width: 1023px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flip-card.featured {
    grid-column: span 2;
  }
}

/* Carousel dots — hidden by default, shown on mobile */
.carousel-dots {
  display: none;
}

/* Mobile: horizontal scroll carousel */
@media (max-width: 767px) {
  .flip-card.featured {
    grid-column: span 1;
  }

  .cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding: 0 7.5vw;
    scroll-padding-left: 7.5vw;
  }

  .cards-grid::-webkit-scrollbar {
    display: none;
  }

  .cards-grid .flip-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    margin-right: 0;
    height: 300px;
    /* Override slide animations so cards are visible in carousel */
    opacity: 1 !important;
    transform: none !important;
  }

  /* Carousel dot indicators */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .carousel-dot.active {
    background: var(--red);
    transform: scale(1.25);
  }
}

/* Flip Card */
.flip-card {
  height: 340px;
  perspective: 1200px;
  cursor: pointer;
  position: relative;
  width: 100%;
  min-width: 0;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

/* Front Face */
.flip-front {
  background: var(--white);
  border: 1px solid rgba(212,43,43,0.3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.flip-card:hover .flip-front {
  border-color: rgba(212,43,43,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.card-category-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card-content {
  flex: 1;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-weight: 300;
}

.card-subtitle {
  font-size: 0.65rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.25rem;
}

.allergen {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
}

.flip-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}

.flip-card:hover .flip-hint { color: var(--text-gray); }

.flip-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.flip-card:hover .flip-icon {
  border-color: var(--red);
  background: var(--red-wash);
}

.flip-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.5;
}

/* Back Face */
.flip-back {
  transform: rotateY(180deg);
  background: var(--cream);
  border: 1px solid var(--border);
}

.flip-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.4);
  display: block;
}

.flip-back-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, rgba(20,20,20,0.2) 35%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.flip-back-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
}

.close-hint {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}

/* Featured badge */
.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 0 2rem 4rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 4rem;
}

.footer-info {
  font-size: 0.78rem;
  line-height: 2;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.footer-info a {
  color: var(--red);
  transition: color 0.3s;
}

.footer-info a:hover { color: var(--red-light); }

.footer-note {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* Sister Brands */
.footer-brands {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-brands h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

.brand-logo-img[alt="Farol 16"] {
  height: 70px;
}

.brand-logo-img[alt="Mucca Empanadas"] {
  height: 65px;
}

.brand-logo-img[alt="Mise en Place Virtual Kitchen"] {
  height: 60px;
}

.brand-logo-placeholder {
  width: 100px;
  height: 50px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-wash);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer stripe accent */
.footer-stripe {
  width: 60px;
  height: 12px;
  margin: 2rem auto;
  background: repeating-linear-gradient(
    90deg,
    #D42B2B 0px, #D42B2B 16px,
    #FAFAF8 16px, #FAFAF8 32px
  );
  border-radius: 2px;
}

.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page entrance */
.page-enter {
  animation: pageIn 0.6s ease-out both;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .flip-front { padding: 1.5rem; }
  .card-name { font-size: 1.4rem; }
  .card-desc { font-size: 0.82rem; }
  .section-header { flex-wrap: wrap; gap: 0.75rem; padding-left: 7.5vw; padding-right: 7.5vw; }
  .menu-container { padding: 1.5rem 0 4rem; }
  .section-title { font-size: 1.4rem; }
  .menu-section > h3 { padding-left: 7.5vw; }
}


/* ═══════════════════════════════════════════════════
   LANGUAGE TOGGLE
   ═══════════════════════════════════════════════════ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.lang-toggle a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  transition: color 0.3s;
}

.lang-toggle a.active {
  color: var(--red);
  font-weight: 500;
}

.lang-toggle a:hover {
  color: var(--text-dark);
}

.lang-toggle span {
  color: var(--border);
  font-size: 0.75rem;
  font-weight: 300;
}

.mobile-menu .lang-toggle {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 0;
}


/* ═══════════════════════════════════════════════════
   PARMESAN WHEEL LOADER
   ═══════════════════════════════════════════════════ */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader-overlay.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-wheel {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--red);
  animation: loaderSpin 1s linear infinite;
  position: relative;
}

.loader-wheel::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed var(--border);
}

.loader-wheel::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.loader-text {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Crack-open reveal */
.loader-overlay.cracking .loader-wheel {
  animation: loaderCrack 0.5s ease-out forwards;
}

@keyframes loaderCrack {
  0% { transform: scale(1); border-color: var(--red); }
  50% { transform: scale(1.3); border-color: var(--red); }
  100% { transform: scale(2); opacity: 0; border-color: transparent; }
}


/* ═══════════════════════════════════════════════════
   SAUCE WIPE PAGE TRANSITION
   ═══════════════════════════════════════════════════ */
.sauce-wipe {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.sauce-wipe.wiping {
  animation: sauceWipe 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes sauceWipe {
  0% { transform: scaleX(0); transform-origin: left; }
  30% { transform: scaleX(1); transform-origin: left; }
  65% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}


/* ═══════════════════════════════════════════════════
   HERO TEXT LETTER-BY-LETTER REVEAL
   ═══════════════════════════════════════════════════ */
.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: letterReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════
   STEAM / SMOKE PARTICLES
   ═══════════════════════════════════════════════════ */
.steam-container {
  position: absolute;
  bottom: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

.steam-particle {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(200,200,200,0.15), transparent);
  border-radius: 50%;
  filter: blur(3px);
  animation: steamRise 3s ease-out infinite;
}

.steam-particle:nth-child(1) { left: 10px; animation-delay: 0s; }
.steam-particle:nth-child(2) { left: 25px; animation-delay: 0.5s; animation-duration: 3.5s; }
.steam-particle:nth-child(3) { left: 40px; animation-delay: 1s; animation-duration: 2.8s; }
.steam-particle:nth-child(4) { left: 15px; animation-delay: 1.5s; animation-duration: 3.2s; }
.steam-particle:nth-child(5) { left: 35px; animation-delay: 2s; animation-duration: 3.8s; }

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  15% { opacity: 0.4; }
  50% { opacity: 0.2; }
  100% {
    opacity: 0;
    transform: translateY(-100px) translateX(15px) scale(3);
  }
}


/* ═══════════════════════════════════════════════════
   MENU ITEMS SLIDE FROM ALTERNATING SIDES
   ═══════════════════════════════════════════════════ */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ═══════════════════════════════════════════════════
   KEN BURNS EFFECT ON IMAGES
   ═══════════════════════════════════════════════════ */
.ken-burns {
  overflow: hidden;
}

.ken-burns img,
.ken-burns .story-image-placeholder {
  transition: transform 8s ease-out;
  transform: scale(1);
}

.ken-burns.active img,
.ken-burns.active .story-image-placeholder {
  transform: scale(1.08);
}


/* ═══════════════════════════════════════════════════
   FLOATING DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════ */
.floating-herb {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  animation: floatHerb 8s ease-in-out infinite;
}

.floating-herb:nth-child(1) { top: 15%; right: 5%; animation-delay: 0s; }
.floating-herb:nth-child(2) { top: 45%; left: 3%; animation-delay: 2s; animation-duration: 10s; }
.floating-herb:nth-child(3) { bottom: 20%; right: 8%; animation-delay: 4s; animation-duration: 9s; }

.floating-herb svg {
  width: 80px;
  height: 80px;
}

@keyframes floatHerb {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(3deg); }
  66% { transform: translateY(10px) rotate(-2deg); }
}


/* ═══════════════════════════════════════════════════
   CUSTOM CURSOR ON FOOD ITEMS
   ═══════════════════════════════════════════════════ */
.flip-card {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D42B2B' stroke-width='1.5'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 002-2V2M7 2v20M21 15V2v0a5 5 0 00-5 5v6c0 1.1.9 2 2 2h3'/%3E%3C/svg%3E") 12 0, pointer;
}


/* ═══════════════════════════════════════════════════
   SIZZLE BUTTON EFFECT
   ═══════════════════════════════════════════════════ */
.sizzle:hover {
  animation: sizzleShake 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(212,43,43,0.3), 0 0 60px rgba(212,43,43,0.1);
}

@keyframes sizzleShake {
  0%, 100% { transform: translateY(-2px) rotate(0deg); }
  20% { transform: translateY(-3px) rotate(-1deg); }
  40% { transform: translateY(-1px) rotate(1deg); }
  60% { transform: translateY(-3px) rotate(-0.5deg); }
  80% { transform: translateY(-2px) rotate(0.5deg); }
}


/* ═══════════════════════════════════════════════════
   PARALLAX UTILITY
   ═══════════════════════════════════════════════════ */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}


/* ═══════════════════════════════════════════════════
   STICKY CATEGORY IMAGE (Menu Page)
   ═══════════════════════════════════════════════════ */
.sticky-dish-preview {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 50;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.sticky-dish-preview.visible {
  opacity: 1;
  transform: scale(1);
}

.sticky-dish-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}

@media (max-width: 768px) {
  .sticky-dish-preview { display: none; }
}


/* ═══════════════════════════════════════════════════
   SPIN THE WHEEL — EASTER EGG
   ═══════════════════════════════════════════════════ */
.wheel-trigger {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.wheel-trigger:hover {
  border-color: var(--red);
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(212,43,43,0.15);
}

.wheel-trigger svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}

.wheel-modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,42,42,0.5);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.wheel-modal.open {
  opacity: 1;
  visibility: visible;
}

.wheel-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wheel-modal.open .wheel-card {
  transform: translateY(0);
}

.wheel-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.wheel-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.wheel-result {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--red);
  min-height: 2.5rem;
  margin-bottom: 1rem;
}

.wheel-spin-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.wheel-spin-btn:hover { background: var(--red-light); }

.wheel-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .wheel-trigger { bottom: 1rem; left: 1rem; width: 44px; height: 44px; }
}


/* ═══════════════════════════════════════════════════
   FOOD GALLERY (Landing)
   ═══════════════════════════════════════════════════ */
.food-gallery {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.food-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.food-gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.food-gallery-header p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  letter-spacing: 0.02em;
}

.food-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.food-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.food-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.food-gallery-item:hover img {
  transform: scale(1.08);
}

.food-gallery-item--tall {
  grid-row: span 2;
}

.food-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.food-gallery-item:hover .food-gallery-overlay {
  opacity: 1;
}

.food-gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
}

.food-gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .food-gallery { padding: 4rem 1.5rem; }
  .food-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .food-gallery-item--tall { grid-row: span 2; }
}

@media (max-width: 480px) {
  .food-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 10px;
  }
}


/* ═══════════════════════════════════════════════════
   THE EXPERIENCE (Landing)
   ═══════════════════════════════════════════════════ */
.experience-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background: var(--cream);
  z-index: -1;
}

.experience-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.experience-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.experience-content .insta-link {
  margin-top: 2rem;
}

.experience-handle {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  font-weight: 400;
}

.experience-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.experience-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.experience-feature svg {
  width: 48px;
  height: 48px;
  color: var(--red);
  stroke-width: 1.2;
  margin-bottom: 0.5rem;
}

.experience-feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.experience-feature p {
  font-size: 0.85rem;
  color: var(--text-gray);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .experience-section { padding: 4rem 1.5rem; }
  .experience-features { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ═══════════════════════════════════════════════════
   BRUNCH CALLOUT (Landing)
   ═══════════════════════════════════════════════════ */
.brunch-callout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 5rem 120px;
}

.brunch-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brunch-callout-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 0.8rem;
  border: 1px solid var(--red);
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.brunch-callout-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.brunch-callout-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.brunch-callout-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.brunch-callout-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}

.brunch-callout-image:hover img {
  transform: scale(1.04);
}

.brunch-callout--flipped .brunch-callout-inner {
  direction: ltr;
}

.brunch-callout--flipped .brunch-callout-image img {
  object-position: center center;
}

@media (max-width: 768px) {
  .brunch-callout { padding: 3rem 1.5rem; }
  .brunch-callout-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .brunch-callout-inner { direction: ltr; }
  .brunch-callout-image { order: -1; }
}


/* ═══════════════════════════════════════════════════
   INSTAGRAM CTA (Landing)
   ═══════════════════════════════════════════════════ */
.insta-section {
  padding: 5rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,43,43,0.04) 0%, transparent 70%);
}

.insta-content {
  max-width: 600px;
  margin: 0 auto;
}

.insta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.insta-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.insta-link:hover {
  color: var(--red-light);
  transform: translateY(-1px);
}

.insta-link svg {
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   REVIEW TICKER TAPE
   ═══════════════════════════════════════════════════ */
.review-ticker {
  overflow: hidden;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 4rem 0;
}

.review-ticker-inner {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.review-ticker:hover .review-ticker-inner {
  animation-play-state: paused;
}

.review-item {
  flex-shrink: 0;
  max-width: 320px;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-author {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════
   MAP PIN BOUNCE
   ═══════════════════════════════════════════════════ */
.map-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 4rem 120px;
}

.map-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.map-info {
  text-align: center;
}

.map-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  margin-top: 1.2rem;
}

.map-info h3:first-child {
  margin-top: 0;
}

.map-info p {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

.map-info-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--red);
  transition: color 0.3s;
  margin-bottom: 0.3rem;
}

.map-info-link:hover {
  color: var(--red-light);
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* Mute the map tiles to match site palette */
.map-container .leaflet-tile-pane {
  filter: saturate(0.3) brightness(1.04) contrast(0.95);
}

/* Custom pin marker */
.tanna-map-pin {
  background: none !important;
  border: none !important;
}

.tanna-map-pin svg {
  filter: drop-shadow(0 3px 6px rgba(212,43,43,0.35));
}

/* Popup styling */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: 'DM Sans', sans-serif;
}

.leaflet-popup-tip {
  box-shadow: none;
}

/* ── Mobile Lang Toggle ── */
.lang-toggle--mobile {
  display: none;
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .nav-right-mobile {
    display: flex;
  }
  .hero-slide--no-mobile {
    display: none;
  }
  .lang-toggle--mobile {
    display: flex;
  }
}

@media (max-width: 768px) {
  .reserve-section { padding: 3rem 1.5rem; }
  .map-info-grid { grid-template-columns: 1fr; }
  .map-container { height: 280px; }
  .hero { padding: 2rem 1.5rem 3rem; }
  .intro { padding: 3rem 1.5rem; }
  .brunch-callout-inner { flex-direction: column; }
  .brunch-callout-image { max-height: 300px; overflow: hidden; }
  .food-gallery-item--hide-mobile { display: none; }

  .brunch-callout-text .btn-outline,
  .brunch-callout-text .btn-solid {
    display: block;
    text-align: center;
    margin: 0 0 0.75rem 0 !important;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .reserve-section { padding: 2.5rem 1rem; }
  .map-container { height: 220px; }
  .section-divider-img { height: 120px; }
  .hero { padding: 1.5rem 1rem 6rem; }
  .hero-reserve { padding: 0.8rem 2rem; font-size: 0.7rem; }
  .strip-slot { height: 160px; }
}


/* ═══════════════════════════════════════════════════
   HORIZONTAL SCROLL TIMELINE (Story Page)
   ═══════════════════════════════════════════════════ */
.timeline-section {
  overflow: hidden;
  padding: 4rem 0;
}

.timeline-track {
  display: flex;
  gap: 4rem;
  padding: 2rem 4rem;
  transition: transform 0.3s ease-out;
}

.timeline-item {
  flex-shrink: 0;
  width: 350px;
  text-align: center;
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--red);
  margin-bottom: 1rem;
}

.timeline-year.counting {
  transition: none;
}

.timeline-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.timeline-image {
  width: 100%;
  height: 200px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) sepia(20%);
  transition: filter 1.5s ease;
}

.timeline-image.colorized img {
  filter: grayscale(0%) sepia(0%);
}

.timeline-line {
  width: 100%;
  height: 2px;
  background: var(--border);
  margin: 2rem 0;
  position: relative;
}

.timeline-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .timeline-item { width: 280px; }
  .timeline-track { gap: 2rem; padding: 2rem; }
}


/* ═══════════════════════════════════════════════════
   CHALKBOARD SECTION
   ═══════════════════════════════════════════════════ */
.chalkboard {
  background: #2A2A2A;
  padding: 4rem 2rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.chalkboard::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  pointer-events: none;
}

.chalkboard-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.chalkboard h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.chalk-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  overflow: hidden;
}

.chalk-text .chalk-char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.05s;
}

.chalk-text .chalk-char.written {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════
   PHOTO COLOR CORRECT ON SCROLL
   ═══════════════════════════════════════════════════ */
.photo-reveal {
  overflow: hidden;
}

.photo-reveal img {
  filter: grayscale(100%) sepia(30%) brightness(0.8);
  transition: filter 1.2s ease;
}

.photo-reveal.colorized img {
  filter: grayscale(0%) sepia(0%) brightness(1);
}


/* ═══════════════════════════════════════════════════
   DATE COUNTER ANIMATION
   ═══════════════════════════════════════════════════ */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .steam-particle, .floating-herb, .scroll-arrow, .loader-wheel {
    animation: none !important;
  }
  .reveal { transition: opacity 0.3s ease !important; transform: none !important; }
  .reveal.visible { opacity: 1; }
  .parallax-bg { transform: none !important; }
}

/* ── Focus Styles (a11y) ── */
*:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
