/* ===========================
   WILDISH – GLOBAL CSS
   Restaurant
=========================== */

/* ---- DESIGN TOKENS ---- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A6E20;
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-2:      #181818;
  --dark-3:      #222222;
  --charcoal:    #2A2A2A;
  --white:       #FFFFFF;
  --off-white:   #F5F0E8;
  --muted:       #8A8A8A;
  --muted-light: #B0A99A;
  --yt-red:      #FF0000;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans:   'Inter', system-ui, sans-serif;

  --nav-height:  72px;
  --trans-fast:  0.2s ease;
  --trans-mid:   0.4s ease;
  --trans-slow:  0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-gold: 0 0 30px rgba(201,168,76,0.25);
  --shadow-dark: 0 8px 32px rgba(0,0,0,0.5);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, select, textarea {
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  outline: none;
  color: var(--off-white);
}

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }
.section-header.center .section-label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-light);
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--trans-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-yt {
  background: var(--gold);
  color: var(--black);
}
.btn-yt:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn.full-width { width: 100%; }
.btn.sm-btn { padding: 10px 22px; font-size: 0.8rem; }

/* ============================
   NAVBAR
============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0 24px;
  transition: background var(--trans-mid), box-shadow var(--trans-mid);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
/* Navbar logo — small, horizontal */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* The SVG is gold — looks great on both transparent & dark bg */
}

/* Keep legacy classes in case used elsewhere */
.logo-w {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.logo-ildish {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-left: 2px;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  margin-left: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  position: relative;
  transition: color var(--trans-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans-fast);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-cta-btn {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 20px;
  border-radius: 2px;
  transition: all var(--trans-fast);
}
.nav-cta-btn:hover {
  background: var(--gold);
  color: var(--black);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--trans-fast);
}
.hamburger.open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================
   HERO
============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s ease-out forwards;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* No zoom animation needed – video motion provides visual interest */
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: fadeUp 1s 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-title {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
/* Hero center logo — large SVG */
.hero-logo-img {
  width: clamp(280px, 55vw, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 30px rgba(201,168,76,0.35));
  animation: fadeUp 1s 0.5s both;
}
/* Keep old classes for reference */
.hero-title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(4rem, 11vw, 9rem);
  color: var(--gold);
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(201,168,76,0.3);
}
.hero-title-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
  margin-top: 8px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.hero-hours i { color: var(--gold); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 2s 1.5s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ============================
   HIGHLIGHTS STRIP
============================ */
.highlights-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 100px;
  flex-wrap: wrap;
  gap: 0;
}
.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 24px 20px;
}
.highlight-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.highlight-item strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.highlight-item span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.highlight-divider {
  width: 1px;
  height: 48px;
  background: rgba(201,168,76,0.2);
}

/* ============================
   SPECIAL EVENTS BANNERS
============================ */
.se-banners {
  width: 100%;
  background: var(--black);
  border: none;
  outline: none;
}
.se-banners:focus {
  outline: none;
}
.se-banners:focus-visible {
  outline: none;
}
.se-banners-shell {
  position: relative;
  width: 100%;
  border: none;
  box-shadow: none;
  outline: none;
}
.se-banners-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  border: none;
  outline: none;
  box-shadow: none;
}
.se-banners-track {
  display: flex;
  width: 100%;
  border: none;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.se-banner-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(72vh, 810px);
  background: var(--dark-2);
  border: none;
  outline: none;
  box-shadow: none;
}
.se-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.se-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.65);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}
.se-nav:hover {
  background: rgba(201,168,76,0.2);
  color: var(--white);
}
.se-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.se-nav--prev { left: 12px; }
.se-nav--next { right: 12px; }
.se-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,10,10,0.45);
}
.se-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(201,168,76,0.25);
  transition: transform var(--trans-fast), background var(--trans-fast);
}
.se-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* No border / shadow frame around the carousel card (public home) */
#special-events-banners .se-banners-shell,
#special-events-banners .se-banners-viewport,
#special-events-banners .se-banners-track,
#special-events-banners .se-banner-slide {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Tablet & desktop: windowed carousel (contained frame, object-fit contain — mobile unchanged below) */
@media (min-width: 769px) {
  .se-banners {
    padding: 28px 20px 36px;
    box-sizing: border-box;
  }
  .se-banners-shell {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .se-banners-viewport {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: min(94vw, 1100px);
    border-radius: 8px;
    border: none;
    outline: none;
    box-shadow: none;
    background: var(--black);
    box-sizing: border-box;
  }
  .se-banner-slide {
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
    background: #0a0a0a;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .se-banner-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-height: min(54vh, 520px);
  }
  .se-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .se-nav--prev {
    left: 10px;
  }
  .se-nav--next {
    right: 10px;
  }
  .se-dots {
    bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .se-banners {
    padding: 32px 24px 40px;
  }
  .se-banners-viewport {
    max-width: min(88vw, 1180px);
  }
  .se-banner-slide {
    max-height: none;
  }
  .se-banner-slide img {
    max-height: min(52vh, 580px);
  }
}

/* Mobile: show full banner image without cropping (letterbox with site background) */
@media (max-width: 768px) {
  .se-banner-slide {
    max-height: min(72vh, 640px);
    background: var(--black);
  }
  .se-banner-slide img {
    object-fit: contain;
    object-position: center;
  }
  .se-nav {
    width: 38px;
    height: 38px;
  }
  .se-nav--prev { left: 8px; }
  .se-nav--next { right: 8px; }
  .se-dots {
    bottom: 10px;
  }
}

/* ============================
   FAQ (SEO / AEO — visible + structured data)
============================ */
.faq-section {
  padding: 96px 0 88px;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-2) 45%, var(--black) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.faq-section-header {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.faq-intro {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.faq-item[open] {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px 18px 22px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  position: relative;
  padding-right: 44px;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--trans-fast);
}
.faq-item[open] .faq-summary::after {
  transform: translateY(-20%) rotate(225deg);
}
.faq-summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.faq-answer {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted-light);
  padding-top: 14px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 72px 0 64px;
  }
  .faq-summary {
    font-size: 0.93rem;
    padding: 16px 40px 16px 18px;
  }
}

/* ============================
   REVIEWS (horizontal rail + modal)
============================ */
.reviews-section {
  padding: 100px 0 80px;
  background: var(--black);
  overflow: hidden;
}
.reviews-section .section-header {
  margin-bottom: 36px;
}
.gr-rail-outer {
  position: relative;
  width: 100%;
}
.gr-rail {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--dark-2);
  padding: 8px 0 20px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}
.gr-rail:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.gr-rail::-webkit-scrollbar {
  height: 6px;
}
.gr-rail::-webkit-scrollbar-track {
  background: var(--dark-2);
  border-radius: 3px;
}
.gr-rail::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}
.gr-track {
  display: flex;
  gap: 20px;
  padding: 4px 24px 12px;
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
}
.gr-card {
  flex: 0 0 min(380px, 88vw);
  max-width: 420px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: 320px;
  box-sizing: border-box;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 26px 24px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.gr-card:hover {
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.gr-card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.gr-card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 0;
}
.gr-quote-icon {
  color: var(--gold);
  flex-shrink: 0;
  line-height: 0;
  margin-top: 2px;
}
.gr-card-meta {
  flex: 1;
  min-width: 0;
}
.gr-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.25;
}
.gr-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--muted);
}
.gr-star {
  flex-shrink: 0;
  color: rgba(176, 169, 154, 0.45);
}
.gr-star.is-on {
  color: var(--gold);
}
.gr-card-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted-light);
  margin: 0;
}
.gr-card-text-preview {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  flex: 1 1 auto;
  min-height: 0;
}
.gr-read-more {
  appearance: none;
  -webkit-appearance: none;
  align-self: flex-start;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--trans-fast);
  flex-shrink: 0;
}
.gr-read-more:hover {
  color: var(--gold-light);
}
.gr-read-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.gr-scroll-hint {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 16px 12px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gr-scroll-hint-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  width: 100%;
  max-width: min(520px, 100%);
  margin: 0 auto;
}
.gr-scroll-hint-arrow {
  color: var(--gold-dark);
  flex-shrink: 0;
  opacity: 0.9;
  display: block;
}
.gr-scroll-hint-label {
  font-size: clamp(0.65rem, 2.5vw, 0.78rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Full review modal */
.gr-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gr-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gr-modal-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(6, 5, 4, 0.88);
  cursor: pointer;
  z-index: 0;
}
.gr-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(85vh, 640px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: scale(0.96) translateY(8px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}
.gr-modal.is-open .gr-modal-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.gr-modal-close {
  position: absolute;
  top: max(10px, env(safe-area-inset-top));
  right: max(10px, env(safe-area-inset-right));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: var(--off-white);
  background: rgba(18, 16, 14, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: color var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast);
}
.gr-modal-close-x {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  display: block;
  margin-top: -2px;
}
.gr-modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(28, 24, 20, 0.92);
}
.gr-modal-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gr-modal-header {
  flex-shrink: 0;
  padding: 24px 52px 16px 22px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.gr-modal-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
  word-break: break-word;
}
.gr-modal-stars .gr-stars {
  margin: 0;
}
.gr-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-light);
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
  .gr-modal,
  .gr-modal-panel {
    transition: none;
  }
  .gr-modal-panel {
    transform: none;
  }
  .gr-modal.is-open .gr-modal-panel {
    transform: none;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 72px 0 56px;
  }
  .gr-track {
    gap: 16px;
    padding-inline: 16px;
  }
  .gr-card {
    flex-basis: min(340px, 90vw);
    height: 300px;
    padding: 22px 18px 20px;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 56px 0 44px;
  }
  .gr-scroll-hint {
    padding: 14px 10px 10px;
  }
  .gr-scroll-hint-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    gap: 8px;
    max-width: 100%;
  }
  .gr-scroll-hint-arrow:first-of-type {
    grid-row: 1;
  }
  .gr-scroll-hint-label {
    grid-row: 2;
    max-width: 18rem;
  }
  .gr-scroll-hint-arrow:last-of-type {
    grid-row: 3;
  }
  .gr-card {
    height: 288px;
  }
  .gr-modal-header {
    padding-right: 48px;
  }
}

/* ============================
   ABOUT
============================ */
.about {
  padding: 120px 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 2px;
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-dark);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 2px;
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: var(--shadow-dark);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge-stat {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--gold);
  color: var(--black);
  padding: 14px 18px;
  text-align: center;
  border-radius: 2px;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}
.about-content { padding-bottom: 40px; }
.about-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted-light);
  margin-bottom: 20px;
}
.about-text strong { color: var(--gold); font-weight: 600; }
.about-signature {
  margin: 30px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.sig-text {
  display: block;
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1.1;
}
.sig-role {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================
   MENU
============================ */
.menu {
  padding: 120px 0;
  background: var(--dark-2);
  overflow: hidden;
}
.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}
.menu-tab {
  flex-shrink: 0;
  padding: 10px 28px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: all var(--trans-fast);
}
.menu-tab:hover, .menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.menu-card {
  background: var(--dark-3);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.menu-card.hidden { display: none; }
.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }
.menu-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}
.menu-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.menu-card-body { padding: 22px; }
.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 3px 8px;
  border-radius: 2px;
}
.menu-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px 24px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  background: rgba(201,168,76,0.03);
}
.menu-cta p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted-light);
  margin-bottom: 24px;
}

/* ============================
   GALLERY
============================ */
.gallery {
  padding: 120px 0 60px;
  background: var(--black);
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 300px 280px 430px;
  gap: 6px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
/* gi-1: spans both rows on the left */
.gallery-item.gi-tall {
  grid-row: 1 / 3;
}
/* gi-6: full-width interior2 achievement row */
.gallery-item.gi-wide {
  grid-column: 1 / -1;
}
/* Fix object-position so the diamond award is centred in the frame */
#gi-6 img {
  object-position: center 75%;
}
/* Persistent achievement caption for gi-6 */
#gi-6 .gallery-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  align-items: flex-end;
  padding: 28px 36px;
}
#gi-6:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
#gi-6 .gallery-overlay-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
#gi-6 .gallery-overlay span {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.gi6-yt-icon {
  font-size: 2.8rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.5));
  flex-shrink: 0;
}
.gi6-badge {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--trans-mid);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.gallery-ig-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================
   YOUTUBE SECTION
============================ */
.youtube-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.yt-bg {
  position: absolute;
  inset: 0;
}
.yt-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.6);
}
.yt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 100%
  );
}
.yt-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.yt-icon-wrap {
  margin-bottom: 24px;
}
.yt-main-icon {
  font-size: 4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.35));
}
.yt-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted-light);
  margin-top: 20px;
  margin-bottom: 40px;
}
.yt-desc strong { color: var(--gold-light); }
.yt-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.yt-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 40px;
  background: rgba(201,168,76,0.05);
  flex: 1;
}
.yt-stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(201,168,76,0.2);
}
.yt-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1;
}
.yt-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================
   RESERVATION
============================ */
.reservation {
  padding: 120px 0;
  background: var(--dark-2);
  /* NOTE: Do NOT add overflow:hidden here — it clips the intl-tel-input country dropdown */
  position: relative;
}

/* Reservation: premium “fully booked” notices (banner + form) */
@keyframes resNoticeIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes resNoticePulseGlow {
  0%, 100% {
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(201, 168, 76, 0.12),
      0 0 18px rgba(201, 168, 76, 0.08);
  }
  50% {
    box-shadow:
      0 6px 28px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(201, 168, 76, 0.28),
      0 0 26px rgba(201, 168, 76, 0.2);
  }
}

.res-notice-card {
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-left: 4px solid var(--gold);
  background-color: var(--dark-3);
  background-image:
    linear-gradient(145deg, rgba(201, 168, 76, 0.07) 0%, transparent 42%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 6px,
      rgba(255, 255, 255, 0.02) 6px,
      rgba(255, 255, 255, 0.02) 7px
    );
  box-sizing: border-box;
  overflow: hidden;
}

.res-notice-card--banner {
  width: 100%;
  max-width: 100%;
  margin: 0 0 28px;
  padding: 22px 24px 22px 20px;
  animation:
    resNoticeIn 0.6s ease-out both,
    resNoticePulseGlow 2.5s ease-in-out 0.6s infinite;
}

.res-notice-card--form {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 18px 20px 18px 16px;
  box-sizing: border-box;
}

.res-notice-card--form.res-notice-card--enter {
  animation:
    resNoticeIn 0.6s ease-out both,
    resNoticePulseGlow 2.5s ease-in-out 0.6s infinite;
}

.res-notice-card__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.res-notice-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

.res-notice-card__icon svg {
  display: block;
}

.res-notice-card__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--off-white);
}

@media (max-width: 640px) {
  .res-notice-card--banner {
    padding: 18px 18px 18px 14px;
    margin-bottom: 22px;
  }

  .res-notice-card--form {
    padding: 16px 16px 16px 12px;
    margin-bottom: 16px;
  }

  .res-notice-card__inner {
    gap: 14px;
  }

  .res-notice-card__icon {
    width: 40px;
    height: 40px;
  }

  .res-notice-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .res-notice-card__text {
    font-size: 0.9rem;
  }
}

.res-block-notice {
  margin: 0 0 14px;
  padding: 12px 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted-light);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
}
.res-meal-block-msg {
  margin-top: 8px;
  margin-bottom: 0;
}

.meal-radio-label.meal-radio--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
.res-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted-light);
  margin-bottom: 36px;
}
.res-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.res-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.res-info-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 1rem;
  min-width: 18px;
}
.res-info-item div { display: flex; flex-direction: column; gap: 2px; }
.res-info-item strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.res-info-item span {
  font-size: 0.9rem;
  color: var(--muted-light);
}
.res-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--trans-fast);
}
.social-circle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.social-circle.sm { width: 36px; height: 36px; font-size: 0.85rem; }

/* --- Form --- */
.res-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 40px;
}
.res-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  /* NOTE: Do NOT add overflow:hidden here — it clips the intl-tel-input country dropdown */
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group .field-label-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group .req-star { color: var(--gold); }
.meal-type-block { margin-bottom: 8px; }
.meal-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}
.meal-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--off-white);
  text-transform: none;
  letter-spacing: normal;
}
.meal-radio-label input {
  width: auto;
  min-width: auto;
  accent-color: var(--gold);
}
.meal-window-hint {
  font-size: 0.82rem;
  color: var(--muted-light);
  margin: 4px 0 0;
  line-height: 1.4;
}
.time-parts-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.time-part-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.time-part-select {
  padding: 12px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  color: var(--off-white);
  font-size: 0.9rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.time-part-select:focus {
  border-color: var(--gold);
  outline: none;
}
.phone-confirm-dialog {
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  border: none;
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  box-sizing: border-box;
  background: transparent;
  overflow: auto;
  overscroll-behavior: contain;
}
.phone-confirm-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-confirm-dialog::backdrop {
  background: rgba(4, 3, 2, 0.82);
  animation: phoneConfirmBackdropIn 0.35s ease forwards;
}
@keyframes phoneConfirmBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.phone-confirm-card {
  position: relative;
  width: min(100%, 400px);
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 6px;
  padding: 28px 24px;
  margin: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  animation: phoneConfirmCardIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes phoneConfirmCardIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .phone-confirm-dialog::backdrop {
    animation: none;
  }
  .phone-confirm-card {
    animation: none;
  }
}
.phone-confirm-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 12px;
}
.phone-confirm-q {
  font-size: 0.9rem;
  color: var(--muted-light);
  margin: 0 0 8px;
}
.phone-confirm-num {
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0 0 22px;
  word-break: break-all;
}
.phone-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.phone-confirm-actions .btn { min-width: 100px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  color: var(--off-white);
  font-size: 0.9rem;
  transition: border-color var(--trans-fast);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: block;
}

/* Fix iOS/Android native date & time picker overflow */
.form-group input[type="date"],
.form-group input[type="time"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 14px;
}
.form-note a { color: var(--gold); }
.res-success {
  text-align: center;
  padding: 40px 20px;
}
.res-success-svg {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.res-success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.res-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.res-success p { color: var(--muted-light); }

/* ============================
   MAP
============================ */
.map-section { position: relative; }
.map-wrapper {
  position: relative;
  height: 480px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.7) invert(0.9) hue-rotate(180deg) brightness(0.7);
}
.map-card {
  position: absolute;
  top: 40px; left: 60px;
  background: rgba(17,17,17,0.95);
  border: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  padding: 28px 32px;
  min-width: 260px;
  box-shadow: var(--shadow-dark);
}
.map-card-logo {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.map-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.map-card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted-light);
  margin-bottom: 10px;
  line-height: 1.5;
}
.map-card p i { color: var(--gold); margin-top: 2px; min-width: 14px; }
.map-card .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ============================
   FOOTER
============================ */
.footer { background: var(--black); }
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--trans-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-info-list { display: flex; flex-direction: column; gap: 12px; }
.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.footer-info-list li i { color: var(--gold); margin-top: 2px; min-width: 14px; }
.footer-info-list a { color: var(--muted-light); }
.footer-info-list a:hover { color: var(--gold); }
.footer-yt-text {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-credit { margin-top: 4px; opacity: 0.5; }
.footer-developer {
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted-light);
}
.footer-developer a {
  color: var(--gold);
  font-weight: 500;
  transition: all var(--trans-fast);
}
.footer-developer a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ============================
   FLOATING BUTTON
============================ */
.floating-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  z-index: 900;
  transition: all var(--trans-fast);
  opacity: 0;
  pointer-events: none;
}
.floating-btn.visible {
  opacity: 1;
  pointer-events: all;
}
.floating-btn:hover {
  background: var(--gold-light);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
}

/* ============================
   ANIMATIONS / FADE-IN
============================ */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-anim="left"] {
  transform: translateX(-24px);
}
[data-anim="left"].visible {
  transform: translateX(0);
}
[data-anim="right"] {
  transform: translateX(24px);
}
[data-anim="right"].visible {
  transform: translateX(0);
}

/* ============================
   RESPONSIVE
============================ */

/* ---- Tablet Landscape (≤1100px) ---- */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 560px; margin: 0 auto; }
  .about-badge-stat { right: 0; }
  .about-img-secondary { right: 0; bottom: -30px; }

  .reservation-grid { grid-template-columns: 1fr; gap: 60px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .about { padding: 90px 0; }
  .menu  { padding: 90px 0; }
  .gallery { padding: 90px 0 50px; }
  .youtube-section { padding: 110px 0; }
  .reservation { padding: 90px 0; }

  /* --- Nav --- */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-height));
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta-btn { width: 100%; text-align: center; padding: 12px 20px; }
}

/* ---- Tablet Portrait / Large Phone (≤800px) ---- */
@media (max-width: 800px) {

  /* --- Section padding --- */
  .about         { padding: 72px 0; }
  .menu          { padding: 72px 0; }
  .gallery       { padding: 72px 0 40px; }
  .youtube-section { padding: 80px 0; }
  .reservation   { padding: 72px 0; }
  .footer-top    { padding: 60px 0 40px; }

  /* --- Hero --- */
  .hero-logo-img { width: clamp(220px, 70vw, 400px); }
  .hero-content  { padding: 0 20px; }
  .hero-desc     { font-size: 0.88rem; }

  /* --- Highlights --- */
  .highlights-container { flex-direction: column; gap: 0; }
  .highlight-divider    { width: 80%; height: 1px; margin: 0; }

  /* --- About --- */
  .about-img-main   { height: 380px; }
  .about-badge-stat { top: 16px; right: 0; }

  /* --- Gallery --- */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .gallery-item.gi-tall  { grid-row: span 1; height: 200px; }
  .gallery-item.gi-wide  { grid-column: 1 / -1; height: 220px; }
  .gallery-item          { height: 190px; }
  #gi-6 .gallery-overlay { padding: 18px 20px; }
  #gi-6 .gallery-overlay-inner { gap: 10px; }
  .gi6-yt-icon    { font-size: 2rem; }
  #gi-6 .gallery-overlay span { font-size: 0.95rem; }

  /* --- YouTube --- */
  .yt-stats        { flex-direction: column; }
  .yt-stat-divider { width: 60%; height: 1px; }
  .yt-stat-item    { padding: 16px 20px; }
  .yt-stat-num     { font-size: 1.8rem; }

  /* --- Reservation --- */
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* NOTE: Do NOT add overflow:hidden here — it clips the intl-tel-input country dropdown */
  }
  .form-row .form-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .form-row .form-group input[type="date"],
  .form-row .form-group input[type="time"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .res-form-wrap {
    padding: 28px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  /* iti phone input: ensure full width without breaking the flag selector */
  .iti { width: 100% !important; max-width: 100% !important; }

  .time-parts-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  /* --- Map --- */
  .map-card {
    position: static;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .map-wrapper { height: auto; }
  .map-wrapper iframe { height: 300px; display: block; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Large Phone (≤600px) ---- */
@media (max-width: 600px) {
  :root { --nav-height: 64px; }

  .container { padding: 0 16px; }

  /* --- Section padding --- */
  .about         { padding: 60px 0; }
  .menu          { padding: 60px 0; }
  .gallery       { padding: 60px 0 32px; }
  .youtube-section { padding: 64px 0; }
  .reservation   { padding: 60px 0; }
  .footer-top    { padding: 48px 0 32px; }

  /* --- Section text --- */
  .section-desc  { font-size: 0.9rem; margin-bottom: 28px; }

  /* --- Hero --- */
  .hero-logo-img { width: clamp(180px, 75vw, 340px); }
  .hero-tagline  { font-size: 1rem; }
  .hero-desc     { font-size: 0.85rem; margin-bottom: 28px; }
  .hero-actions  { flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .hero-hours    { font-size: 0.75rem; }

  /* --- About --- */
  .about-img-main { height: 320px; }
  .about-badge-stat { position: relative; top: auto; right: auto; display: inline-flex; flex-direction: row; gap: 8px; align-items: center; margin-top: 16px; }
  .stat-number { font-size: 1.4rem; }

  /* --- Gallery --- */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item.gi-tall,
  .gallery-item,
  .gallery-item.gi-wide { height: 220px; grid-column: span 1; grid-row: span 1; }

  /* --- YouTube --- */
  .yt-main-icon { font-size: 3rem; }
  .yt-desc { font-size: 0.88rem; margin-bottom: 28px; }
  .yt-stat-num { font-size: 1.6rem; }
  .yt-stat-item { padding: 14px 16px; }

  /* --- Reservation --- */
  .res-form-wrap { padding: 24px 16px; }
  .reservation-grid { gap: 40px; }
  .res-info-list { gap: 16px; }
  .time-parts-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* --- Menu CTA (inline styled) --- */
  .menu-cta { padding: 40px 16px !important; }

  /* --- Map --- */
  .map-wrapper iframe { height: 260px; }
  .map-card { padding: 20px 16px; }

  /* --- Footer --- */
  .footer-logo-img { height: 38px; }
  .footer-bottom p { font-size: 0.72rem; }
}

/* ---- Small Phone (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* --- Hero --- */
  .hero { min-height: 600px; }
  .hero-logo-img { width: clamp(160px, 78vw, 300px); }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; margin-bottom: 20px; }

  /* --- Highlights --- */
  .highlight-item { padding: 18px 12px; }
  .highlight-item strong { font-size: 0.9rem; }

  /* --- About --- */
  .about-img-main { height: 280px; }
  .about-badge-stat { padding: 10px 14px; }
  .sig-text { font-size: 1.8rem; }

  /* --- Buttons --- */
  .btn { padding: 12px 24px; font-size: 0.8rem; }
  .btn.full-width { width: 100%; }

  /* --- Gallery --- */
  .gallery-item.gi-tall,
  .gallery-item,
  .gallery-item.gi-wide { height: 200px; }
  .gi6-badge { font-size: 0.62rem; }
  #gi-6 .gallery-overlay span { font-size: 0.82rem; letter-spacing: 0.04em; }

  /* --- YouTube --- */
  .yt-stat-num { font-size: 1.5rem; }
  .yt-stat-lbl { font-size: 0.65rem; }

  /* --- Reservation --- */
  .res-form-title { font-size: 1.3rem; }
  .res-form-wrap { padding: 20px 14px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 0.88rem; padding: 11px 12px; }

  /* --- Map --- */
  .map-wrapper iframe { height: 240px; }
  .map-card { padding: 18px 14px; }

  /* --- Floating btn --- */
  .floating-btn { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 1.1rem; }

  /* --- Footer --- */
  .footer-top { padding: 40px 0 28px; }
  .footer-bottom { padding: 16px 0; }
}

/* ---- Tiny Phone (≤380px) ---- */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-logo-img { width: clamp(150px, 82vw, 260px); }
  .hero { min-height: 580px; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .about-img-main { height: 240px; }
  .res-form-wrap { padding: 18px 12px; }
  .map-wrapper iframe { height: 220px; }
  .yt-stat-num { font-size: 1.4rem; }
}

/* ---- Mobile Landscape ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100dvh; height: 100dvh; }
  .hero-content { padding: 0 20px; }
  .hero-logo-img { width: clamp(120px, 28vw, 240px); }
  .hero-badge { margin-bottom: 12px; }
  .hero-tagline { font-size: 0.95rem; margin-bottom: 8px; }
  .hero-desc { margin-bottom: 20px; }
  .hero-actions { margin-bottom: 20px; }
  .hero-scroll-indicator { display: none; }
}
