﻿/* =============================================
   DOWNTOWN BRUSSELS — style.css
   Blue Neon + Luxury Bar Hybrid
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --bg-black: #050810;
  --bg-dark: #080d1a;
  --bg-card: rgba(10, 18, 40, 0.75);
  --neon-blue: #00b4ff;
  --neon-blue2: #0077ff;
  --neon-glow: rgba(0, 180, 255, 0.35);
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.70);
  --white-40: rgba(255, 255, 255, 0.40);
  --white-15: rgba(255, 255, 255, 0.08);
  --border: rgba(0, 180, 255, 0.18);
  --border-gold: rgba(201, 168, 76, 0.25);
  --font-main: 'Outfit', sans-serif;
  --font-head: 'Rajdhani', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-black);
  background-image: url('images/IMG_0655.JPG');
  background-attachment: scroll;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  background-origin: padding-box;
  background-origin: border-box;
}

@media (min-width: 1025px) {
  body {
    background-attachment: fixed;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-blue2);
  border-radius: 3px;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--neon-blue2);
  color: #fff;
}

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

/* ---------- Section Basics ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-blue);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(0, 180, 255, 0.08);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-subtitle {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--white-70);
  font-size: 1.05rem;
}

.title-line {
  width: 60px;
  height: 3px;
  /* background: linear-gradient(90deg, var(--neon-blue), var(--gold)); */
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: rgba(4, 9, 24, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--neon-glow);
  border-color: rgba(0, 180, 255, 0.4);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-blue2), var(--neon-blue));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 119, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 255, 0.5);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.btn-block {
  width: 100%;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

/* =============================================
   RESERVATION MODAL
   ============================================= */
.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.reservation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reservation-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(240, 208, 128, 0.16), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.74), rgba(3, 8, 18, 0.9));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.reservation-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(94dvh, 960px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #8f6a2b rgba(8, 10, 18, 0.86);
  padding: 0 40px 30px;
  border-radius: 28px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background:
    linear-gradient(135deg, rgba(240, 208, 128, 0.08), transparent 34%),
    linear-gradient(155deg, rgba(10, 14, 28, 0.94), rgba(6, 9, 20, 0.92) 52%, rgba(15, 10, 15, 0.9));
  box-shadow:
    0 36px 120px rgba(1, 6, 20, 0.78),
    0 0 0 1px rgba(255, 230, 170, 0.06),
    0 0 40px rgba(201, 168, 76, 0.16);
  transform: translateY(28px) scale(0.98);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  animation: reservationModalFade 0.45s ease;
}

.reservation-modal__dialog::-webkit-scrollbar {
  width: 10px;
}

.reservation-modal__dialog::-webkit-scrollbar-track {
  background: rgba(8, 10, 18, 0.86);
}

.reservation-modal__dialog::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a27a33 0%, #8f6a2b 100%);
  border-radius: 999px;
  border: 2px solid rgba(8, 10, 18, 0.86);
}

.reservation-modal__dialog::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #b28739 0%, #9b742f 100%);
}

.reservation-modal.is-open .reservation-modal__dialog {
  transform: translateY(0) scale(1);
  border-color: rgba(240, 208, 128, 0.3);
}

.reservation-modal__dialog::before {
  /* content: ''; */
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 230, 185, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 14%),
    linear-gradient(120deg, rgba(240, 208, 128, 0.04), transparent 28%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.reservation-modal__dialog::after {
  content: '';
  position: absolute;
  inset: 0 auto auto -12%;
  width: 48%;
  height: 140px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 36%, transparent 58%);
  opacity: 0.16;
  transform: rotate(-10deg);
  pointer-events: none;
}

.reservation-modal__header {
  text-align: center;
  position: relative;
  margin: 0 -40px 24px;
  padding: 38px 40px 24px;
  border-radius: 28px 28px 26px 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 5, 12, 0.24), rgba(4, 5, 12, 0.82)),
    linear-gradient(135deg, rgba(201, 168, 76, 0.12), transparent 42%),
    url('images/about_interior.png') center/cover no-repeat;
  box-shadow:
    inset 0 -1px 0 rgba(240, 208, 128, 0.14),
    inset 0 -36px 60px rgba(2, 4, 12, 0.35);
}

.reservation-modal__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(240, 208, 128, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(201, 168, 76, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(5, 7, 18, 0.2), rgba(6, 8, 18, 0.74));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
}

.reservation-modal__header::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 208, 128, 0.52), transparent);
  pointer-events: none;
}

.reservation-modal__tag {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  border-color: rgba(240, 208, 128, 0.24);
  background: rgba(12, 10, 16, 0.34);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}

.reservation-modal__title {
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  letter-spacing: 0.16em;
  font-weight: 800;
  background: linear-gradient(180deg, #fff7d8 0%, #f0d080 38%, #c9a84c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.16);
}

.reservation-modal__subtitle {
  max-width: 720px;
  margin: 10px auto 0;
  position: relative;
  z-index: 1;
  color: rgba(255, 246, 220, 0.78);
  font-size: 0.95rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.reservation-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fdf4d7;
  background: linear-gradient(180deg, rgba(24, 19, 22, 0.68), rgba(10, 10, 16, 0.82));
  border: 1px solid rgba(240, 208, 128, 0.18);
  transition: transform var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  z-index: 2;
}

.reservation-modal__close:hover {
  transform: scale(1.06);
  color: var(--gold-light);
  border-color: rgba(240, 208, 128, 0.4);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.24);
}

.reservation-modal__close span {
  font-size: 1.7rem;
  line-height: 1;
}

.reservation-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  padding-bottom: 10px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.reservation-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.reservation-modal__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.reservation-modal__form .form-group label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: rgba(255, 236, 194, 0.74);
}

.reservation-modal__form .form-group input,
.reservation-modal__form .form-group select,
.reservation-modal__form .form-group textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px 14px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(240, 208, 128, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 230, 170, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(8, 10, 18, 0.42);
  color: #fff8ea;
  box-shadow:
    inset 0 -1px 0 rgba(240, 208, 128, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
  line-height: 1.25;
}

.reservation-datetime-field {
  position: relative;
}

.reservation-datetime-trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 10px 16px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(240, 208, 128, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 230, 170, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(8, 10, 18, 0.42);
  color: #fff8ea;
  box-shadow:
    inset 0 -1px 0 rgba(240, 208, 128, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.reservation-datetime-value {
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff8ea;
  line-height: 1.2;
}

.reservation-datetime-value--placeholder {
  color: rgba(255, 248, 234, 0.54);
}

.reservation-datetime-icon {
  width: 40px;
  height: 34px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(240, 208, 128, 0.12);
  border: 1px solid rgba(240, 208, 128, 0.24);
  color: var(--gold-light);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.12);
}

.reservation-datetime-icon svg {
  width: 20px;
  height: 20px;
}

.reservation-datetime-native {
  position: absolute;
  inset: 0;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
  border: 0 !important;
}

.reservation-modal__form .form-group input:hover,
.reservation-modal__form .form-group select:hover,
.reservation-modal__form .form-group textarea:hover,
.reservation-datetime-trigger:hover {
  border-color: rgba(240, 208, 128, 0.26);
  border-bottom-color: rgba(240, 208, 128, 0.44);
}

.reservation-modal__form .form-group input:focus,
.reservation-modal__form .form-group select:focus,
.reservation-modal__form .form-group textarea:focus,
.reservation-datetime-trigger:focus-visible,
.reservation-datetime-trigger.is-active {
  background:
    linear-gradient(180deg, rgba(240, 208, 128, 0.06), rgba(240, 208, 128, 0.01)),
    rgba(10, 10, 18, 0.56);
  border-color: rgba(240, 208, 128, 0.38);
  border-bottom-color: var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(240, 208, 128, 0.18),
    0 12px 32px rgba(201, 168, 76, 0.12),
    0 0 22px rgba(201, 168, 76, 0.12);
  transform: translateY(-1px);
}

.reservation-modal__form .form-group textarea {
  min-height: 92px;
}

#res-phone {
  padding-top: 14px;
  padding-bottom: 14px;
}

.reservation-modal__form .form-group.is-invalid input,
.reservation-modal__form .form-group.is-invalid select,
.reservation-modal__form .form-group.is-invalid textarea,
.reservation-modal__form .form-group.is-invalid .reservation-datetime-trigger {
  border-color: rgba(255, 90, 120, 0.55);
  border-bottom-color: rgba(255, 90, 120, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 90, 120, 0.18),
    0 0 18px rgba(255, 90, 120, 0.12);
}

.reservation-modal__form .form-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 30px;
}

.reservation-modal__submit {
  width: 100%;
  margin: 18px auto 0;
  display: block;
  position: sticky;
  bottom: 6px;
  z-index: 4;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 208, 128, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #f4d88f 0%, #d8b35c 44%, #b9882d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 232, 0.46),
    0 14px 36px rgba(96, 62, 10, 0.32),
    0 0 24px rgba(201, 168, 76, 0.18);
  color: #1b1208;
  font-weight: 800;
}

.reservation-modal__submit:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 251, 238, 0.52),
    0 20px 44px rgba(120, 78, 14, 0.36),
    0 0 30px rgba(240, 208, 128, 0.24);
  filter: brightness(1.04);
}

.reservation-modal__submit::before {
  content: '';
  position: absolute;
  inset: 1px auto 1px -30%;
  width: 28%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02) 60%, transparent);
  transform: skewX(-20deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.reservation-modal__submit:hover::before {
  transform: translateX(420%) skewX(-20deg);
}

@keyframes reservationModalFade {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .reservation-modal {
    padding: 18px;
  }

  /* Mobile Safari/iOS fix: native datetime picker must be opened by direct tap on input */
  .reservation-datetime-native {
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    pointer-events: auto;
    cursor: pointer;
    z-index: 3;
  }

  .reservation-modal__dialog {
    padding: 0 24px 32px;
    max-height: 92vh;
    overflow: auto;
    border-radius: 22px;
  }

  .reservation-modal__header {
    margin: 0 -24px 32px;
    padding: 56px 24px 32px;
    border-radius: 22px 22px 20px 20px;
  }

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

  .reservation-modal__title {
    letter-spacing: 0.08em;
  }

  .reservation-modal__subtitle {
    font-size: 0.94rem;
  }
}

/* =============================================
   NAVBAR — Premium Luxury Bar (v2)
   ============================================= */

/* ---- Base shell ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  /* Rich dark base with very faint diagonal metallic sheen */
  background:
    linear-gradient(108deg,
      rgba(255, 215, 100, 0.045) 0%,
      transparent 45%,
      rgba(255, 215, 100, 0.025) 100%),
    linear-gradient(180deg,
      rgba(5, 7, 18, 0.97) 0%,
      rgba(7, 11, 26, 0.94) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  overflow: visible;
}

.navbar.scrolled {
  background:
    linear-gradient(108deg,
      rgba(255, 215, 100, 0.06) 0%,
      transparent 45%,
      rgba(255, 215, 100, 0.03) 100%),
    linear-gradient(180deg,
      rgba(3, 4, 12, 0.99) 0%,
      rgba(5, 8, 20, 0.99) 100%);
  box-shadow:
    0 1px 0 rgba(201, 168, 76, 0.22),
    0 2px 0 rgba(201, 168, 76, 0.06),
    0 8px 48px rgba(0, 0, 0, 0.75),
    0 4px 20px rgba(0, 160, 220, 0.06);
}

/* ---- Top gold accent line ---- */
.nav-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 168, 76, 0.0) 5%,
      rgba(240, 210, 120, 0.9) 30%,
      rgba(255, 228, 150, 1.0) 50%,
      rgba(240, 210, 120, 0.9) 70%,
      rgba(201, 168, 76, 0.0) 95%,
      transparent 100%);
  animation: nav-top-shimmer 4s ease-in-out infinite;
}

@keyframes nav-top-shimmer {

  0%,
  100% {
    opacity: 0.80;
  }

  50% {
    opacity: 1.00;
  }
}

/* ---- Sweeping shimmer highlight ---- */
.nav-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0;
  z-index: 0;
}

.nav-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(255, 228, 140, 0.055) 50%,
      transparent 70%);
  animation: nav-sweep 7s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes nav-sweep {
  0% {
    left: -120%;
  }

  100% {
    left: 180%;
  }
}

/* ---- Bottom glow border ---- */
.nav-bottom-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 168, 76, 0.35) 20%,
      rgba(240, 210, 100, 0.55) 50%,
      rgba(201, 168, 76, 0.35) 80%,
      transparent 100%);
}

.nav-bottom-glow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10%;
  right: 10%;
  height: 10px;
  background: radial-gradient(ellipse at center,
      rgba(201, 168, 76, 0.20) 0%,
      rgba(0, 180, 255, 0.06) 60%,
      transparent 100%);
  pointer-events: none;
  filter: blur(2px);
}

/* ---- Container ---- */
.nav-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ===========================================================
   LOGO IMAGE
   =========================================================== */
.logo-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Soft gold drop shadow so it reads on any darkness */
  filter:
    drop-shadow(0 0 10px rgba(201, 168, 76, 0.50)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.60));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.logo-img-wrap:hover .nav-logo-img {
  filter:
    drop-shadow(0 0 18px rgba(240, 210, 100, 0.80)) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.55));
  transform: scale(1.04);
}

/* Small "Brussels" sub-caption */
.logo-city {
  display: block;
  font-family: var(--font-main);
  font-size: 0.60rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.55);
  padding-left: 2px;
  line-height: 1;
  transform: translateY(-10px);
  transition: color 0.3s ease, transform 0.3s ease;
}

.logo-img-wrap:hover .logo-city {
  color: rgba(240, 210, 100, 0.80);
}

/* Keep legacy .logo class for anything else that uses it */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* ===========================================================
   NAV LINKS
   =========================================================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 9px 16px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 0.28s ease, background 0.28s ease;
  white-space: nowrap;
}

/* Slide-up underline bar */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: linear-gradient(90deg,
      var(--gold-light) 0%,
      rgba(255, 228, 140, 0.6) 100%);
  border-radius: 1px;
  transform: scaleX(0) translateY(3px);
  transform-origin: center bottom;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.07);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.35);
}

.nav-link:hover::after {
  transform: scaleX(1) translateY(0);
  opacity: 1;
}

.nav-link.active {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.35);
}

.nav-link.active::after {
  transform: scaleX(1) translateY(0);
  opacity: 1;
}

/* ===========================================================
   RIGHT CLUSTER
   =========================================================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Language Selector ---- */
.lang-selector {
  display: flex;
  gap: 2px;
}

.lang-btn {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.40);
  border: 1px solid transparent;
  transition: all 0.28s ease;
  background: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn.active {
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.09);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.12);
}

/* ---- RÉSERVER Button — premium gold CTA ---- */
.nav-reserve-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  /* pill shape */
  font-family: var(--font-head);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1100;
  /* dark text on gold fill */
  /* Metallic gold gradient fill */
  background: linear-gradient(135deg,
      #f0d060 0%,
      #c9a84c 40%,
      #e8c055 70%,
      #b8943c 100%);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.50),
    0 4px 20px rgba(201, 168, 76, 0.30),
    0 1px 0 rgba(255, 240, 180, 0.20) inset;
  transition: all 0.30s ease;
  position: relative;
  overflow: hidden;
}

/* Inner sheen stripe */
.nav-reserve-btn::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 45%;
  height: 160%;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(255, 255, 220, 0.28) 50%,
      transparent 70%);
  transform: skewX(-12deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.nav-reserve-btn:hover::before {
  left: 110%;
}

.nav-reserve-btn:hover {
  color: #0d0900;
  background: linear-gradient(135deg,
      #ffe080 0%,
      #d4a830 40%,
      #f0cc50 70%,
      #c09020 100%);
  box-shadow:
    0 0 0 1px rgba(240, 200, 80, 0.70),
    0 6px 28px rgba(201, 168, 76, 0.60),
    0 12px 40px rgba(201, 168, 76, 0.25),
    0 1px 0 rgba(255, 240, 180, 0.30) inset;
  transform: translateY(-2px) scale(1.04);
}

/* SVG calendar icon inside button */
.reserve-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.nav-reserve-btn:hover .reserve-svg {
  transform: rotate(-6deg) scale(1.1);
}

/* Legacy emoji icon (kept for any fallback) */
.reserve-icon {
  font-size: 0.95rem;
}

/* ===========================================================
   HAMBURGER
   =========================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(201, 168, 76, 0.05);
  border-radius: 8px;
  transition: all 0.28s ease;
}

.hamburger:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.18);
}

.ham-line {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MOBILE DRAWER (slides in from right)
   ============================================= */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 85vw);
  height: 100vh;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(160deg,
      rgba(4, 6, 16, 0.99) 0%,
      rgba(6, 10, 26, 0.99) 60%,
      rgba(4, 6, 18, 0.99) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  /* Left edge glow */
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.8), -1px 0 0 rgba(201, 168, 76, 0.08);
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(201, 168, 76, 0.55)) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.60));
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
}

.drawer-close span {
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-1px);
}

.drawer-close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

/* Divider */
.drawer-divider {
  height: 1px;
  margin: 0 28px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

/* Drawer Nav */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.drawer-link::after {
  content: '→';
  position: absolute;
  right: 28px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: var(--gold-light);
  font-size: 1rem;
}

.drawer-link:hover {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.drawer-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Drawer CTA */
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px 28px 20px;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.04) 100%);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.drawer-cta:hover {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.08) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.28);
  color: #fff;
}

/* Drawer Language */
.drawer-lang {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 28px 20px;
}

/* Drawer Footer Info */
.drawer-footer {
  /* margin-top: auto; */
  padding: 20px 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

/* ---- Backdrop ---- */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1050;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-backdrop.show {
  display: block;
  opacity: 1;
}



/* =============================================
   HERO
   ============================================= */
/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url('images/IMG_0657.JPG');
  background-size: cover;
  background-position: center 42%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-origin: padding-box;
  padding-top: var(--nav-h);
}

@media (min-width: 1025px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 6, 3, 0.18) 0%,
      rgba(11, 10, 10, 0.56) 34%,
      rgba(8, 11, 20, 0.84) 68%,
      rgba(5, 8, 16, 0.96) 100%);
  z-index: 1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 6px 20px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.1);
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease forwards;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #a8d8ff 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 0.8s ease 0.1s forwards;
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-70);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.75;
  animation: fadeInDown 0.8s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.stat {
  text-align: center;
  padding: 0 32px;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neon-blue);
  text-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--white-70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 4px;
  height: 10px;
  background: var(--neon-blue);
  border-radius: 2px;
  animation: scroll-dot 2s ease infinite;
}

@keyframes scroll-dot {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}

/* =============================================
   OFFERS SECTION
   ============================================= */
.offers-section {
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.88) 0%, rgba(8, 13, 26, 0.92) 100%);
}

.offer-card {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.offer-left {
  flex: 1;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(201, 168, 76, 0.15);
}

.badge-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg-black);
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-black);
  letter-spacing: 0.06em;
}

.offer-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.offer-desc {
  color: var(--white-70);
  margin-bottom: 20px;
  line-height: 1.7;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-old {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: var(--white-40);
}

.price-new {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.offer-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.offer-img-wrap {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.offer-img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05) brightness(0.95) sepia(0.06);
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.offer-real-img {
  aspect-ratio: 4 / 5;
}

.beer-img {
  width: 56%;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0, 180, 255, 0.2);
}

.snack-img {
  width: 52%;
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--border-gold);
}

.offer-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(0, 180, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- New Tasting Flight List (Inside offer-card) ---- */
.tasting-flight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.tflight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tflight-item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.tflight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}

.tflight-info {
  display: flex;
  flex-direction: column;
}

.tflight-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.tflight-meta {
  font-size: 0.75rem;
  color: var(--white-40);
  letter-spacing: 0.02em;
}

.blue-glow {
  background: radial-gradient(circle at center, rgba(0, 180, 255, 0.3) 0%, transparent 70%);
}

@media (max-width: 600px) {
  .tasting-flight-list {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   FEATURES SECTION — v2 (Reference Style)
   ============================================= */
/* =============================================
   FEATURES SECTION — v2 (Reference Style)
   ============================================= */
.features-section-v2 {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: #04060b;
}

.features-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  filter: blur(6px) brightness(0.3) saturate(0.82) sepia(0.12);
  transform: scale(1.08);
  opacity: 0.72;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
}

@media (min-width: 1025px) {
  .features-bg-overlay {
    background-attachment: fixed;
    filter: blur(7px) brightness(0.4) saturate(0.75);
  }
}

.features-v2-container {
  position: relative;
  z-index: 2;
}

.features-v2-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* Left Content: Vertical Cards */
.features-v2-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat-v2-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.feat-v2-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(106, 130, 251, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feat-v2-card:hover {
  transform: translateX(12px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(106, 130, 251, 0.3);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(106, 130, 251, 0.1);
}

.feat-v2-card:hover::before {
  opacity: 1;
}

.feat-v2-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: #6a82fb;
  line-height: 1;
  opacity: 0.85;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.feat-v2-card:hover .feat-v2-num {
  color: #8da0ff;
  text-shadow: 0 0 15px rgba(106, 130, 251, 0.4);
  transform: scale(1.05);
}

.feat-v2-info {
  flex: 1;
}

.feat-v2-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #798ffd;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.feat-v2-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Right Content: Product Image */
.features-v2-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feat-v2-img {
  max-width: 100%;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 28px;
  filter: saturate(0.92) contrast(1.06) brightness(0.94) sepia(0.08) drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.features-v2-product:hover .feat-v2-img {
  transform: scale(1.03) translateY(-10px);
}

/* Glow behind the product */
.features-v2-product::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(106, 130, 251, 0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .features-v2-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .features-v2-product {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .features-v2-list {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .features-section-v2 {
    padding: 80px 0;
  }

  .feat-v2-card {
    padding: 20px;
    gap: 18px;
  }

  .feat-v2-num {
    font-size: 2.2rem;
  }
}

/* =============================================
   MENU SECTION (PREMIUM V4 REDESIGN - REFERENCE MATCH)
   ============================================= */
.menu-section {
  background: #020408;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  isolation: isolate;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 16, 0.14) 0%, rgba(5, 8, 16, 0.28) 100%),
    radial-gradient(circle at 20% 25%, rgba(0, 180, 255, 0.07) 0%, transparent 22%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.07) 0%, transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.menu-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Menu Intro Text */
.menu-intro-text {
  max-width: 800px;
  margin: -20px auto 55px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white-70);
  font-weight: 400;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.events-intro-text {
  max-width: 850px;
  margin: 30px auto 40px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white-70);
  font-weight: 400;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {

  .menu-intro-text,
  .events-intro-text {
    margin-top: 25px;
    margin-bottom: 35px;
    font-size: 1.05rem;
    padding: 0 10px;
  }
}

.menu-atmo,
.menu-atmo-blur {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.menu-atmo {
  width: 210px;
  aspect-ratio: 5 / 7;
  border-radius: 26px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(0, 180, 255, 0.08) inset;
  opacity: 0.3;
  filter: saturate(0.9) contrast(1.04) brightness(0.95);
}

.menu-atmo-left {
  left: -22px;
  top: 180px;
  transform: rotate(-8deg);
}

.menu-atmo-right {
  right: -16px;
  bottom: 120px;
  transform: rotate(8deg);
}

.menu-atmo-blur {
  border-radius: 50%;
  filter: blur(10px) saturate(0.95);
  opacity: 0.18;
}

.menu-atmo-blur-one {
  width: 260px;
  height: 260px;
  top: 70px;
  right: 14%;
}

.menu-atmo-blur-two {
  width: 220px;
  height: 220px;
  left: 12%;
  bottom: 40px;
}

/* Grid Layouts */
.menu-row-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* Tighter gap like reference */
  margin-bottom: 50px;
  align-items: stretch;
}

.wine-row-v4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 24px;
}

.wine-row-v4 .menu-outer-title {
  min-height: 1.3em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
  white-space: nowrap;
  line-height: 1.1;
}

.menu-column {
  display: flex;
  flex-direction: column;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline {
  position: relative;
  width: 100%;
  justify-content: center;
  padding: 14px 64px 14px 18px;
  margin-bottom: 14px;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-outer-title--accordion {
  min-height: 0;
  margin: 0;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 36px 0 8px;
  box-sizing: border-box;
  font-size: clamp(1.16rem, 1.9vw, 1.72rem);
  letter-spacing: 0.12em;
  line-height: 1;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline:hover {
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(8, 14, 25, 0.35);
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline[aria-expanded="true"] {
  border-color: rgba(212, 175, 55, 0.68);
  background: rgba(8, 14, 25, 0.72);
  box-shadow: none;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline .menu-accordion-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transform: translateY(-50%);
  opacity: 0.85;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline .menu-accordion-icon::before,
.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline .menu-accordion-icon::after {
  width: 12px;
}

/* Tight variant for Wines / Champagnes / Hot Drinks: +/- stays close to label */
.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight {
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight .menu-outer-title--accordion {
  width: auto;
  padding: 0;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight .menu-accordion-icon {
  position: static;
  right: auto;
  top: auto;
  transform: none;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight .menu-accordion-icon::before,
.wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight .menu-accordion-icon::after {
  width: 10px;
}

.menu-row-top--accordion {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 10px;
  align-items: start;
}

.menu-row-secondary--accordion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 6px 0 10px;
  align-items: start;
}

.menu-row-secondary--accordion .menu-accordion-trigger--inline {
  width: 100%;
}

.menu-row-secondary--accordion .happy-hours-v4--panel {
  grid-column: 1 / -1;
}

.menu-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
  margin: 0;
}

.menu-accordion-trigger:hover {
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(8, 14, 25, 0.35);
}

.menu-accordion-trigger:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.55);
  outline-offset: 3px;
}

.menu-accordion-trigger[aria-expanded="true"] {
  border-color: rgba(212, 175, 55, 0.85);
  background: rgba(8, 14, 25, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.menu-outer-title--accordion {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  line-height: 1;
}

.menu-accordion-icon {
  width: 22px;
  height: 22px;
  border-radius: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 22px;
  background: transparent;
  transform: translateY(-13px);
}

.menu-accordion-icon::before,
.menu-accordion-icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #dfbf8d;
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-accordion-icon::after {
  transform: rotate(90deg);
}

.menu-accordion-trigger[aria-expanded="true"] .menu-accordion-icon::after {
  transform: rotate(0deg) scaleX(0);
  opacity: 0;
}

.menu-row-top--accordion .menu-accordion-panel {
  display: none !important;
}

.menu-accordion-display {
  display: block;
  margin: 14px 0 50px;
}

.menu-accordion-display[hidden] {
  display: none !important;
}

.menu-accordion-display-card {
  width: 100%;
  max-width: none;
  margin: 0;
  margin-top: 0;
  max-height: min(76vh, 860px);
  overflow-y: auto;
  animation: menuAccordionIn 0.22s ease;
}

.menu-row-top--accordion .menu-accordion-item.is-inline-open .menu-accordion-panel {
  display: block !important;
  margin-top: 14px;
  animation: menuAccordionIn 0.22s ease;
}

.menu-subgroup {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background: rgba(8, 13, 24, 0.45);
  margin-bottom: 12px;
}

.menu-subgroup__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

.menu-subgroup__summary::-webkit-details-marker {
  display: none;
}

.menu-subgroup__title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #cdb083;
  text-transform: uppercase;
}

.menu-subgroup__count {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  color: #7c6c51;
  min-width: 24px;
  text-align: center;
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.menu-subgroup__body {
  padding: 2px 14px 10px;
}

.menu-subgroup__body .menu-v4-list li {
  padding: 8px 0;
}

.menu-subgroup__body .menu-v4-list .item-meta {
  margin-top: 2px;
}

.menu-v4-list li.menu-v4-list__row-compact-triplet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px max-content;
  align-items: center;
  column-gap: 12px;
}

.menu-v4-list li.menu-v4-list__row-compact-triplet>span:first-child {
  justify-self: start;
  min-width: 0;
}

.menu-v4-list li.menu-v4-list__row-compact-triplet>.item-meta {
  margin-top: 0;
  justify-self: center;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.menu-v4-list li.menu-v4-list__row-compact-triplet>.price {
  margin-left: 0;
  justify-self: end;
  white-space: nowrap;
}

/* Wine card only: keep drink names on one line while 25cl/30cl stay aligned */
.wine-v4-card .menu-v4-list li.menu-v4-list__row-compact-triplet {
  grid-template-columns: minmax(0, 1fr) 64px max-content;
  column-gap: 10px;
}

.wine-v4-card .menu-v4-list li.menu-v4-list__row-compact-triplet>span:first-child {
  white-space: nowrap;
}

.happy-hours-v4--panel {
  margin: 0;
}

.happy-hours-v4--row {
  margin: 0;
}

.happy-hours-v4--panel .happy-hours-grid:not([hidden]) {
  margin-top: 8px;
  margin-bottom: 56px;
}

.happy-hours-title {
  margin: 0;
}

.menu-inline-accordion-panel[hidden] {
  display: none !important;
}

.menu-inline-accordion-panel:not([hidden]) {
  animation: menuAccordionIn 0.22s ease;
}

.happy-hours-subtitle {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  text-align: center;
  color: #9a8d77;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.happy-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.happy-hours-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #d7bc90;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: none;
  vertical-align: middle;
}

.happy-hours-list--split {
  columns: 2;
  column-gap: 16px;
}

.happy-hours-list--split li {
  break-inside: avoid;
  display: block;
  padding: 8px 0;
}

.happy-hours-footnote {
  margin: 18px 0 0;
  color: #8f846f;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

@keyframes menuAccordionIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

/* Category Title (OUTSIDE) */
.menu-outer-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #dfbf8d;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Menu Card V4 */
.menu-v4-card {
  background: rgba(10, 15, 25, 0.65);
  background-image:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.03), transparent),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  padding: 30px 25px;
  /* Tighter padding like reference */
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(212, 175, 55, 0.02);
  transition: all 0.4s ease;
  height: 100%;
  z-index: 1;
}

.menu-v4-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow:
    inset 0 0 50px rgba(212, 175, 55, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.menu-v4-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 180, 255, 0.04) 0%, transparent 34%),
    linear-gradient(315deg, rgba(201, 168, 76, 0.05) 0%, transparent 30%);
  opacity: 0.9;
  pointer-events: none;
}

/* Category Title */
.menu-v4-title {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #dfbf8d;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 45px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* List Style */
.menu-v4-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-v4-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.02em;
  word-wrap: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.menu-v4-list li:last-child {
  border-bottom: none;
}

.menu-v4-list .name-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-v4-list .item-meta {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

.menu-v4-list .price {
  font-weight: 500;
  color: #dfbf8d;
  margin-left: 15px;
  font-size: 1.15rem;
  white-space: nowrap;
}

/* Beer rows: strict 3-column alignment (Name | % | Price) */
.menu-v4-list--abv li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px max-content;
  align-items: center;
  column-gap: 12px;
}

.menu-v4-list--abv .item-meta {
  margin-top: 0;
  text-align: center;
  justify-self: center;
  width: 100%;
  line-height: 1;
}

.menu-v4-list--abv .price {
  margin-left: 0;
  justify-self: end;
}

/* Alcohol rows: aligned 3-column layout (Name | Bottle | 5cl Price) */
.menu-v4-list--alcohols li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px 112px;
  align-items: center;
  column-gap: 16px;
}

.menu-v4-list--alcohols .item-meta {
  margin-top: 0;
  text-align: center;
  justify-self: center;
  width: 100%;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.menu-v4-list--alcohols .price {
  margin-left: 0;
  justify-self: start;
  width: 112px;
  text-align: left;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Cocktails Specialized */
.cocktail-sub-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #7a7a7a;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 6px;
  margin: 25px 0 20px;
}

.cocktail-sub-title:first-child {
  margin-top: 0;
}

.featured-drink {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.fd-content {
  flex: 1;
}

.fd-img {
  width: 130px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.fd-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.fd-desc {
  display: block;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 12px;
}

.fd-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #dfbf8d;
}

.offer-tag-gold {
  display: inline-block;
  background: #d4af37;
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-top: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.offer-badge-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #dfbf8d);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  padding: 5px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.1);
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  }
}

.menu-label-small {
  display: inline-block;
  font-size: 0.75rem;
  color: #7a7a7a;
  font-style: italic;
  margin-top: 5px;
  letter-spacing: 0.05em;
}

.menu-v4-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 20px 0;
}

.alcohol-items {
  flex: 1;
}

.alcohol-lineup {
  width: 150px;
  /* Slightly wider */
  display: flex;
  align-items: flex-end;
  /* Align bottles to bottom */
  justify-content: center;
  opacity: 0.9;
}

.alcohol-lineup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

/* Card Bottom Images */
.card-bottom-image {
  margin-top: auto;
  width: calc(100% + 64px);
  margin-left: -32px;
  margin-bottom: -45px;
  height: 160px;
  object-fit: contain;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Wine Banner */
.wine-banner {
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.wine-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1300px) {

  .menu-row-top,
  .wine-row-v4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .happy-hours-grid {
    grid-template-columns: 1fr;
  }

  .happy-hours-list--split {
    columns: 1;
  }
}

@media (max-width: 900px) {
  .wine-row-v4 {
    grid-template-columns: 1fr;
  }

  .wine-banner {
    height: 300px;
  }

  .events-atmo-right,
  .faq-lifestyle {
    display: none;
  }

  .faq-container {
    padding-right: 0;
  }
}

@media (max-width: 768px) {

  .hero-scroll {
    display: none;
  }

  .menu-row-top,
  .wine-row-v4 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wine-row-v4 {
    margin-top: 16px;
  }

  .wine-row-v4 .menu-outer-title {
    min-height: 0;
    margin-bottom: 15px;
  }

  .menu-container {
    padding: 0 16px;
  }

  .menu-v4-card {
    padding: 25px 18px;
  }

  .menu-outer-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .menu-row-top--accordion {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .menu-row-secondary--accordion {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .menu-row-secondary__softs {
    order: 1;
  }

  .menu-row-secondary__happy {
    order: 2;
  }

  .menu-row-secondary--accordion .happy-hours-v4--panel {
    order: 3;
  }

  .menu-row-secondary__cider {
    order: 4;
  }

  .wine-row-v4 {
    gap: 22px;
  }

  .menu-row-top--accordion .menu-accordion-trigger,
  .menu-accordion-trigger--inline {
    position: relative;
    width: 100%;
    margin: 0;
    justify-content: center;
    padding: 16px 56px 16px 20px;
    background: rgba(6, 10, 18, 0.32);
    border-color: rgba(212, 175, 55, 0.12);
    border-radius: 10px;
  }

  .menu-row-top--accordion .menu-accordion-trigger:hover,
  .menu-accordion-trigger--inline:hover {
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(8, 14, 25, 0.35);
  }

  .menu-row-top--accordion .menu-accordion-trigger:focus-visible,
  .menu-accordion-trigger--inline:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.55);
    outline-offset: 3px;
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(8, 14, 25, 0.35);
    box-shadow: none;
  }

  .menu-row-top--accordion .menu-accordion-trigger[aria-expanded="true"],
  .menu-accordion-trigger--inline[aria-expanded="true"] {
    background: rgba(8, 14, 25, 0.78);
    border-color: rgba(212, 175, 55, 0.68);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  }

  .menu-row-top--accordion .menu-accordion-trigger .menu-accordion-icon,
  .menu-accordion-trigger--inline .menu-accordion-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    transform: translateY(-50%);
    opacity: 0.8;
  }

  .menu-row-top--accordion .menu-accordion-trigger .menu-accordion-icon::before,
  .menu-row-top--accordion .menu-accordion-trigger .menu-accordion-icon::after,
  .menu-accordion-trigger--inline .menu-accordion-icon::before,
  .menu-accordion-trigger--inline .menu-accordion-icon::after {
    width: 12px;
    background: #c6a46a;
  }

  /* Mobile: make Sparkling/Wines/Champagnes/Hot Drinks identical to other accordion buttons */
  .wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline {
    justify-content: center;
    gap: 12px;
    padding: 16px 56px 16px 20px;
    margin-bottom: 0;
    overflow: visible;
    isolation: auto;
  }

  .wine-row-v4 .menu-inline-accordion--wine .menu-outer-title--accordion {
    width: auto;
    padding: 0;
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    line-height: 1;
  }

  .wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--inline .menu-accordion-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    transform: translateY(-50%);
    opacity: 0.8;
  }

  .wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight {
    gap: 12px;
    padding: 16px 56px 16px 20px;
  }

  .wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight .menu-outer-title--accordion {
    width: auto;
    padding: 0;
  }

  .wine-row-v4 .menu-inline-accordion--wine .menu-accordion-trigger--wine-tight .menu-accordion-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    opacity: 0.8;
  }

  .menu-accordion-display {
    display: none !important;
  }

  .menu-row-top--accordion .menu-accordion-item.is-inline-open .menu-accordion-panel {
    margin-top: 16px;
  }

  .menu-outer-title--accordion {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  .happy-hours-v4--panel {
    margin-top: 0;
  }

  .happy-hours-v4--panel .happy-hours-grid:not([hidden]) {
    margin-top: 18px;
  }

  .menu-accordion-trigger--inline {
    margin-bottom: 0;
  }

  .happy-hours-subtitle {
    margin: 0 0 16px;
  }

  .menu-atmo,
  .menu-atmo-blur {
    display: none;
  }
}


/* =============================================
   ATMOSPHERE STRIP
   ============================================= */
.section-atmo-strip {
  position: relative;
  height: 92px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.25) 0%, rgba(4, 6, 12, 0.72) 100%);
}

.section-atmo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 16, 0.88) 0%, rgba(5, 8, 16, 0.22) 50%, rgba(5, 8, 16, 0.88) 100%);
  z-index: 1;
}

.section-atmo-strip__img {
  position: absolute;
  inset: -18px 0;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  filter: blur(8px) saturate(0.85) brightness(0.62);
  opacity: 0.5;
  transform: scale(1.06);
}

/* =============================================
   DUAL CARDS
   ============================================= */
.dual-section {
  background: rgba(8, 13, 26, 0.91);
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dual-card {
  padding: 40px 36px;
}

.dual-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 12px;
}

.dual-card-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.dual-card-desc {
  color: var(--white-70);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.dual-list {
  margin-bottom: 28px;
}

.dual-list li {
  padding: 8px 0;
  color: var(--white-70);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.dual-list li:last-child {
  border-bottom: none;
}

.tasting-dual {
  border-color: var(--border-gold);
}

.tasting-dual:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.tasting-list {
  margin-bottom: 28px;
}

.tasting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tasting-item:last-child {
  border-bottom: none;
}

.tasting-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.tasting-abv {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--border-gold);
}

/* =============================================
   EVENTS SECTION
   ============================================= */
.events-section {
  background: linear-gradient(135deg, rgba(5, 8, 16, 0.88) 0%, rgba(6, 12, 31, 0.92) 60%, rgba(5, 8, 16, 0.88) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.events-atmo {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(0, 180, 255, 0.08) inset;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.events-atmo-left {
  width: 190px;
  aspect-ratio: 4 / 5;
  left: -18px;
  bottom: 64px;
  transform: rotate(-9deg);
}

.events-atmo-right {
  width: 260px;
  aspect-ratio: 4 / 5;
  right: -48px;
  top: 84px;
  filter: blur(1px) saturate(0.88) brightness(0.82);
  transform: rotate(7deg);
}

.events-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 100, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.events-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.32) 0%, rgba(7, 10, 16, 0.76) 100%),
    linear-gradient(90deg, rgba(34, 16, 5, 0.3) 0%, rgba(7, 10, 16, 0.14) 42%, rgba(7, 10, 16, 0.52) 100%);
  z-index: 0;
}

.events-section .container {
  position: relative;
  z-index: 1;
}

.events-subtitle {
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 8px;
}

.events-date-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px 24px;
  background: rgba(0, 180, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.ev-date-icon {
  font-size: 1.4rem;
}

.ev-date-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.04em;
}

.matches-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  gap: 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.match-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--neon-blue2), var(--neon-blue));
}

.match-card:hover {
  border-color: rgba(0, 180, 255, 0.4);
  transform: translateX(4px);
  box-shadow: 0 6px 30px var(--neon-glow);
}

.match-card.live-match {
  border-color: rgba(255, 60, 60, 0.4);
  background: rgba(255, 30, 30, 0.05);
}

.match-card.live-match::before {
  background: linear-gradient(180deg, #ff4444, #ff8888);
}

.match-teams {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.team-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  vertical-align: middle;
}

.match-vs {
  color: var(--white-40);
  margin: 0 8px;
  font-size: 0.9rem;
  font-weight: 400;
}

.match-time {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-blue);
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 8px;
  white-space: nowrap;
}

.match-status {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.status-live {
  background: rgba(255, 50, 50, 0.2);
  color: #ff6666;
  border: 1px solid rgba(255, 50, 50, 0.3);
}

.status-upcoming {
  background: rgba(0, 180, 255, 0.1);
  color: var(--neon-blue);
  border: 1px solid var(--border);
}

.status-today {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.live-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(255, 30, 30, 0.08);
  border: 1px solid rgba(255, 50, 50, 0.3);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: #ff8888;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 10px #ff4444;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: rgba(8, 13, 26, 0.90);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-title {
  text-align: left;
}

.about-desc {
  color: var(--white-70);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.97rem;
}

.about-text .title-line {
  margin: 14px 0 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 60px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.af-icon {
  font-size: 2rem;
}

.about-feat h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-feat p {
  font-size: 0.85rem;
  color: var(--white-70);
}

.about-photo-col {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-photo {
  width: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92) contrast(1.05) brightness(0.96) sepia(0.08);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
  background:
    radial-gradient(circle at top left, rgba(18, 88, 180, 0.2), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(201, 168, 76, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(5, 9, 22, 0.96) 0%, rgba(8, 11, 24, 0.98) 56%, rgba(4, 7, 18, 1) 100%);
  overflow: clip;
}

.gallery-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-subtitle {
  max-width: 700px;
}

.gallery-section__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.gallery-section__glow--blue {
  width: 320px;
  height: 320px;
  top: 110px;
  left: -80px;
  background: rgba(0, 132, 255, 0.22);
}

.gallery-section__glow--gold {
  width: 260px;
  height: 260px;
  right: -40px;
  bottom: 110px;
  background: rgba(201, 168, 76, 0.18);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0;
  background: var(--bg-card);
  cursor: pointer;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.2, 0, 0.2, 1),
    border-color 0.4s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 18, 0.6) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-item__overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(6, 9, 18, 0) 0%, rgba(6, 9, 18, 0.36) 48%, rgba(6, 9, 18, 0.72) 100%);
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 20px var(--neon-glow);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover::before {
  opacity: 0.4;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 4px;
}

/* Clean up legacy gallery item size classes */
.gallery-item--feature,
.gallery-item--tall,
.gallery-item--portrait,
.gallery-item--wide,
.gallery-item--square {
  grid-column: span 1;
  min-height: auto;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 2100;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gallery-lightbox__dialog {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.gallery-lightbox__content {
  position: relative;
  width: min(1200px, 92vw);
  height: min(800px, 80vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gallery-lightbox__content img {
  max-width: 100%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease-out;
}

.gallery-lightbox__meta {
  text-align: center;
  color: var(--white);
  width: 100%;
}

.gallery-lightbox__title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: block;
}

.gallery-lightbox__counter {
  font-size: 0.9rem;
  color: var(--white-40);
  letter-spacing: 0.1em;
  display: block;
}

.gallery-lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-lightbox__close:hover {
  background: var(--neon-blue);
  transform: rotate(90deg);
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.gallery-lightbox__nav:hover {
  background: var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-glow);
}

.gallery-lightbox__nav--prev {
  left: 30px;
}

.gallery-lightbox__nav--next {
  right: 30px;
}

@media (max-width: 768px) {
  .gallery-lightbox__nav {
    display: none;
  }

  .gallery-lightbox__close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox__content {
    width: 95vw;
    height: auto;
  }

  .gallery-lightbox__title {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =============================================
   WHY VISIT
   ============================================= */
.why-section {
  background: rgba(5, 8, 16, 0.88);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
}

.why-check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--neon-blue2), var(--neon-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.3);
}

.why-content h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.65;
}

/* =============================================
   RESERVATIONS & LIVE GAMES
   ============================================= */
.reservations-section {
  background: linear-gradient(135deg, rgba(8, 13, 26, 0.91) 0%, rgba(6, 12, 31, 0.94) 100%);
}

.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.res-card,
.live-games-card {
  padding: 40px;
}

.res-card .section-title,
.live-games-card .section-title {
  text-align: left;
  font-size: 1.8rem;
}

.res-card .title-line,
.live-games-card .title-line {
  margin: 14px 0 28px;
}

/* Form */
.res-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.12);
  background: rgba(0, 180, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-40);
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-success {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #44ee88;
  font-weight: 600;
  margin-top: 8px;
}

.form-success.is-error {
  background: rgba(255, 92, 120, 0.1);
  border-color: rgba(255, 92, 120, 0.3);
  color: #ff8ea2;
}

/* Live Match Display */
.live-match-display {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(0, 180, 255, 0.05);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  text-align: center;
}

.lmd-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-70);
  font-weight: 600;
  margin-bottom: 12px;
}

.lmd-teams {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lmd-time {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-blue);
}

.all-matches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.mini-match:hover {
  border-color: var(--border);
  background: rgba(0, 180, 255, 0.04);
}

.mini-teams {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-time {
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 0.85rem;
}

/* =============================================
   MENU DESCRIPTION
   ============================================= */
.menu-desc-section {
  background: rgba(8, 13, 26, 0.90);
}

.menu-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.menu-desc-text .section-title {
  text-align: left;
}

.menu-desc-text .title-line {
  margin: 14px 0 24px;
}

.menu-desc-text .btn {
  margin-top: 8px;
}

.menu-desc-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.drink-icon-card {
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.di-icon {
  font-size: 2.4rem;
}

.di-label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* =============================================
   SELECTIONS SECTION
   ============================================= */

/* ---- Section shell ---- */
.selections-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: transparent;
}

/* ---- Ambient floating orbs ---- */
.sel-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sel-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: sel-orb-pulse 8s ease-in-out infinite;
}

.sel-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 120, 255, 0.18) 0%, transparent 70%);
  top: -80px;
  left: -60px;
  animation-delay: 0s;
  opacity: 0.9;
}

.sel-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  bottom: -60px;
  right: 5%;
  animation-delay: 3s;
  opacity: 0.8;
}

.sel-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.10) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: 5s;
  opacity: 0.6;
}

@keyframes sel-orb-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1.0;
  }
}

/* ---- 3-column grid ---- */
.sel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* =============================================
   SEL CARD
   ============================================= */
.sel-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(6, 11, 28, 0.72);
  border: 1px solid rgba(0, 180, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 180, 255, 0.06) inset;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  cursor: default;
}

/* Hover: slight lift + glow intensify */
.sel-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 180, 255, 0.42);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(0, 180, 255, 0.18),
    0 0 0 1px rgba(0, 180, 255, 0.20) inset;
}

/* Featured (center) card — slightly taller image, blue border default */
.sel-card-featured {
  border-color: rgba(0, 180, 255, 0.28);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.50),
    0 0 24px rgba(0, 180, 255, 0.12),
    0 0 0 1px rgba(0, 180, 255, 0.12) inset;
}

.sel-card-featured:hover {
  border-color: rgba(0, 180, 255, 0.60);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.60),
    0 0 48px rgba(0, 180, 255, 0.28),
    0 0 0 1px rgba(0, 180, 255, 0.30) inset;
}

/* ---- Image area ---- */
.sel-card-img-wrap {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  flex-shrink: 0;
}

.sel-card-featured .sel-card-img-wrap {
  height: 270px;
}

.sel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.93) contrast(1.05) brightness(0.95) sepia(0.05);
  transition: transform 0.55s ease;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sel-card:hover .sel-card-img {
  transform: scale(1.07);
}

/* Gradient overlay on the image (dark bottom fade into card body) */
.sel-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(18, 10, 5, 0.08) 0%,
      rgba(10, 11, 18, 0.48) 58%,
      rgba(5, 9, 22, 0.90) 100%);
  transition: opacity 0.35s ease;
}

/* Blue-tinted overlay for featured card */
.sel-card-img-overlay-blue {
  background: linear-gradient(to bottom,
      rgba(0, 30, 80, 0.12) 0%,
      rgba(0, 42, 102, 0.42) 55%,
      rgba(4, 8, 24, 0.90) 100%);
}

#sel-card-1 .sel-card-img {
  object-position: center 24%;
}

#sel-card-2 .sel-card-img {
  object-position: center 38%;
}

#sel-card-3 .sel-card-img {
  object-position: center 45%;
}

/* ---- Card body text area ---- */
.sel-card-body {
  padding: 24px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Floating emoji icon */
.sel-card-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 2px;
}

/* Card title — bold Rajdhani */
.sel-card-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

/* Gold rule — default */
.sel-card-rule {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 1px;
  transition: width 0.35s ease;
}

.sel-card:hover .sel-card-rule {
  width: 56px;
}

/* Blue rule — featured */
.sel-card-rule-blue {
  background: linear-gradient(90deg, var(--neon-blue), transparent);
}

/* Card description text */
.sel-card-text {
  font-size: 0.90rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.60);
  margin: 0;
  flex: 1;
}

/* ---- CTA arrow link ---- */
.sel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-light);
  transition: gap 0.28s ease, color 0.28s ease;
}

.sel-card-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.sel-card-link:hover {
  gap: 12px;
  color: #fff;
}

.sel-card-link:hover svg {
  transform: translateX(4px);
}

/* Blue variant for featured card */
.sel-card-link-blue {
  color: var(--neon-blue);
}

.sel-card-link-blue:hover {
  color: #fff;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .sel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .sel-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 580px) {
  .sel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sel-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .sel-card-img-wrap,
  .sel-card-featured .sel-card-img-wrap {
    height: 320px;
  }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 180, 255, 0.09) 0%, transparent 34%),
    radial-gradient(circle at bottom right, rgba(201, 168, 76, 0.08) 0%, transparent 30%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.98) 0%, rgba(7, 11, 22, 0.96) 100%);
  isolation: isolate;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 26%;
  background-repeat: no-repeat;
  opacity: 0.12;
  filter: blur(2px) saturate(0.9) contrast(1.08);
  transform: scale(1.08);
  z-index: 0;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 16, 0.64) 0%, rgba(5, 8, 16, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 8, 16, 0.2) 0%, rgba(5, 8, 16, 0.74) 48%, rgba(5, 8, 16, 0.2) 100%);
  z-index: 0;
}

.faq-container {
  position: relative;
  z-index: 1;
  padding-right: min(10vw, 120px);
}

.faq-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-subtitle {
  color: rgba(255, 255, 255, 0.62);
}

.faq-list {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.faq-lifestyle {
  position: absolute;
  top: 178px;
  right: -10px;
  width: 220px;
  pointer-events: none;
  z-index: 1;
}

.faq-lifestyle-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(6, 10, 20, 0.4);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(0, 180, 255, 0.08);
  transform: rotate(8deg);
}

.faq-lifestyle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.06) 0%, rgba(5, 8, 16, 0.38) 100%);
  z-index: 1;
}

.faq-lifestyle-card::after {
  content: '';
  position: absolute;
  inset: auto 18px -22px;
  height: 42px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.28) 0%, transparent 72%);
  filter: blur(14px);
}

.faq-lifestyle-img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.92) contrast(1.03) brightness(0.92) sepia(0.04);
}

.faq-item {
  position: relative;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(10, 16, 34, 0.84) 0%, rgba(7, 12, 24, 0.96) 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(0, 180, 255, 0.08) inset;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 180, 255, 0.08), rgba(201, 168, 76, 0.03) 45%, transparent 75%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 180, 255, 0.28);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(0, 180, 255, 0.08),
    0 0 0 1px rgba(0, 180, 255, 0.12) inset;
}

.faq-item:hover::before,
.faq-item.is-open::before {
  opacity: 1;
}

.faq-item.is-open {
  border-color: rgba(201, 168, 76, 0.34);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(0, 180, 255, 0.12),
    0 0 0 1px rgba(201, 168, 76, 0.14) inset;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.faq-question:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 180, 255, 0.28);
}

.faq-question-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.faq-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(0, 180, 255, 0.08) inset;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), #fff6cc);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.24);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  border-color: rgba(0, 180, 255, 0.34);
  background: rgba(0, 180, 255, 0.08);
  box-shadow:
    0 0 18px rgba(0, 180, 255, 0.18),
    0 0 0 1px rgba(0, 180, 255, 0.12) inset;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  position: relative;
  z-index: 1;
}

.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 0.96rem;
  max-width: 92%;
}

/* =============================================
   LOCATION / FIND US SECTION
   ============================================= */
.location-section {
  background: var(--bg-black);
  position: relative;
  overflow: hidden;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.location-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-title-line {
  margin: 14px 0 24px;
}

.location-subtitle {
  margin: 0 0 20px;
  text-align: left;
}

.location-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white-70);
  margin-bottom: 24px;
}

.location-address {
  /* display: flex; */
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.loc-addr-icon {
  font-size: 1.4rem;
}

.location-map-wrap {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s ease 0.2s;
}

.location-map-wrap.visible {
  opacity: 1;
  transform: scale(1);
}

.map-container {
  position: relative;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px var(--neon-glow);
  border-color: rgba(0, 180, 255, 0.5);
}

.map-container iframe {
  filter: grayscale(0.2) contrast(1.1) brightness(0.9);
  transition: filter 0.5s ease;
}

.map-container:hover iframe {
  filter: grayscale(0) contrast(1) brightness(1);
}

.map-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 70%, rgba(0, 180, 255, 0.05));
  border-radius: var(--radius);
}

@media (max-width: 991px) {
  .location-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .faq-list {
    width: 100%;
    gap: 14px;
  }

  .faq-question {
    padding: 20px 20px;
    gap: 14px;
  }

  .faq-question-text {
    font-size: 1.02rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
    max-width: 100%;
    font-size: 0.92rem;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .section-atmo-strip {
    height: 62px;
  }

  .events-atmo {
    display: none;
  }

  .location-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-subtitle,
  .location-title-line {
    margin-right: auto;
    margin-left: auto;
  }

  .location-address {
    justify-content: center;
  }
}

/* =============================================
   FOOTER — Premium Luxury v2
   ============================================= */

/* ---- Shell ---- */
.footer {
  position: relative;
  /* Deep navy with a subtle diagonal metallic gold sheen */
  background:
    linear-gradient(112deg,
      rgba(255, 215, 90, 0.04) 0%,
      transparent 40%,
      rgba(255, 215, 90, 0.025) 100%),
    linear-gradient(180deg,
      rgba(4, 6, 16, 0.98) 0%,
      rgba(2, 3, 10, 1.00) 100%);
  overflow: hidden;
}

/* ---- Top glow bar (mirrors header bottom) ---- */
.footer-glow-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 168, 76, 0.0) 4%,
      rgba(240, 210, 120, 0.8) 30%,
      rgba(255, 228, 150, 1.0) 50%,
      rgba(240, 210, 120, 0.8) 70%,
      rgba(201, 168, 76, 0.0) 96%,
      transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-glow-top::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 10%;
  right: 10%;
  height: 14px;
  background: radial-gradient(ellipse at center,
      rgba(201, 168, 76, 0.16) 0%,
      transparent 80%);
  pointer-events: none;
  filter: blur(3px);
}

/* ---- Main content area ---- */
.footer-main {
  padding: 72px 0 56px;
  position: relative;
  z-index: 1;
}

/* ---- 4-column grid ---- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* =============================================
   COLUMN 1: Brand
   ============================================= */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(201, 168, 76, 0.55)) drop-shadow(0 3px 7px rgba(0, 0, 0, 0.65));
  transition: filter 0.35s ease;
}

.footer-logo-link:hover .footer-logo-img {
  filter:
    drop-shadow(0 0 22px rgba(240, 210, 100, 0.85)) drop-shadow(0 4px 9px rgba(0, 0, 0, 0.55));
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.52);
  max-width: 280px;
  margin: 0;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(0, 180, 255, 0.18);
  background: rgba(0, 180, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: all 0.30s ease;
  position: relative;
  overflow: hidden;
}

.social-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0, 180, 255, 0.10);
  box-shadow:
    0 0 16px rgba(0, 180, 255, 0.28),
    0 0 32px rgba(0, 180, 255, 0.10);
  transform: translateY(-3px);
}

/* =============================================
   COLUMN SHARED — Title Rule
   ============================================= */
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

/* Gold underline rule below each title */
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 1px;
}

/* =============================================
   COLUMN 2: Navigation links
   ============================================= */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.90rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.28s ease, gap 0.28s ease;
  position: relative;
}

/* Animated arrow + gold color on hover */
.footer-nav-link::before {
  content: '›';
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.footer-nav-link:hover {
  color: var(--gold-light);
}

.footer-nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom gold underline slide */
.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
  opacity: 0.5;
}

.footer-nav-link:hover::after {
  transform: scaleX(1);
}

/* =============================================
   COLUMNS 3 + 4: Info list (Contact / Hours)
   ============================================= */
.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.footer-info-list a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 0.28s ease;
}

.footer-info-list a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 14px rgba(0, 180, 255, 0.4);
}

/* SVG icon container */
.fi-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(0, 180, 255, 0.08);
  border: 1px solid rgba(0, 180, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.28s ease;
}

.fi-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--neon-blue);
  opacity: 0.75;
  flex-shrink: 0;
}

.footer-info-list li:hover .fi-icon {
  background: rgba(0, 180, 255, 0.14);
  border-color: rgba(0, 180, 255, 0.30);
  box-shadow: 0 0 10px rgba(0, 180, 255, 0.18);
}

.footer-hours-days {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-hours-days-main {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-hours-days-extra {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.28);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.12);
}

/* в”Ђв”Ђв”Ђ Opening hours time display в”Ђв”Ђв”Ђ */
.hours-time-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.hours-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.28);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.12);
}

.hours-dash {
  color: rgba(201, 168, 76, 0.45);
  font-size: 1.1rem;
}

/* в”Ђв”Ђв”Ђ Footer CTA button (Book a Table) в”Ђв”Ђв”Ђ */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1100;
  background: linear-gradient(135deg,
      #f0d060 0%,
      #c9a84c 40%,
      #e8c055 70%,
      #b8943c 100%);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.45),
    0 4px 18px rgba(201, 168, 76, 0.28);
  transition: all 0.30s ease;
  position: relative;
  overflow: hidden;
}

.footer-cta-btn::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 45%;
  height: 160%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 220, 0.28) 50%, transparent 70%);
  transform: skewX(-12deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.footer-cta-btn:hover::before {
  left: 110%;
}

.footer-cta-btn:hover {
  box-shadow:
    0 0 0 1px rgba(240, 200, 80, 0.65),
    0 6px 26px rgba(201, 168, 76, 0.55),
    0 12px 36px rgba(201, 168, 76, 0.22);
  transform: translateY(-2px) scale(1.03);
}

/* =============================================
   BOTTOM BAR
   ============================================= */
.footer-bottom {
  position: relative;
  padding: 0;
  z-index: 1;
}

/* Hairline glow divider at the top of the bottom bar */
.footer-bottom-glow {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 168, 76, 0.0) 6%,
      rgba(201, 168, 76, 0.35) 30%,
      rgba(240, 210, 90, 0.50) 50%,
      rgba(201, 168, 76, 0.35) 70%,
      rgba(201, 168, 76, 0.0) 94%,
      transparent 100%);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.02em;
}

.footer-copy span {
  color: rgba(255, 255, 255, 0.22);
}

/* Small vertical separator between copyright and "Crafted" */
.footer-bottom-divider {
  width: 1px;
  height: 16px;
  background: rgba(201, 168, 76, 0.22);
  border-radius: 1px;
  flex-shrink: 0;
}

.footer-made {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
}

/* =============================================
   LEGACY — keep old `.footer-list` / `.ft-icon`
   rules so other parts of the page aren't broken
   ============================================= */
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white-70);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ft-icon {
  font-size: 1rem;
  min-width: 20px;
}

.footer-list a {
  color: var(--white-70);
  transition: color var(--transition);
}

.footer-list a:hover {
  color: var(--neon-blue);
}

.footer-nav {
  gap: 10px;
}

.footer-nav li {
  display: block;
}

.footer-nav a {
  font-size: 0.9rem;
}

/* =============================================
   DUAL PROMO + TASTING CARDS
   ============================================= */
.dual-section {
  padding: 80px 0;
  background: transparent;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Card wrapper — clips the bg image */
.dual-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 168, 76, 0.35);
}

/* Full-bleed background photo */
.dual-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

@media (min-width: 1025px) {
  .dual-card-bg {
    background-attachment: fixed;
  }
}

.dual-card:hover .dual-card-bg {
  transform: scale(1.04);
}

/* Gradient overlay — left card: bottom-heavy dark scrim */
.dual-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(22, 12, 6, 0.18) 0%,
      rgba(10, 10, 16, 0.5) 42%,
      rgba(5, 8, 20, 0.92) 100%);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  z-index: 1;
}

/* Right card overlay: top-heavy dark panel to contrast text area */
.dual-card-overlay-right {
  background: linear-gradient(to bottom,
      rgba(11, 10, 14, 0.8) 0%,
      rgba(8, 10, 18, 0.6) 45%,
      rgba(5, 8, 20, 0.88) 100%);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

/* Positioned content above overlay */
.dual-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.dual-card-content-right {
  align-items: flex-start;
}

/* Gold italic serif title — matching reference */
.dual-card-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: #e8c96e;
  text-shadow:
    0 0 30px rgba(201, 168, 76, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.01em;
  margin: 0;
}

/* Thin gold horizontal divider */
.dual-card-divider {
  width: 52px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 1px;
  margin: 2px 0;
}

/* Subtitle / description text */
.dual-card-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.dual-card-sub strong {
  color: #fff;
  font-weight: 700;
}

/* Circular 2x badge — left card only */
.dual-badge-wrap {
  position: absolute;
  bottom: 48px;
  right: 36px;
  z-index: 3;
}

.dual-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(10, 15, 35, 0.65);
  backdrop-filter: blur(6px);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

/* Beer bullet list — right card */
.dual-beer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dual-beer-list li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.dual-beer-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.6);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue2), var(--neon-blue));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 119, 255, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  transform: translateY(10px);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 180, 255, 0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 100%;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item--feature,
  .gallery-item--tall,
  .gallery-item--portrait,
  .gallery-item--wide,
  .gallery-item--square {
    grid-column: span 1;
    min-height: 320px;
  }

  .gallery-lightbox__dialog {
    width: min(880px, 100%);
    min-height: auto;
  }

  .about-features {
    padding-top: 0;
  }

  .res-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* =============================================
   RESPONSIVE — NAV COLLAPSE (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-reserve-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-selector {
    gap: 2px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .features-section-v2 {
    padding-bottom: 44px;
  }

  .menu-section,
  .faq-section,
  .location-section {
    padding-top: 44px;
  }

  .menu-section {
    padding-bottom: 28px;
  }

  .events-section {
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .about-section {
    padding-top: 44px;
  }

  .section-atmo-strip {
    height: 30px;
  }

  .gallery-section,
  .faq-section {
    padding-bottom: 44px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .offer-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .offer-right {
    width: 100%;
  }

  .offer-img-wrap {
    max-width: 100%;
  }

  .beer-img {
    width: 50%;
  }

  .snack-img {
    width: 46%;
  }

  .dual-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tasting-grid {
    grid-template-columns: 1fr;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .match-card {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px;
  }

  .gallery-shell {
    width: min(100%, calc(100% - 40px));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item--feature,
  .gallery-item--tall,
  .gallery-item--portrait,
  .gallery-item--wide,
  .gallery-item--square {
    min-height: 280px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .gallery-lightbox__content img {
    max-height: 62vh;
  }

  .gallery-lightbox__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-lightbox__nav {
    width: 100%;
    height: 48px;
    border-radius: 16px;
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .match-teams {
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 34px 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-col:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-col:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-nav-list {
    align-items: center;
  }

  .footer-col:nth-child(3) .footer-info-list {
    align-items: flex-start;
  }

  .footer-col:nth-child(3) .footer-info-list li {
    gap: 8px;
    font-size: 0.71rem;
  }

  .footer-col:nth-child(3) .footer-info-list a {
    overflow-wrap: anywhere;
  }

  .footer-info-list li {
    /* justify-content: center; */
    text-align: left;
  }

  .footer-hours-days-row {
    justify-content: center;
  }

  .footer-hours-days {
    justify-content: center;
  }

  .hours-time-row {
    justify-content: center;
  }

  .footer-cta-btn {
    align-self: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-divider {
    width: 40px;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .menu-desc-icons {
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .dual-card {
    min-height: 420px;
  }

  .dual-card-content {
    padding: 28px 28px 36px;
  }

  .res-card,
  .live-games-card {
    padding: 28px 20px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .faq-bg {
    background-position: center 18%;
    opacity: 0.1;
  }

  .section-atmo-strip {
    height: 30px;
  }

  .gallery-shell {
    width: min(100%, calc(100% - 28px));
  }

  .gallery-item,
  .gallery-item--feature,
  .gallery-item--tall,
  .gallery-item--portrait,
  .gallery-item--wide,
  .gallery-item--square {
    min-height: 240px;
    border-radius: 22px;
  }

  .gallery-lightbox__dialog {
    padding: 18px;
    border-radius: 24px;
  }

  .gallery-lightbox__content img {
    border-radius: 18px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .menu-tabs {
    gap: 6px;
  }

  .tab-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  .menu-desc-icons {
    grid-template-columns: 1fr 1fr;
  }

  .lang-selector {
    display: none;
  }
}

/* =============================================
   MOBILE BACKGROUND IMAGE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {

  /* Optimize body background for sharp display on mobile */
  body {
    background-size: cover;
    background-position: center 22%;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -webkit-background-position: center 22%;
  }

  /* Hero section mobile optimization */
  .hero {
    background-size: cover;
    background-position: center 42%;
    background-attachment: scroll;
    min-height: 100vh;
    -webkit-background-size: cover;
    -webkit-background-position: center 42%;
  }

  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(10, 8, 7, 0.34) 0%,
        rgba(10, 11, 18, 0.68) 48%,
        rgba(5, 8, 16, 0.93) 100%);
    filter: none;
    -webkit-filter: none;
    will-change: auto;
  }

  /* Features section background mobile optimization */
  .features-bg-overlay {
    background-size: cover;
    background-position: center 36%;
    background-attachment: scroll;
    filter: blur(4px) brightness(0.32) saturate(0.82) sepia(0.1);
    -webkit-filter: blur(4px) brightness(0.32) saturate(0.82) sepia(0.1);
    transform: scale(1.05);
    opacity: 0.8;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Dual card background mobile optimization */
  .dual-card-bg {
    background-size: cover;
    background-position: center 30%;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -webkit-background-position: center 30%;
  }

  /* Enhanced overlays for mobile readability */
  .dual-card-overlay {
    background: linear-gradient(to bottom,
        rgba(22, 12, 6, 0.22) 0%,
        rgba(8, 10, 18, 0.64) 42%,
        rgba(5, 8, 20, 0.95) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .dual-card-overlay-right {
    background: linear-gradient(to bottom,
        rgba(11, 10, 14, 0.82) 0%,
        rgba(8, 10, 18, 0.62) 45%,
        rgba(5, 8, 20, 0.9) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Selection cards image overlay enhancement */
  .sel-card-img-overlay {
    background: linear-gradient(to bottom,
        rgba(18, 10, 5, 0.12) 0%,
        rgba(5, 9, 22, 0.58) 62%,
        rgba(5, 9, 22, 0.92) 100%);
  }

  .sel-card-img-overlay-blue {
    background: linear-gradient(to bottom,
        rgba(0, 30, 80, 0.15) 0%,
        rgba(0, 50, 120, 0.55) 65%,
        rgba(4, 8, 24, 0.92) 100%);
  }

  /* Fixes for image rendering sharpness */
  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .stat-num {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Prevent image scaling artifacts */
  img {
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: crisp-edges;
  }
}

@media (max-width: 480px) {

  /* Extra small mobile optimization */
  body {
    background-size: 125%;
    background-position: center 20%;
  }

  .hero {
    background-size: 132%;
    background-position: center 40%;
  }

  .hero-overlay {
    opacity: 1;
    background: linear-gradient(to bottom,
        rgba(10, 8, 7, 0.4) 0%,
        rgba(10, 11, 18, 0.7) 50%,
        rgba(5, 8, 16, 0.54) 100%);
  }

  .features-bg-overlay {
    background-size: 130%;
    filter: blur(3px) brightness(0.32) saturate(0.84) sepia(0.1);
    -webkit-filter: blur(3px) brightness(0.32) saturate(0.84) sepia(0.1);
    transform: scale(1.1);
  }

  .dual-card-bg {
    background-size: 135%;
  }
}