/* ============================================
   Open Sesame — Premium Restaurant Website
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #141414;
  --gold-dark: #b8860b;
  --gold-mid: #d4a017;
  --gold-light: #f5d76e;
  --cream: #f4efe6;
  --cream-muted: rgba(244, 239, 230, 0.65);
  --gold-gradient: linear-gradient(135deg, var(--gold-dark), var(--gold-mid), var(--gold-light));
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 80px;
  --container: min(1200px, 92vw);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.02;
  background-image: radial-gradient(rgba(255,255,255,0.08) 0.5px, transparent 0.5px);
  background-repeat: repeat;
  background-size: 3px 3px;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
  display: none;
}

.has-js .preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader.is-hidden {
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.preloader__logo {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.25);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.25);
}

.preloader__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.72);
  margin-bottom: 0.6rem;
  opacity: 0;
}

.preloader__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(12px);
}

.preloader__loop {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.8);
  margin-top: 1.1rem;
  opacity: 0;
  white-space: nowrap;
}

.preloader__curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--black);
  z-index: 3;
}

.preloader__curtain--left { left: 0; }
.preloader__curtain--right { right: 0; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.35);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width 0.35s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--black);
}

.btn--gold:hover {
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.35);
}

.btn--outline {
  border: 1px solid rgba(212, 160, 23, 0.5);
  color: var(--cream);
}

.btn--outline:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.8rem;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.45) 45%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--nav-height);
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.hero__title {
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 10vw, 7.2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  padding: 0.08em 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: none;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.2vw, 1.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.92);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.hero__tagline .char {
  display: inline-block;
  opacity: 1;
  transform: none;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  opacity: 1;
}

.hero__actions .btn {
  min-width: 200px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 1;
}

.hero__scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  border-block: 1px solid rgba(212, 160, 23, 0.2);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--black-soft);
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Story
   ============================================ */
.story {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.story__divider {
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 0 auto 2.5rem;
}

.story__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  color: var(--cream-muted);
}

.story__text em {
  font-style: italic;
  color: var(--gold-light);
}

/* ============================================
   Experience
   ============================================ */
.experience {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.experience-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 160, 23, 0.12);
  background: var(--black-card);
  overflow: hidden;
  opacity: 1;
  transform: none;
  min-height: 100%;
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.experience-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 1rem 1rem 0.5rem;
}

.experience-card p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin: 0 1rem 1.2rem;
}

/* ============================================
   Menu Curtain
   ============================================ */
.menu-curtain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  visibility: hidden;
}

.menu-curtain.is-active {
  visibility: visible;
  pointer-events: all;
}

.menu-curtain__panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--black);
  z-index: 2;
}

.menu-curtain__panel--left { left: 0; transform-origin: left; }
.menu-curtain__panel--right { right: 0; transform-origin: right; }

.menu-curtain__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  white-space: nowrap;
}

/* ============================================
   Menu
   ============================================ */
.menu {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.menu__tab {
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  border: 1px solid transparent;
  transition: var(--transition);
}

.menu__tab:hover,
.menu__tab.active {
  color: var(--gold-light);
  border-color: rgba(212, 160, 23, 0.3);
}

.menu__tab.active {
  background: rgba(212, 160, 23, 0.08);
}

.menu__panel {
  display: none;
}

.menu__panel.active {
  display: block;
}

.menu-panel-media {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 160, 23, 0.15);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

.menu-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.menu__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-mid);
  font-style: italic;
  margin-bottom: 2rem;
}

.menu__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.06);
  opacity: 1;
  transform: none;
}

.menu-item--featured {
  background: rgba(212, 160, 23, 0.05);
  padding-inline: 1.5rem;
  margin-inline: -1.5rem;
  border: 1px solid rgba(212, 160, 23, 0.15);
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.menu-item__desc {
  font-size: 0.85rem;
  color: var(--cream-muted);
  max-width: 520px;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   Showcase
   ============================================ */
.showcase {
  position: relative;
  min-height: 100vh;
}

.showcase__pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: var(--container);
  margin-inline: auto;
  padding: 4rem 0;
}

.showcase__image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}

.showcase__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 160, 23, 0.25);
  pointer-events: none;
}

.showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.showcase__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}

.showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase__desc {
  font-size: 1rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 440px;
}

.showcase__price {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

/* ============================================
   Drinks
   ============================================ */
.drinks {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black-soft);
}

.drinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.drink-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--black-card);
  border: 1px solid rgba(212, 160, 23, 0.1);
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: border-color 0.4s ease;
  min-height: 100%;
}

.drink-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
}

.drink-card__glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.drink-card--wide {
  grid-column: 1 / -1;
  text-align: center;
}

.drink-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 160, 23, 0.14);
}

.drink-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.drink-card__desc {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-bottom: 1rem;
}

.drink-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-top: auto;
}

/* ============================================
   Visit
   ============================================ */
.visit {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.visit__detail {
  margin-bottom: 2rem;
}

.visit__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.5rem;
}

.visit__detail p {
  font-size: 1rem;
  color: var(--cream-muted);
  line-height: 1.8;
}

.visit__phone {
  font-family: var(--font-display);
  font-size: 1.75rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s ease;
}

.visit__phone:hover {
  opacity: 0.8;
}

.visit__map {
  aspect-ratio: 16/12;
  min-height: 360px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(30%) contrast(1.1);
}

/* ============================================
   Endorsements
   ============================================ */
.endorsements {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black-soft);
}

.endorsements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.endorsement-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid rgba(212, 160, 23, 0.2);
  background: rgba(20, 20, 20, 0.8);
  opacity: 1;
  transform: none;
  min-height: 100%;
}

.endorsement-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.endorsement-card span {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.endorsement-card__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 160, 23, 0.25);
  margin-bottom: 0.9rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  background: var(--black-soft);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__logo-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.35);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin-top: 0.5rem;
}

.footer__contact p,
.footer__contact a {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.8;
  display: block;
}

.footer__contact a:hover {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer__social-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

.footer__social-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width 0.35s ease;
}

.footer__social-link:hover::after {
  width: 100%;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 239, 230, 0.06);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .grain {
    display: none;
  }

  .marquee__track {
    animation: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --container: min(1100px, 94vw);
  }

  .showcase__inner,
  .visit__grid {
    gap: 2.5rem;
  }

  .menu-item {
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 72px;
    --container: min(100%, 94vw);
  }

  .grain {
    display: none;
  }

  .nav__logo-img {
    width: 40px;
    height: 40px;
  }

  .nav__logo-text {
    font-size: 1.05rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1.25rem 1rem 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    max-height: calc(100dvh - var(--nav-height));
    overflow-y: auto;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .showcase__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .showcase__desc {
    max-width: 100%;
  }

  .menu-panel-media {
    aspect-ratio: 16 / 9;
  }

  .experience__grid,
  .endorsements__grid {
    grid-template-columns: 1fr;
  }

  .visit__grid {
    grid-template-columns: 1fr;
  }

  .visit__map {
    min-height: 300px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer__social {
    align-items: center;
  }

  .menu-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-item__price {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100%, 92vw);
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0.8rem 1rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__content {
    padding-top: calc(var(--nav-height) + 0.8rem);
    padding-bottom: 4.5rem;
  }

  .hero__actions {
    width: 100%;
    gap: 0.75rem;
    justify-content: center;
  }

  .hero__scroll-hint {
    bottom: 1.35rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header__title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .story__text {
    font-size: clamp(1.05rem, 4.4vw, 1.35rem);
    line-height: 1.65;
  }

  .experience-card h3 {
    font-size: 1.35rem;
  }

  .menu__tabs {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    padding-bottom: 1rem;
  }

  .menu__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .menu-item {
    padding: 1.15rem 0;
  }

  .menu-item--featured {
    margin-inline: 0;
    padding: 1rem;
  }

  .menu-item__name {
    font-size: 1.18rem;
  }

  .menu-item__desc {
    font-size: 0.82rem;
    max-width: 100%;
  }

  .showcase {
    min-height: auto;
  }

  .showcase__pin {
    min-height: auto;
  }

  .showcase__image-wrap {
    aspect-ratio: 4 / 3;
  }

  .showcase__price {
    margin-bottom: 1.1rem;
  }

  .drinks__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .drink-card {
    padding: 1.2rem;
  }

  .drink-card__name {
    font-size: 1.25rem;
  }

  .endorsement-card {
    padding: 1.1rem;
  }

  .endorsement-card p {
    font-size: 1.05rem;
  }

  .visit__detail p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .visit__phone {
    font-size: 1.45rem;
  }

  .footer {
    padding-top: 3rem;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-height: 68px;
    --container: min(100%, 90vw);
  }

  .nav__logo {
    gap: 0.45rem;
  }

  .nav__logo-img {
    width: 36px;
    height: 36px;
  }

  .nav__logo-text {
    font-size: 0.98rem;
  }

  .nav__links {
    padding-inline: 0.85rem;
    gap: 1rem;
  }

  .nav__link {
    font-size: 0.74rem;
  }

  .menu__tabs {
    gap: 0.35rem;
  }

  .menu__tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.62rem;
  }

  .hero__tagline {
    font-size: clamp(0.82rem, 4vw, 1rem);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
  }

  .hero__title {
    font-size: clamp(2.9rem, 13vw, 4.6rem);
    margin-bottom: 0.7rem;
    line-height: 1.15;
  }

  .marquee {
    padding: 0.65rem 0;
  }

  .marquee__track span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .menu-panel-media {
    aspect-ratio: 5 / 3;
    margin-bottom: 1rem;
  }

  .showcase__title {
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .showcase__desc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .visit__map {
    min-height: 250px;
  }

  .footer__logo-img {
    width: 72px;
    height: 72px;
  }

  .footer__contact p,
  .footer__contact a {
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100%, 88vw);
  }

  .btn {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .section-header__eyebrow {
    letter-spacing: 0.2em;
  }

  .section-header__title {
    font-size: clamp(1.75rem, 10vw, 2.2rem);
  }

  .menu-item__name {
    font-size: 1.08rem;
  }

  .menu-item__price {
    font-size: 1rem;
  }

  .drink-card__img {
    aspect-ratio: 4 / 3;
  }

  .endorsement-card p {
    font-size: 0.98rem;
  }
}
