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

:root {
  --blue-deep: #0a1628;
  --blue-dark: #0d1a2d;
  --dark: #0a1628;
  --blue-mid: #1a2d4a;
  --blue-accent: #4a7fb5;
  --blue-light: #7baad4;
  --blue-logo: #86c5e6;
  --blue-logo-light: #a0d4ed;
  --blue-logo-dim: rgba(134,197,230,0.15);
  --gold: #c9a84c;
  --gold-light: #e0c674;
  --gold-dim: rgba(134,197,230,0.15);
  --gold-foil: linear-gradient(135deg, #5ba3c9 0%, #a0d4ed 25%, #86c5e6 50%, #bde2f2 75%, #86c5e6 100%);
  --cream: #f5f0e8;
  --cream-dark: #e8ddd0;
  --warm-black: #0f0f0f;
  --warm-dark: #1a1714;
  --white: #fefefe;
  --text-dark: #1a1a1a;
  --text-muted: #3a3a3a;
  --text-light: rgba(255,255,255,0.85);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* ===== GOLD FOIL UTILITY ===== */
.gold-foil-text {
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
}

@keyframes foilShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gold-foil-line {
  height: 1px;
  border: none;
  background: var(--gold-foil);
  background-size: 200% 100%;
  animation: foilShimmer 8s ease-in-out infinite;
  opacity: 0.6;
}

.gold-foil-border {
  border-image: linear-gradient(135deg, #5ba3c9, #86c5e6, #6db5d9, #a0d4ed, #86c5e6) 1;
}

/* ===== SVG ICON DEFINITIONS (hidden) ===== */
.svg-icons { position: absolute; width: 0; height: 0; overflow: hidden; }



/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.75rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  font-weight: 700;
  font-style: italic;
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-logo);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { color: var(--blue-logo); }
.nav-links a:hover::after { width: 100%; }

.nav-short-label { display: none; }

.nav-reserve-btn {
  background: transparent;
  border: 1px solid var(--blue-logo);
  color: var(--blue-logo) !important;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s;
}

.nav-reserve-btn:hover {
  background: var(--blue-logo);
  color: var(--blue-deep) !important;
}

.nav-reserve-btn::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO VIDEO ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--warm-black);
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: url('images/general/IMG-20260226-WA0008.jpg') center/cover no-repeat;
  filter: brightness(0.75) saturate(0.9);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(10,22,40,0.2) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(10,22,40,0.5) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 80px rgba(0,0,0,0.25);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-logo);
  border: 1px solid rgba(134,197,230,0.4);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  animation: fadeUp 1.2s ease-out 0.2s both;
}

.hero h1 {
  margin-bottom: 0.5rem;
  animation: fadeUp 1.2s ease-out 0.4s both;
  line-height: 1;
}

.hero-logo {
  width: clamp(280px, 45vw, 520px);
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(90, 160, 232, 0.3));
}

.hero-sub {
  font-family: var(--font-elegant);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  animation: fadeUp 1.2s ease-out 0.6s both;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease-out 0.8s both;
}

.btn-primary {
  display: inline-block;
  background: var(--blue-logo);
  color: var(--blue-deep);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
  background: var(--blue-logo-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(134,197,230,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.4s;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1.2s ease-out 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue-logo), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  padding: 5rem 3rem;
  background: var(--blue-deep);
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  text-align: center;
}

.intro-item { max-width: 280px; }

.intro-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--blue-logo);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.intro-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ===== SECTION SHARED ===== */
.section { padding: 7rem 3rem; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-logo);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  font-weight: 700;
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
}

.section-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

/* Decorative drop cap */
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin-right: 0.15em;
  margin-top: 0.05em;
  color: var(--blue-mid);
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
}

/* Gold divider */
.gold-divider {
  width: 60px;
  margin: 2rem 0;
}

/* ===== OVER ONS ===== */
.about { background: var(--cream); }

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 550px;
}

.about-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-img:hover img { transform: scale(1.05); filter: saturate(1) contrast(1.1); }
.about-img-1 { top: 0; left: 0; width: 65%; height: 70%; }

.about-img-2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border: 6px solid var(--cream);
}

.about-quote {
  position: absolute;
  bottom: 60%;
  right: -10px;
  background: var(--blue-logo);
  color: var(--blue-deep);
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  max-width: 200px;
  line-height: 1.4;
  z-index: 3;
}

.about-details {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.about-detail {
  border-left: 2px solid;
  border-image: linear-gradient(to bottom, #5ba3c9, #86c5e6, #6db5d9) 1;
  padding-left: 1rem;
}

.about-detail strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--blue-mid);
  display: block;
}

.about-detail span {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--cream);
  overflow: hidden;
}

.reviews-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.reviews-stars span {
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
  font-size: 1.3rem;
}

.reviews-rating {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}

.reviews-track-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  animation: reviewScroll 70s linear infinite;
  width: max-content;
}

@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-track:hover { animation-play-state: paused; }

.review-card {
  background: var(--white);
  padding: 2rem 2rem 1.5rem;
  min-width: 340px;
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.4s;
  flex-shrink: 0;
  border-bottom: 3px solid transparent;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-bottom-color: var(--blue-logo);
}

.review-stars {
  color: var(--blue-logo);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.review-text {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.review-name { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }
.review-source { font-size: 0.7rem; font-weight: 300; color: var(--text-muted); }

/* ===== IMAGE BREAK ===== */
.image-break {
  height: 50vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.image-break-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(0.8);
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.35);
}

.image-break-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px 40px rgba(0,0,0,0.4);
}

.image-break-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.image-break-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.image-break-content cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
}

/* ===== MENU ===== */
.menu-section {
  background: var(--warm-black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,197,230,0.04) 0%, transparent 70%);
}

.menu-section .section-title { color: var(--white); }

.menu-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.menu-pricing {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.price-card {
  border: 1px solid rgba(134,197,230,0.2);
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 160px;
  transition: all 0.4s;
  position: relative;
  background: rgba(255,255,255,0.02);
}

.price-card.featured {
  border: 1px solid;
  border-image: linear-gradient(135deg, #5ba3c9, #86c5e6, #6db5d9) 1;
  background: rgba(134,197,230,0.05);
}

.price-card.featured::before {
  content: 'Populair';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-logo);
  color: var(--blue-deep);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
}

.price-card:hover {
  border-color: var(--blue-logo);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(134,197,230,0.15);
}

.price-count {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  display: block;
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
}

.price-label {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 3rem;
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.menu-category { position: relative; }

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu-cat-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(134,197,230,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-cat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-logo);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-cat-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--blue-logo);
}

/* Interactive menu items */
.menu-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.3s;
}

.menu-item:hover {
  padding-left: 0.5rem;
  border-bottom-color: rgba(134,197,230,0.15);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.menu-item-teaser {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.menu-more {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--blue-logo-light);
  opacity: 0.5;
}

.menu-surprise {
  max-width: 1200px;
  margin: 4rem auto 0;
  background: rgba(134,197,230,0.03);
  border: 1px solid rgba(134,197,230,0.12);
  padding: 2.5rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.menu-surprise h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
  margin-bottom: 0.5rem;
}

.menu-surprise p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.menu-cta { text-align: center; margin-top: 4rem; position: relative; z-index: 1; }

/* ===== DRINKS ===== */
.drinks-section {
  background: var(--warm-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.drinks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(134,197,230,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(74,127,181,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.drinks-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.drinks-header .section-title { color: var(--white); }

.drinks-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.drink-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.drink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-foil);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.drink-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(134,197,230,0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.drink-card:hover::before { transform: scaleX(1); }

.drink-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--blue-logo);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drink-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue-logo);
  margin-bottom: 0.8rem;
}

.drink-card-divider {
  width: 30px;
  height: 1px;
  margin: 0 auto 1rem;
  background: var(--gold-foil);
  background-size: 200% 100%;
  animation: foilShimmer 8s ease-in-out infinite;
  opacity: 0.5;
}

.drink-list { list-style: none; }

.drink-list li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color 0.3s;
}

.drink-list li:last-child { border-bottom: none; }
.drink-list li:hover { color: var(--white); }
.drink-highlight { color: var(--blue-logo-light) !important; font-weight: 400 !important; }

/* ===== COCKTAILS & MOCKTAILS ===== */
.cocktails-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
}

.cocktails-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cocktails-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.cocktails-category {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.cocktails-category:last-child { margin-bottom: 0; }

.cocktails-category-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--blue-logo);
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.mocktail-badge {
  display: inline-block;
  background: var(--blue-logo);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.cocktails-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.cocktails-track-wrapper {
  overflow: hidden;
  position: relative;
  width: calc(280px * 3 + 2rem * 2);
  flex-shrink: 0;
}

.cocktails-track {
  display: flex;
  gap: 2rem;
  cursor: grab;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}

.cocktails-track:active { cursor: grabbing; }

.carousel-arrow {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
}

.carousel-arrow::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 1px;
  background: var(--blue-logo);
  transition: transform 0.4s ease;
}

.carousel-arrow:hover::after { transform: translateX(-50%) scaleX(1); }

.carousel-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-mid);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s ease;
}

.carousel-arrow:hover svg {
  stroke: var(--blue-logo);
  transform: scale(1.15);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(20,40,80,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.carousel-dot.active {
  background: var(--blue-logo);
  transform: scale(1.3);
}

.carousel-dot:hover:not(.active) {
  background: rgba(20,40,80,0.3);
}

.cocktail-card {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.4s, box-shadow 0.4s, opacity 0.3s;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
}

.cocktail-card:hover {
  border-color: rgba(134,197,230,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.cocktail-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--cream);
}

.cocktail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s ease;
}

.cocktail-card:hover .cocktail-img img {
  transform: scale(1.05);
}

.cocktail-info {
  padding: 1.2rem;
  text-align: center;
}

.cocktail-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
}

.cocktail-ingredients {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.tag-nonalcoholic {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-logo);
  border: 1px solid rgba(134,197,230,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* ===== GALLERY ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(0.9) contrast(1.05);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8) saturate(0.9) contrast(1.05);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4));
  z-index: 1;
  pointer-events: none;
}

/* ===== RESERVEREN ===== */
.reserve { background: var(--cream); }

.reserve-contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.reserve-hours { margin: 2rem 0; }

/* ===== FEESTDAGEN HERO PANEL ===== */
.hero-feestdagen {
  width: min(820px, 88vw);
  margin: 0 auto 2.2rem;
  padding: 1.15rem 1.5rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: fadeUp 1.2s ease-out 0.7s both;
}

.hero-feestdagen-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.hero-feestdagen-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-logo);
  white-space: nowrap;
}

.hero-feestdagen-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
}

.hero-feestdagen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-feestdag {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  transition: all 0.3s ease;
}

.hero-feestdag:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.hero-feestdag-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-feestdag-day {
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.hero-feestdag-month {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-logo);
  margin-top: 2px;
}

.hero-feestdag-name {
  font-family: var(--font-elegant);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.hero-feestdag-detail {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(245,240,232,0.6);
  margin-top: 2px;
}

.hero-feestdag--koningsdag .hero-feestdag-date-block {
  background: rgba(232,148,58,0.08);
  border-color: rgba(232,148,58,0.15);
}

.hero-feestdag--koningsdag .hero-feestdag-day {
  color: #e8943a;
}

.hero-feestdag--koningsdag .hero-feestdag-month {
  color: rgba(232,148,58,0.7);
}

.hero-feestdag--koningsdag:hover {
  border-color: rgba(232,148,58,0.4);
}

@media (max-width: 768px) {
  .hero-feestdagen {
    width: min(80vw, 320px);
    padding: 0.85rem 0.75rem 0.7rem;
    border-radius: 14px;
    margin-bottom: 1.8rem;
  }
  .hero-feestdagen-top { margin-bottom: 0.55rem; }
  .hero-feestdagen-label { font-size: 0.5rem; letter-spacing: 0.18em; }
  .hero-feestdagen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  .hero-feestdag {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem 0.35rem;
    text-align: center;
    justify-items: center;
    border-radius: 8px;
  }
  .hero-feestdag-date-block {
    min-height: auto;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    margin-bottom: 0.35rem;
  }
  .hero-feestdag-day { font-size: 1.15rem; }
  .hero-feestdag-month { font-size: 0.45rem; margin-top: 1px; }
  .hero-feestdag-name { font-size: 0.7rem; }
  .hero-feestdag-detail { font-size: 0.55rem; margin-top: 1px; }
  .hero-scroll { display: none; }
}

.reserve-hours h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue-mid);
  margin-bottom: 1rem;
}

.hours-grid { display: grid; gap: 0.4rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.hours-day { font-weight: 400; }
.hours-time { font-weight: 300; color: var(--text-muted); }
.hours-closed { color: #c0392b; font-weight: 400; font-style: italic; }

.reserve-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reserve-phone-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-logo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserve-phone-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-deep);
  fill: none;
  stroke-width: 2;
}

.reserve-phone a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--blue-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.reserve-phone a:hover { color: var(--blue-logo); }

.reserve-phone span {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}


/* ===== CONTACT ===== */
.contact { background: var(--blue-deep); color: var(--white); }

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact .section-title { color: var(--white); }
.contact .section-text { color: rgba(255,255,255,0.85); }

.contact-details { margin-top: 2rem; display: grid; gap: 1.2rem; }

.contact-item { display: flex; gap: 1.2rem; align-items: start; }

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(134,197,230,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-logo);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

/* Reserve section overrides for light background */
.reserve .contact-item-icon {
  border-color: rgba(20,40,80,0.15);
}

.reserve .contact-item-text h4 {
  color: var(--blue-mid);
}

.reserve .contact-item-text p,
.reserve .contact-item-text a {
  color: var(--text-muted);
}

.reserve .contact-item-text a:hover { color: var(--blue-logo); }

.reserve .contact-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }

.reserve .social-link {
  border-color: rgba(20,40,80,0.15);
  color: var(--blue-mid);
}

.reserve .social-link:hover {
  border-color: var(--blue-logo);
  color: var(--blue-logo);
}

.reserve-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reserve .contact-map {
  border-radius: 8px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.reserve .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reserve-thefork {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}

.reserve-thefork .section-label {
  display: block;
  margin-bottom: 1.5rem;
}

.reserve-thefork iframe {
  flex: 1;
  width: 100%;
  min-height: 600px;
  border: none;
}

.contact-item-text a:hover { color: var(--blue-logo); }

.contact-socials { display: flex; gap: 1rem; margin-top: 2rem; }

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.social-link:hover {
  border-color: var(--blue-logo);
  background: rgba(134,197,230,0.1);
  color: var(--blue-logo);
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(0.6) contrast(1.1) brightness(0.85);
  transition: filter 0.5s;
}

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

/* ===== FOOTER ===== */
.footer {
  background: #060e1a;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.footer-left span {
  font-weight: 700;
  font-style: italic;
  background: var(--gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 8s ease-in-out infinite;
}

.footer-right { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.6); }

.footer-right a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right a:hover { color: var(--blue-logo); }

.footer-credit {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit a:hover { color: rgba(255,255,255,0.5); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .reserve-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reserve-thefork iframe { min-height: 600px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .drinks-grid { grid-template-columns: 1fr 1fr; }
  .about-images { height: 400px; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .about-images { overflow: hidden; }
  .about-img { box-shadow: none; }
  .about-img img { filter: brightness(1.2) saturate(0.9) contrast(1.05); }
  .about-quote { display: none; }
  .about-details { flex-wrap: nowrap; gap: 0.75rem; margin-top: 1.5rem; }
  .about-detail { padding-left: 0.6rem; flex: 1; min-width: 0; }
  .about-detail strong { font-size: 1.1rem; }
  .about-detail span { font-size: 0.65rem; }
  .nav-full-label { display: none; }
  .nav-short-label { display: inline; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--blue-deep);
    flex-direction: column;
    padding: 6rem 2.5rem 2.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .image-break-content { padding: 3rem 2rem; }
  .footer { flex-direction: column; text-align: center; }
  .about-images { height: 320px; }
  .intro-strip { padding: 3rem 1.5rem; gap: 2rem; }
  .review-card { min-width: 280px; max-width: 280px; }
  .cocktails-category { margin-bottom: 1.5rem; }
  .cocktails-section { padding-bottom: 3rem; }
  .cocktail-card { min-width: 240px; max-width: 240px; }
  .cocktail-card:hover { border-color: transparent; box-shadow: none; }
  .cocktail-card:hover .cocktail-img img { transform: none; }
  .cocktail-img { height: 260px; padding: 0.5rem; }
  .cocktails-track { gap: 1rem; }
  .cocktails-track-wrapper { width: 240px; }
  .cocktails-carousel { gap: 0.5rem; }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 240px; }
  .menu-pricing { gap: 0.75rem; }
  .price-card { min-width: 0; flex: 1; padding: 1rem 0.5rem; }
  .price-count { font-size: 1.6rem; }
  .price-label { font-size: 0.65rem; }
  .price-amount { font-size: 1.1rem; }
}

/* Visually hidden but accessible to screen readers and search engines */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Accordion button resets */
button.menu-cat-header,
button.drink-card-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  text-align: inherit;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
button.drink-card-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile accordion — menu & drinks */
@media (max-width: 768px) {
  .menu-cat-header {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
  }
  .menu-category.expanded .menu-cat-header { margin-bottom: 1.5rem; }

  .menu-cat-header::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(134,197,230,0.4);
    border-bottom: 1.5px solid rgba(134,197,230,0.4);
    transform: rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-left: auto;
    flex-shrink: 0;
  }
  .menu-category.expanded .menu-cat-header::after { transform: rotate(-135deg); }

  .menu-items-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }
  .menu-category.expanded .menu-items-wrap {
    max-height: 800px;
    opacity: 1;
  }

  .menu-item:hover { padding-left: 0; border-bottom-color: rgba(255,255,255,0.03); }

  /* Drink card accordion */
  .drink-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: 1.5rem 1rem;
  }
  .drink-card:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.05);
  }
  .drink-card:hover::before { transform: scaleX(0); }
  .drink-card-icon { margin-bottom: 0.6rem; }

  .drink-card h3::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgba(134,197,230,0.4);
    border-bottom: 1.5px solid rgba(134,197,230,0.4);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-left: 0.5rem;
  }
  .drink-card.expanded h3::after { transform: rotate(-135deg) translateY(-2px); }

  .drink-items-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }
  .drink-card.expanded .drink-items-wrap {
    max-height: 800px;
    opacity: 1;
  }

  .drinks-grid { gap: 0.75rem; }
}

/* ===== RESERVEER MODAL ===== */
.reserveer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.reserveer-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.reserveer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.reserveer-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--blue-deep);
  width: 100%;
  max-width: 780px;
  height: 95vh;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(134,197,230,0.12);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.reserveer-modal.is-open .reserveer-modal-panel {
  transform: translateY(0) scale(1);
}

.reserveer-modal-topline {
  height: 3px;
  background: var(--gold-foil);
  background-size: 200% 200%;
  animation: goldShimmer 4s linear infinite;
  flex-shrink: 0;
}

.reserveer-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 0.9rem;
  border-bottom: 1px solid rgba(134,197,230,0.1);
  flex-shrink: 0;
}

.reserveer-modal-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.reserveer-modal-logo span {
  color: var(--blue-logo);
  font-style: italic;
}

.reserveer-modal-title-block {
  text-align: center;
  flex: 1;
}

.reserveer-modal-title-block .section-label {
  color: var(--blue-logo);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
}

.reserveer-modal-close {
  background: transparent;
  border: 1px solid rgba(134,197,230,0.2);
  color: rgba(255,255,255,0.6);
  width: 38px;
  height: 38px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.reserveer-modal-close:hover {
  border-color: var(--blue-logo);
  color: var(--blue-logo);
  background: rgba(134,197,230,0.06);
}

.reserveer-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}


.reserveer-modal-body {
  flex: 1;
  overflow: hidden;
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.reserveer-modal-body iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .reserveer-modal { padding: 1rem; align-items: center; }
  .reserveer-modal-panel { max-width: 100%; height: 90vh; border-radius: 12px; }
  .reserveer-modal-header { padding: 1rem 1.5rem 0.85rem; }
  .reserveer-modal-body { padding: 0 1rem 1rem; }
}

/* ===== PRIVACY MODAL ===== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.privacy-modal.is-open { opacity: 1; visibility: visible; }

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.privacy-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--blue-deep);
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(134,197,230,0.12);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.privacy-modal.is-open .privacy-modal-panel { transform: translateY(0) scale(1); }

.privacy-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.5rem 2.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
}

.privacy-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--blue-logo);
  margin: 2rem 0 0.6rem;
}
.privacy-modal-body h3:first-child { margin-top: 0; }

.privacy-modal-body p { margin-bottom: 0.8rem; }

.privacy-modal-body ul {
  list-style: none;
  margin-bottom: 0.8rem;
}
.privacy-modal-body ul li {
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}
.privacy-modal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue-logo);
  opacity: 0.5;
}

.privacy-modal-body a {
  color: var(--blue-logo);
  text-decoration: none;
  border-bottom: 1px solid rgba(134,197,230,0.2);
  transition: border-color 0.3s;
}
.privacy-modal-body a:hover { border-color: var(--blue-logo); }

@media (max-width: 600px) {
  .privacy-modal { padding: 1rem; }
  .privacy-modal-panel { max-width: 100%; border-radius: 12px; }
  .privacy-modal-body { padding: 1.5rem; }
}

/* Modal ambient glow */
.reserveer-modal-backdrop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(134,197,230,0.07) 0%,
    rgba(201,168,76,0.04) 45%,
    transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* Bokeh particles */
@keyframes particleFloat {
  0%   { transform: translateY(0)     scale(1);   opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 0.5; }
  100% { transform: translateY(-90px) scale(0.5); opacity: 0; }
}

.modal-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

/* Active nav link state */
.nav-links a.active {
  color: var(--gold);
}
