/* ========== TOKENS ========== */
:root {
  --navy: #1f2456;
  --navy-deep: #161a44;
  --navy-soft: #2a3070;
  --gold: #e0b14a;
  --gold-warm: #d49c2c;
  --gold-light: #f3d989;
  --cream: #fbf6ec;
  --cream-deep: #f3ead7;
  --paper: #ffffff;
  --ink: #1a1a2e;
  --ink-soft: #4a4d6a;
  --muted: #7a7d97;
  --line: rgba(31, 36, 86, 0.12);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 12px rgba(31, 36, 86, 0.06);
  --shadow: 0 18px 50px rgba(31, 36, 86, 0.12);
  --shadow-lg: 0 30px 80px rgba(31, 36, 86, 0.18);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TYPO HELPERS ========== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--navy);
}
.section-title .accent {
  color: var(--gold-warm);
  font-style: italic;
  font-weight: 500;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-eyebrow { justify-content: center; }
.lead {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.accent {
  color: var(--gold-warm);
  font-style: italic;
  font-weight: 500;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 30px -8px rgba(224, 177, 74, 0.6);
}
.btn-primary:hover {
  background: var(--gold-warm);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(224, 177, 74, 0.8);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}
.btn-large {
  padding: 20px 40px;
  font-size: 17px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(251, 246, 236, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(31, 36, 86, 0.08);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: var(--navy); }
.logo-mark {
  width: 46px;
  height: 46px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.logo-mark img,
.logo-mark.logo-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-text em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 2px;
}
.nav-close,
.nav-mobile-extras { display: none; }
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 26, 68, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 98;
}
.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.2s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a {
  color: var(--navy);
  text-shadow: none;
}
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-warm);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #161a44;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.55) saturate(0.95) contrast(1.0) blur(1.5px);
  transform: scale(1.02);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Subtle global darkening, slightly deeper at the very bottom to anchor the page */
  background:
    linear-gradient(180deg,
      rgba(22, 26, 68, 0.18) 0%,
      rgba(22, 26, 68, 0.08) 45%,
      rgba(22, 26, 68, 0.35) 92%,
      rgba(22, 26, 68, 0.7) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Focused dark cloud in the upper-left to make the title pop;
     the lower-left (owner) and right side (storefront) stay bright. */
  background:
    radial-gradient(ellipse 55% 50% at 18% 32%, rgba(22, 26, 68, 0.78), rgba(22, 26, 68, 0.0) 70%),
    radial-gradient(ellipse at 88% 22%, rgba(224, 177, 74, 0.06), transparent 55%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-photo img {
    object-position: center 38%;
    filter: brightness(0.75) saturate(1.1) contrast(1.05);
  }
  .hero-bg {
    background:
      linear-gradient(180deg,
        rgba(22, 26, 68, 0.45) 0%,
        rgba(22, 26, 68, 0.28) 30%,
        rgba(22, 26, 68, 0.55) 75%,
        rgba(22, 26, 68, 0.92) 100%);
  }
  .hero-overlay {
    background:
      radial-gradient(ellipse 90% 55% at 50% 35%, rgba(22, 26, 68, 0.5), transparent 75%);
  }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 200px;
  width: 100%;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  padding: 8px 18px;
  background: rgba(224, 177, 74, 0.12);
  border: 1px solid rgba(224, 177, 74, 0.3);
  border-radius: 999px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224, 177, 74, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(224, 177, 74, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 auto 28px;
  max-width: 920px;
  color: #fff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 6px 18px rgba(22, 26, 68, 0.7),
    0 12px 40px rgba(22, 26, 68, 0.55);
}
.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: #fff;
  max-width: 520px;
  margin: 0 auto 44px;
  font-weight: 400;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 3px 10px rgba(22, 26, 68, 0.7),
    0 8px 24px rgba(22, 26, 68, 0.5);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: center;
}
.hero-rating {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(22, 26, 68, 0.5);
  border: 1px solid rgba(224, 177, 74, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.rating-text strong { color: #fff; }
.rating-text small { color: rgba(255,255,255,0.85); }
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.rating-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.rating-text small {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}
.hero-scroll {
  display: none;
}
.hero-scroll-inner {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.hero-scroll span {
  display: block;
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ========== ABOUT ========== */
.about {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  align-items: center;
}
.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
}
.img-frame {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(31, 36, 86, 0.35);
  background: var(--navy-deep);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.about-image:hover .img-frame img { transform: scale(1.03); }
.img-frame-1 {
  top: 0;
  left: 0;
  width: 72%;
  height: 76%;
}
.img-frame-2 {
  bottom: 0;
  right: 0;
  width: 56%;
  height: 50%;
  border: 8px solid var(--cream);
  border-radius: 24px;
}
.about-text { padding-left: 12px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.stat span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.about-quote {
  margin: 32px 0 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.stat-stars {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

/* ========== VIDEORECENZE ========== */
.video-review {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
.video-review .section-head { margin-bottom: 48px; }
.video-review .section-eyebrow { justify-content: center; }
.video-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.video-lite {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  box-shadow: 0 24px 70px -20px rgba(31, 36, 86, 0.45);
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}
.video-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.3s;
  filter: brightness(0.88);
}
.video-lite:hover img,
.video-lite:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 0 12px rgba(255,255,255,0.14);
  transition: transform 0.3s var(--ease), background 0.25s;
  pointer-events: none;
}
.video-lite:hover .video-play,
.video-lite:focus-visible .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-warm);
}
.video-play svg {
  width: 36px;
  height: 36px;
  margin-left: 5px;
  display: block;
}
.video-lite iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-credit {
  text-align: center;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.3px;
}
.video-credit strong { color: var(--navy); font-weight: 600; }

@media (max-width: 768px) {
  .video-review { padding: 70px 0; }
  .video-review .section-head { margin-bottom: 32px; }
  .video-play { width: 64px; height: 64px; box-shadow: 0 10px 26px rgba(0,0,0,0.35), 0 0 0 8px rgba(255,255,255,0.14); }
  .video-play svg { width: 26px; height: 26px; }
}

/* ========== MENU ========== */
.menu {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
}
.menu .section-head {
  text-align: center;
  margin-bottom: 72px;
}
.menu .section-eyebrow { justify-content: center; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.menu-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

/* ===== Hero cards (with photo) ===== */
.menu-hero-card {
  grid-column: span 6;
  min-height: 520px;
  display: flex;
  background: var(--navy-deep);
  color: #fff;
  box-shadow: 0 12px 36px -20px rgba(31, 36, 86, 0.32);
}
.menu-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -28px rgba(31, 36, 86, 0.32);
}
.menu-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.menu-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}
.menu-hero-card:hover .menu-hero-photo img {
  transform: scale(1.1);
}
.menu-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(22, 26, 68, 0.15) 0%,
    rgba(22, 26, 68, 0.55) 30%,
    rgba(22, 26, 68, 0.9) 55%,
    rgba(22, 26, 68, 1) 70%);
  transition: opacity 0.6s var(--ease);
}
.menu-hero-card.menu-hero-dark .menu-hero-photo::after {
  background: linear-gradient(180deg,
    rgba(22, 26, 68, 0.15) 0%,
    rgba(22, 26, 68, 0.55) 30%,
    rgba(22, 26, 68, 0.9) 55%,
    rgba(22, 26, 68, 1) 70%);
}
.menu-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 36px 36px;
  width: 100%;
  margin-top: auto;
}
.menu-hero-head { margin-bottom: 24px; }
.menu-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(31, 36, 86, 0.08);
  color: var(--navy);
  margin-bottom: 14px;
}
.menu-tag-light {
  background: rgba(224, 177, 74, 0.22);
  color: var(--gold-light);
}
.menu-hero-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.menu-hero-desc {
  color: rgba(255,255,255,0.92);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  max-width: 380px;
  font-weight: 400;
}

/* ===== Prices ===== */
.menu-prices {
  display: grid;
  gap: 2px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 16px;
}
.menu-prices-two-col {
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.menu-prices li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  transition: padding 0.3s var(--ease);
}
.menu-prices li:last-child,
.menu-prices-two-col li:nth-last-child(-n+2) { border-bottom: 0; }
.menu-prices li span {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.menu-prices li b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.menu-prices li b::after {
  content: "Kč";
  font-size: 11px;
  font-weight: 500;
  margin-left: 3px;
  opacity: 0.6;
  letter-spacing: 0;
}
.menu-prices li:hover b {
  transform: translateY(-2px) scale(1.06);
}

/* ===== Side cards ===== */
.menu-side-card {
  grid-column: span 6;
  background: var(--navy-deep);
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
  box-shadow: 0 12px 36px -24px rgba(31, 36, 86, 0.18);
}
.menu-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -28px rgba(31, 36, 86, 0.32);
}
.menu-side-photo-bg {
  z-index: 0;
}
.menu-side-photo-bg::after {
  background: linear-gradient(180deg,
    rgba(22, 26, 68, 0.25) 0%,
    rgba(22, 26, 68, 0.65) 35%,
    rgba(22, 26, 68, 0.92) 65%,
    rgba(22, 26, 68, 1) 85%);
}
.menu-side-photo .menu-hero-photo img {
  transform: scale(1.05);
  transition: transform 1s var(--ease);
}
.menu-side-photo:hover .menu-hero-photo img {
  transform: scale(1.1);
}
.menu-side-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-side-head { margin-bottom: 20px; }
.menu-side-card .menu-tag {
  background: rgba(224, 177, 74, 0.22);
  color: var(--gold-light);
}
.menu-side-card .menu-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.menu-side-card .menu-card-desc {
  color: rgba(255, 255, 255, 0.78);
  margin: 4px 0 0;
  font-size: 14px;
}
.menu-side-card .menu-card-desc b {
  color: var(--gold);
  font-weight: 600;
}
.menu-side-card .menu-prices {
  border-top-color: rgba(255, 255, 255, 0.14);
  margin-top: auto;
}
.menu-side-card .menu-prices li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.menu-side-card .menu-prices li span {
  color: rgba(255, 255, 255, 0.92);
}
.menu-side-card .menu-prices li b {
  color: var(--gold);
}

/* ===== Sauces ===== */
.menu-sauces-card .sauce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.sauce-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease),
              border-color 0.25s var(--ease),
              color 0.25s var(--ease),
              transform 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.sauce-tags span:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -10px rgba(224, 177, 74, 0.55);
}

/* ===== Scroll reveal for menu cards ===== */
.menu-card {
  opacity: 0;
  transform: translateY(28px);
}
.menu-card.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease),
              box-shadow 0.5s var(--ease);
}
.menu-card.is-in:nth-child(1) { transition-delay: 0s; }
.menu-card.is-in:nth-child(2) { transition-delay: 0.1s; }
.menu-card.is-in:nth-child(3) { transition-delay: 0.2s; }
.menu-card.is-in:nth-child(4) { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .menu-hero-card,
  .menu-side-card { grid-column: span 12; }
  .menu-hero-card { min-height: 460px; }
}
@media (max-width: 640px) {
  .menu-prices-two-col { grid-template-columns: 1fr; }
  .menu-hero-title { font-size: 30px; }
  .menu-hero-content { padding: 28px; }
  .menu-side-card { padding: 28px; }
}

/* ========== GALLERY ========== */
.gallery {
  padding: 140px 0;
  background: var(--cream);
}
.gallery .section-head { margin-bottom: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-deep);
  cursor: pointer;
  box-shadow: 0 12px 32px -16px rgba(31, 36, 86, 0.25);
}
.gi-1 { grid-column: 1; grid-row: 1 / span 2; }
.gi-2 { grid-column: 2 / span 2; grid-row: 1; }
.gi-3 { grid-column: 2 / span 2; grid-row: 2; }
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.gallery-item figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  padding: 8px 16px;
  background: rgba(22, 26, 68, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 177, 74, 0.2), transparent 70%);
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 177, 74, 0.15), transparent 70%);
}
.cta-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}
.cta-strip p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 36px;
}

/* ========== CONTACT ========== */
.contact {
  padding: 140px 0;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.info-block:hover {
  border-color: rgba(224, 177, 74, 0.4);
  transform: translateX(4px);
}
.info-block-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.info-block-link:hover .info-icon {
  background: var(--gold);
  color: var(--navy);
}
.info-block-link:active {
  transform: translateX(2px) scale(0.99);
}
.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 22px; height: 22px; }
.info-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px;
}
.info-block p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}
.info-block a:hover { color: var(--gold-warm); }
.hours {
  margin-top: 4px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.hours li span:last-child {
  font-weight: 600;
  color: var(--navy);
}
.hours li .closed {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}
.contact-map {
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--paper);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-logo .logo-mark { width: 52px; height: 52px; }
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
.footer-logo em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  opacity: 0.75;
}
.footer-col p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-image { max-width: 500px; width: 100%; margin: 0 auto; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px;
  }
  .gi-1 { grid-column: 1 / span 2; grid-row: 1; }
  .gi-2 { grid-column: 1; grid-row: 2; }
  .gi-3 { grid-column: 2; grid-row: 2; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .about, .menu, .gallery, .contact { padding: 80px 0; }
  .cta-strip { padding: 70px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 86%;
    max-width: 380px;
    z-index: 99;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 177, 74, 0.18), transparent 60%),
      radial-gradient(circle at 0% 100%, rgba(224, 177, 74, 0.08), transparent 50%),
      linear-gradient(155deg, #1f2456 0%, #161a44 60%, #0f1233 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 88px 32px 32px;
    transition: right 0.45s var(--ease);
    box-shadow: -20px 0 80px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-close {
    display: flex;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border: 0;
    border-radius: 999px;
    color: var(--navy);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    transition: background 0.25s, transform 0.3s;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-close:hover,
  .nav-close:active {
    background: #f0c562;
    transform: rotate(90deg);
  }
  .nav-close svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    display: block;
  }
  .nav-links a {
    color: #fff;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 16px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    transition: padding-left 0.3s var(--ease), color 0.3s;
  }
  .nav-links a::after { display: none; }
  .nav-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateY(-50%);
    transition: width 0.3s var(--ease);
  }
  .nav-links a:hover {
    padding-left: 22px;
    color: var(--gold-light);
  }
  .nav-links a:hover::before { width: 14px; }
  .navbar.scrolled .nav-links a {
    color: #fff;
    text-shadow: none;
  }
  .nav-cta {
    margin-top: 22px;
    padding: 16px 24px !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-family: var(--font-body) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    border-bottom: 0 !important;
    text-align: center !important;
    border-radius: 999px;
    box-shadow: 0 12px 30px -8px rgba(224, 177, 74, 0.55);
  }
  .nav-cta::before { display: none !important; }
  .nav-cta:hover {
    padding-left: 24px !important;
    color: var(--navy) !important;
    transform: translateY(-2px);
  }
  .nav-mobile-extras {
    display: block;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
  }
  .nav-hours {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .nav-hours li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 6px 0;
    border: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
  }
  .nav-hours li::before { display: none; }
  .nav-hours li span {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.2px;
  }
  .nav-hours b {
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  .nav-hours em {
    color: rgba(255,255,255,0.45);
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
  }
  .nav-toggle { display: flex; }

  .hero-content { padding: 130px 20px 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-rating { display: none; }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .menu-card { padding: 32px 28px; }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat strong { font-size: 24px; }
  .stat span { font-size: 11px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .gi-1, .gi-2, .gi-3 { grid-column: 1; grid-row: auto; }
  .gallery-item figcaption { opacity: 1; transform: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-logo { justify-content: center; }
  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .badge-circle {
    width: 110px;
    height: 110px;
    top: 4%;
    right: 0;
  }
  .badge-inner strong { font-size: 16px; }
  .contact-map { height: 360px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .menu-card-title { font-size: 22px; }
  .section-title { font-size: 1.9rem; }
  .logo-text { font-size: 19px; }
  .logo-text em { font-size: 11px; }
}
