:root {
  --background: hsl(38 30% 96%);
  --foreground: hsl(220 25% 12%);
  --muted-foreground: hsl(220 12% 38%);
  --gold: hsl(40 55% 55%);
  --gold-soft: hsl(40 35% 75%);
  --midnight: hsl(215 35% 10%);
  --ivory: hsl(38 30% 96%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--midnight);
  color: var(--ivory);
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, 100% - 3rem);
  margin-inline: auto;
}

.bg-ivory { background: var(--ivory); }
.text-foreground { color: var(--foreground); }
.text-ivory { color: var(--ivory); }
.text-gold { color: var(--gold); }
.italic { font-style: italic; }

.eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.gold-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(40 55% 55% / 0.6), transparent);
}

.short { width: 120px; margin: 2.5rem 0; }
.centered { width: 96px; margin: 2.5rem auto; }
.center { text-align: center; }
.narrow { max-width: 760px; }

.section { padding: 7rem 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: hsl(215 35% 10% / 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 hsl(40 55% 55% / 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand--logo {
  gap: 0;
}
.brand-logo-img {
  display: block;
  height: clamp(28px, 5.5vw, 42px);
  width: auto;
  max-width: min(260px, 72vw);
  object-fit: contain;
  transition: opacity 0.25s ease;
}
.brand--logo:hover .brand-logo-img {
  opacity: 0.88;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.desktop-nav > a.nav-section-link.nav-active,
.mobile-links > a.nav-section-link.nav-active {
  color: var(--gold);
}

.site-header.scrolled .desktop-nav > a.nav-section-link.nav-active,
.site-header.scrolled .mobile-links > a.nav-section-link.nav-active {
  color: var(--gold);
}

.footer-designs {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-designs-label {
  color: var(--muted-foreground);
}
.footer-designs a {
  color: hsl(38 30% 96% / 0.55);
  transition: color 0.2s ease;
}
.footer-designs a:hover,
.footer-designs a[aria-current="page"] {
  color: var(--gold);
}

.desktop-nav > a:not(.button-outline) {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(38 30% 96% / 0.8);
  transition: color 0.25s ease;
}

.desktop-nav > a:not(.button-outline):hover { color: var(--gold); }

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(40 55% 55% / 0.7);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  padding: 0.7rem 1.3rem;
  transition: all 0.25s ease;
}

.button-outline:hover {
  background: var(--gold);
  color: var(--midnight);
}

.button-outline.lg {
  margin-top: 3rem;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  padding: 1rem 2rem;
}

.mobile-toggle,
.mobile-nav { display: none; }

.mobile-toggle {
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-toggle .icon-close { display: none; }
.mobile-toggle.open .icon-menu { display: none; }
.mobile-toggle.open .icon-close { display: inline; }

.mobile-nav {
  margin-top: 0.75rem;
  border-top: 1px solid hsl(40 55% 55% / 0.2);
  background: hsl(215 35% 10% / 0.95);
  padding: 1.5rem;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(38 30% 96% / 0.8);
}

.mobile-book { margin-top: 0.5rem; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--midnight);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  transform: translateY(var(--parallax-y, 0));
}

.hero-bg {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(215 35% 10% / 0.7), hsl(215 35% 10% / 0.3), hsl(215 35% 10% / 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--ivory);
}

.hero-title {
  margin-top: 1.5rem;
  font-size: clamp(5rem, 18vw, 15rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.hero-rule {
  margin-top: 2rem;
  width: 6rem;
  height: 1px;
  background: var(--gold);
}

.hero-subtitle {
  margin-top: 2rem;
  max-width: 42rem;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  color: hsl(38 30% 96% / 0.85);
}

.hero-meta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 2.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(38 30% 96% / 0.7);
}

.hero-meta a { transition: color 0.2s ease; }
.hero-meta a:hover { color: var(--gold); }

.scroll-label {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: hsl(38 30% 96% / 0.5);
}

.section-about { padding-top: 8rem; padding-bottom: 10rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.about-copy h2,
.section-signature h2,
.section-dishes h2,
.gallery-head h2,
.findus-copy h2,
.section-menu h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
}

.lead {
  margin-top: 1.5rem;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--muted-foreground);
}

.copy-text {
  display: grid;
  gap: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: hsl(220 25% 12% / 0.8);
}

.about-media-wrap { position: relative; }
.main-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 24px 48px hsl(215 35% 10% / 0.2);
}
.floating-photo {
  position: absolute;
  left: -2rem;
  bottom: -4rem;
  z-index: 3;
  width: 66%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 24px 48px hsl(215 35% 10% / 0.24);
}
.about-border {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid hsl(40 55% 55% / 0.4);
  z-index: 1;
}

.section-signature { padding-top: 4rem; padding-bottom: 10rem; }

.section-menu {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
  color: var(--ivory);
  padding: 8rem 0 11rem;
}
.menu-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("../images/narcissus-kouros-infinity-pool-sunset-view.webp");
  background-size: cover;
  background-position: center;
}
.section-menu .container { position: relative; z-index: 1; }
.menu-text {
  margin-inline: auto;
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: hsl(38 30% 96% / 0.75);
}

.section-dishes { padding-top: 7rem; padding-bottom: 10rem; }
.section-dishes .center { margin-bottom: 4rem; }
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.photo-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease-out;
}

.photo-card:hover img { transform: scale(1.1); }

.section-gallery { padding-top: 8rem; padding-bottom: 10rem; }
.gallery-head { max-width: 42rem; margin-bottom: 4rem; }
.gallery-head p {
  margin-top: 1.5rem;
  max-width: 35rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: hsl(220 25% 12% / 0.75);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.6s ease-out;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tile-sm img { aspect-ratio: 4 / 3; }
.gallery-item.tile-md img { aspect-ratio: 4 / 3; }
.gallery-item.tile-lg img { aspect-ratio: 3 / 4; }
.gallery-item.tile-wide img { aspect-ratio: 16 / 9; }
.gallery-item figcaption {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.section-findus {
  background: var(--midnight);
  color: var(--ivory);
  padding: 0;
}
.findus-grid {
  width: min(1280px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
}

.findus-copy {
  padding: 6rem 1.5rem;
}

.findus-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.findus-copy li { display: grid; gap: 0.4rem; }

.findus-copy strong {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(38 30% 96% / 0.5);
  font-weight: 400;
}

.findus-copy span,
.findus-copy a {
  color: hsl(38 30% 96% / 0.9);
  font-size: 0.95rem;
}
.findus-copy a:not(.button-outline):hover { color: var(--gold); }

.findus-map-wrap {
  position: relative;
  width: 100%;
  min-height: 400px;
  aspect-ratio: 4 / 5;
  overflow: visible;
}

.findus-map-iframe {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: block;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 0;
  filter: grayscale(100%);
}

.findus-map-wrap::after {
  content: "";
  position: absolute;
  inset: 1.6rem 0.4rem 0.4rem 1.6rem;
  z-index: 1;
  border: 1px solid hsl(40 55% 55% / 0.38);
  pointer-events: none;
}

.section-footer {
  background: var(--midnight);
  border-top: 1px solid hsl(40 55% 55% / 0.15);
  color: hsl(38 30% 96% / 0.7);
  padding: 4rem 0;
}

.footer-brand {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.footer-brand--logo {
  display: inline-block;
  line-height: 0;
  color: transparent;
}
.footer-logo-img {
  display: block;
  height: clamp(30px, 4.5vw, 40px);
  width: auto;
  max-width: min(220px, 80vw);
  margin-inline: auto;
  object-fit: contain;
  opacity: 0.95;
}
.footer-brand--logo:hover .footer-logo-img {
  opacity: 1;
}

.footer-nav {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.footer-nav a,
.socials a {
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.socials a:hover {
  color: var(--gold);
}

.socials {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.foot-rule { width: min(100%, 24rem); margin-top: 2.2rem; }

.copyright {
  margin-top: 1.4rem;
  max-width: 52rem;
  margin-inline: auto;
  font-size: 0.72rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: hsl(38 30% 96% / 0.55);
}
.copyright-meta {
  white-space: normal;
}
.copyright a {
  color: hsl(38 30% 96% / 0.75);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}
.copyright a:hover {
  color: var(--gold);
}
.copyright-sep {
  color: hsl(38 30% 96% / 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (min-width: 768px) {
  .container { width: min(1280px, 100% - 5rem); }
  .section-about { padding-top: 10rem; }
  .about-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 5rem;
  }
  .about-copy { grid-column: span 6 / span 6; padding-top: 3rem; }
  .about-media { grid-column: span 6 / span 6; }
  .section-dishes .center { margin-bottom: 5rem; }
  .dishes-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
  }
  .gallery-item,
  .gallery-item.tile-sm,
  .gallery-item.tile-md,
  .gallery-item.tile-lg,
  .gallery-item.tile-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item.tile-wide { grid-column: span 2; }
  .findus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .findus-copy { padding: 10rem 4rem; }
  .findus-map-wrap {
    aspect-ratio: auto;
    height: 100%;
    min-height: 500px;
  }
  .findus-map-iframe {
    top: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
  }
  .findus-map-wrap::after {
    inset: 2.8rem 1.2rem 1.2rem 2.8rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-item.tile-wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle { display: block; }
  .mobile-nav.open { display: block; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .floating-photo { display: none; }
}

.experience-title {
  margin-top: 2rem;
  max-width: 70rem;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--ivory);
}

.experience-overlay {
  background: linear-gradient(to bottom, hsl(215 35% 10% / 0.55), hsl(215 35% 10% / 0.25), hsl(215 35% 10% / 0.85));
}

.hero-cta-row {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.button-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--gold);
  color: var(--midnight);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  padding: 1rem 2.25rem;
  transition: background 0.2s ease;
}

.button-solid:hover {
  background: var(--gold-soft);
}

.button-outline.light {
  border-color: hsl(38 30% 96% / 0.4);
  color: var(--ivory);
}

.button-outline.light:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.button-outline.dark {
  border-color: hsl(220 25% 12% / 0.3);
  color: var(--foreground);
}

.button-outline.dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  color: hsl(38 30% 96% / 0.6);
  font-size: 1.5rem;
  animation: bounce 1.4s infinite;
}

.section-story { padding: 8rem 0 11rem; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.story-grid h2,
.section-exp-menu h2,
.section-cocktails h2,
.section-faq h2,
.section-reviews h2,
.section-closing h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}
.story-quote {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-style: italic;
  color: hsl(220 25% 12% / 0.8);
  line-height: 1.3;
}
.story-stats {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsl(30 15% 84%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.story-stats small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}
.story-stats strong {
  display: block;
  margin-top: 0.5rem;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.section-chef {
  background: var(--midnight);
  color: var(--ivory);
  padding: 8rem 0 11rem;
}
.chef-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.chef-image-wrap { position: relative; }
.chef-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.chef-border {
  position: absolute;
  z-index: 1;
  right: -1rem;
  bottom: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid hsl(40 55% 55% / 0.4);
}
.chef-lead {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: hsl(38 30% 96% / 0.7);
}
.centered-left { width: 96px; margin: 2.5rem 0; }
.chef-copy {
  display: grid;
  gap: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: hsl(38 30% 96% / 0.8);
}
.tag-list {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag-list span {
  border: 1px solid hsl(40 55% 55% / 0.4);
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(38 30% 96% / 0.7);
}

.section-exp-menu { padding: 8rem 0 11rem; }

.menu-pdf-block {
  margin: 3rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.85;
  color: hsl(220 25% 12% / 0.8);
}
.menu-columns {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.menu-col-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid hsl(40 55% 55% / 0.4);
  padding-bottom: 1rem;
}
.menu-col-head h3 {
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
}
.menu-col-head span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}
.menu-columns ul {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}
.menu-columns li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.menu-columns h4 {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.menu-columns small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.menu-columns strong {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.35rem;
  color: var(--gold);
}

.section-cocktails { padding: 8rem 0 11rem; }
.cocktail-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.cocktail-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.cocktail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease-out;
}
.cocktail-img:hover img {
  transform: scale(1.1);
}
.cocktail-img span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: hsl(38 30% 96% / 0.9);
}
.cocktail-grid h3 {
  margin-top: 1.5rem;
  font-size: 2rem;
}
.cocktail-grid p {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.section-reviews {
  background: var(--midnight);
  color: var(--ivory);
  padding: 8rem 0 11rem;
}
.stars {
  margin-top: 2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.reviews-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.reviews-grid figure {
  margin: 0;
  border-top: 1px solid hsl(40 55% 55% / 0.3);
  padding-top: 2rem;
}
.reviews-grid blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-style: italic;
  color: hsl(38 30% 96% / 0.85);
  line-height: 1.35;
}
.reviews-grid figcaption {
  margin-top: 2rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: hsl(38 30% 96% / 0.6);
}

.section-faq { padding: 8rem 0 11rem; }
.faq-wrap { max-width: 900px; }
.faq-list {
  margin-top: 3.5rem;
  border-top: 1px solid hsl(30 15% 84%);
  border-bottom: 1px solid hsl(30 15% 84%);
}
.faq-item {
  border-bottom: 1px solid hsl(30 15% 84%);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: var(--foreground);
  cursor: pointer;
}
.faq-q span {
  color: var(--gold);
  transition: transform 0.5s ease;
}
.faq-q.open span {
  transform: rotate(180deg);
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: all 0.5s ease;
}
.faq-a.open {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 2rem;
}
.faq-a p {
  margin: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.85;
  color: hsl(220 25% 12% / 0.75);
}

.section-closing {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
  color: var(--ivory);
  padding: 8rem 0 11rem;
}
.closing-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("../images/narcissus-kouros-sunset-panorama-wide.webp");
  background-size: cover;
  background-position: center;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(215 35% 10% / 0.7), hsl(215 35% 10% / 0.6), hsl(215 35% 10%));
}
.closing-inner {
  position: relative;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 6rem;
  }
  .story-grid > div:first-child { grid-column: span 5 / span 5; }
  .story-grid > div:last-child { grid-column: span 7 / span 7; }
  .chef-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 5rem;
  }
  .chef-grid > div:first-child { grid-column: span 5 / span 5; }
  .chef-grid > div:last-child { grid-column: span 7 / span 7; padding-top: 2rem; }
  .menu-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
  }
  .cocktail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cocktail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ----- Cookie consent + Consent Mode UI ----- */
body.cc-modal-open {
  overflow: hidden;
}

#cc-root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.cc-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10050;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
  background: hsl(215 35% 10% / 0.97);
  border-top: 1px solid hsl(40 55% 55% / 0.35);
  box-shadow: 0 -12px 40px hsl(215 35% 10% / 0.35);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s step-end;
  color: hsl(38 30% 96% / 0.92);
}

.cc-banner.is-visible {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s step-start;
}

.cc-banner-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .cc-banner-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cc-banner-title {
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.cc-banner-desc {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: hsl(38 30% 96% / 0.78);
  max-width: 52rem;
}

.cc-banner-links {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cc-inline-link {
  color: hsl(40 55% 55% / 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cc-inline-link:hover {
  color: var(--gold-soft);
}

.cc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cc-btn {
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.75rem 1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cc-btn-primary {
  background: var(--gold);
  color: var(--midnight);
  border-color: hsl(40 55% 55% / 0.9);
}

.cc-btn-primary:hover {
  background: var(--gold-soft);
}

.cc-btn-ghost {
  background: transparent;
  color: hsl(38 30% 96% / 0.85);
  border-color: hsl(38 30% 96% / 0.35);
}

.cc-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cc-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 10055;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid hsl(40 55% 55% / 0.55);
  background: hsl(215 35% 10% / 0.92);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px hsl(215 35% 10% / 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cc-float:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  background: hsl(215 35% 10% / 0.98);
}

.cc-float-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.cc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: hsl(215 35% 10% / 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cc-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 10061;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
}

.cc-modal.is-open {
  pointer-events: auto;
}

.cc-modal-panel {
  position: relative;
  width: min(100%, 28rem);
  max-height: min(90vh, 36rem);
  overflow-y: auto;
  background: var(--ivory);
  color: var(--foreground);
  border: 1px solid hsl(40 55% 55% / 0.35);
  box-shadow: 0 24px 60px hsl(215 35% 10% / 0.25);
  padding: 2rem 1.75rem 1.75rem;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cc-modal.is-open .cc-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cc-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted-foreground);
}

.cc-modal-close:hover {
  color: var(--gold);
}

.cc-modal-title {
  margin: 0 2rem 0 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
}

.cc-modal-intro {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: hsl(220 25% 12% / 0.75);
}

.cc-toggle-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cc-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid hsl(30 15% 84%);
}

.cc-toggle-row:first-of-type {
  border-top: 1px solid hsl(30 15% 84%);
}

.cc-toggle-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

.cc-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.cc-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.cc-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-switch-ui {
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: hsl(30 15% 84%);
  transition: background 0.2s ease;
  position: relative;
}

.cc-switch-ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.5rem - 4px);
  height: calc(1.5rem - 4px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px hsl(215 35% 10% / 0.2);
  transition: transform 0.2s ease;
}

.cc-switch input:checked + .cc-switch-ui {
  background: hsl(40 55% 55% / 0.85);
}

.cc-switch input:checked + .cc-switch-ui::after {
  transform: translateX(1.25rem);
}

.cc-modal-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

/* Tabbed menu board */
.section-menu-board {
  padding: 7rem 0 10rem;
  background: var(--background);
}
.section-menu-board h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}
.menu-board-intro {
  margin: 1.5rem auto 0;
  max-width: 62rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}
.menu-board-intro-break {
  display: block;
  margin-top: 0.1rem;
  white-space: normal;
}
.menu-board-feature {
  margin: 3rem auto 2.5rem;
  max-width: 520px;
  position: relative;
  overflow: visible;
}
.menu-board-feature::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -1rem;
  bottom: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid hsl(40 55% 55% / 0.4);
}
.menu-board-feature img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.menu-board-layout {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.menu-tabs-controls {
  margin-bottom: 2.5rem;
}
.menu-category-select-wrap {
  display: none;
  max-width: 22rem;
  margin-inline: auto;
}
.menu-category-select-wrap label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.menu-category-select {
  width: 100%;
  appearance: none;
  border: 1px solid hsl(30 15% 84%);
  background: var(--ivory)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a68b4b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 1rem center;
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  cursor: pointer;
}
.menu-category-select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.menu-tab {
  border: 1px solid hsl(30 15% 84%);
  background: transparent;
  color: var(--muted-foreground);
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.menu-tab:hover,
.menu-tab.active {
  border-color: var(--gold);
  color: var(--foreground);
  background: hsl(40 55% 55% / 0.08);
}
.menu-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.menu-panels {
  max-width: 720px;
  margin-inline: auto;
}
.menu-subgroup + .menu-subgroup {
  margin-top: 2.25rem;
}
.menu-subgroup-title {
  margin: 0 0 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid hsl(30 15% 84%);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}
.menu-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-panel-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid hsl(30 15% 84%);
}
.menu-panel-list li:last-child {
  border-bottom: none;
}
.menu-item-name {
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.menu-item-desc {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.menu-item-price {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}
.menu-board-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.menu-board-cta {
  margin-top: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .menu-panel-list li {
    grid-template-columns: 1fr auto;
  }
  .menu-item-desc {
    grid-column: 1;
  }
}

/* Litha-style cocktail bar */
.section-litha-bar {
  padding: 8rem 0 11rem;
  background: var(--midnight);
  color: var(--ivory);
}
.section-litha-bar h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--ivory);
}
.litha-bar-lead {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: hsl(38 30% 96% / 0.75);
}
.litha-bar-split {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.litha-bar-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid hsl(40 55% 55% / 0.25);
}
.litha-bar-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.litha-cocktail-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 2rem;
  align-content: start;
}
.litha-cocktail-columns .litha-cocktail-list {
  margin: 0;
  border-top: 1px solid hsl(40 55% 55% / 0.25);
}
.litha-cocktail-list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.litha-cocktail-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid hsl(40 55% 55% / 0.2);
}
.litha-cocktail-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
}
.litha-cocktail-card p {
  grid-column: 1;
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: hsl(38 30% 96% / 0.65);
  letter-spacing: 0.02em;
  text-transform: none;
}
.litha-cocktail-price {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  color: var(--gold);
}
/* Grandma's-style reviews (homepage) */
.section-grandma-reviews {
  padding: 8rem 0 11rem;
  background: var(--background);
}
.section-grandma-reviews h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}
.reviews-intro {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  color: var(--muted-foreground);
}
.reviews-platforms {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.platform-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 9.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid hsl(30 15% 84%);
  background: var(--ivory);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.platform-badge:hover {
  border-color: hsl(40 55% 55% / 0.55);
  box-shadow: 0 8px 28px hsl(215 35% 10% / 0.06);
}
.platform-name {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.platform-score {
  font-size: 0.9rem;
  color: var(--foreground);
}
.platform-score strong {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}
.platform-count {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.section-grandma-reviews .container {
  overflow: hidden;
}
.reviews-carousel {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  overflow: hidden;
}
.reviews-carousel-prev,
.reviews-carousel-next {
  align-self: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid hsl(30 15% 84%);
  background: var(--ivory);
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.reviews-carousel-prev:hover,
.reviews-carousel-next:hover {
  border-color: var(--gold);
  background: hsl(40 55% 55% / 0.08);
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.review-quote-card {
  flex: 0 0 min(88vw, 380px);
  scroll-snap-align: start;
  margin: 0;
  padding: 2rem 1.75rem 1.5rem;
  background: var(--ivory);
  border: 1px solid hsl(30 15% 84%);
  box-shadow: 0 10px 36px hsl(215 35% 10% / 0.04);
  overflow: hidden;
  max-height: none;
}
.review-quote-card blockquote {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: hsl(220 25% 12% / 0.9);
  font-style: normal;
}
.review-quote-card blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold);
}
.review-quote-card footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(30 15% 84%);
}
.review-quote-card footer strong {
  display: block;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.review-quote-card footer span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
@media (min-width: 900px) {
  .litha-bar-split {
    grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
    gap: 3rem;
  }
  .litha-cocktail-columns {
    grid-template-columns: 1fr 1fr;
  }
  .review-quote-card {
    flex-basis: 360px;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .litha-cocktail-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .menu-category-select-wrap {
    display: block;
  }
  .menu-tabs {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .menu-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
  }
  .menu-tabs::-webkit-scrollbar {
    display: none;
  }
  .menu-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .menu-board-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 3.5rem;
    align-items: start;
  }
  #menu-board-mount {
    order: 1;
    min-width: 0;
  }
  .menu-board-feature {
    order: 2;
    margin: 0;
    position: sticky;
    top: 6.5rem;
  }
  #menu-board-mount .menu-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    gap: 0.5rem;
  }
  #menu-board-mount .menu-tabs::-webkit-scrollbar {
    display: none;
  }
  #menu-board-mount .menu-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.58rem 0.95rem;
  }
  #menu-board-mount .menu-panels {
    max-width: none;
    margin-inline: 0;
  }
}

@media (max-width: 639px) {
  .reviews-platforms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 2rem;
  }
  .platform-badge {
    min-width: 0;
    width: 100%;
    padding: 0.85rem 0.5rem;
  }
  .platform-name {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }
  .platform-score strong {
    font-size: 1.5rem;
  }
  .platform-count {
    font-size: 0.68rem;
  }
  .reviews-carousel {
    margin-top: 2rem;
    gap: 0.5rem;
  }
  .reviews-carousel-prev,
  .reviews-carousel-next {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.5rem;
  }
  .reviews-track {
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
  }
  .review-quote-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 1.35rem 1.15rem 1.15rem;
    box-shadow: 0 6px 24px hsl(215 35% 10% / 0.05);
  }
  .review-quote-card blockquote {
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: left;
    hyphens: auto;
    overflow-wrap: break-word;
  }
  .review-quote-card blockquote::before {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
  }
  .review-quote-card footer {
    margin-top: 1rem;
    padding-top: 0.85rem;
  }
  .review-quote-card footer strong {
    font-size: 1.05rem;
  }
}
