@font-face {
  font-family: 'ANNAI';
  src: url('../fonts/ANNAI.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #16181d;
  --bg-card: #1e2028;
  --bg-card-hover: #262830;
  --accent: #c9a46a;
  --accent-light: #dbb98a;
  --accent-dim: rgba(201, 164, 106, 0.12);
  --text-primary: #f0ece4;
  --text-secondary: #f0ece4;
  --text-muted: #b0aba3;
  --red-accent: #c45c50;
  --green-accent: #5a9e6f;
  --border: rgba(201, 164, 106, 0.1);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body:    'Trebuchet MS', 'Gill Sans', Arial, sans-serif;

  /* ── CONTENT FONT SIZES (below hero) ──
     Adjust these to scale text in content sections.
     Grouped by role for easy tuning. */
  --fs-section-title: clamp(2.2rem, 4vw, 3.4rem);   /* section headings        */
  --fs-section-desc:  1.2rem;                        /* section descriptions     */
  --fs-card-title:    1.45rem;                        /* card/item headings       */
  --fs-body:          18px;                           /* body text, list items    */
  --fs-small:         0.9rem;                        /* captions, notes, labels  */
  --fs-tag:           1rem;                        /* uppercase tags           */
  --fs-btn:           0.92rem;                        /* buttons                  */
  --fs-input:         0.95rem;                        /* form inputs              */
}


/* ── DEMO FONT SWITCHER ── */
#font-switcher {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #1e2028;
  border: 1px solid rgba(201, 164, 106, 0.35);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-family: Arial, Helvetica, sans-serif;
}
#font-switcher .fs-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a958d;
  text-align: center;
}
#font-switcher .fs-btns {
  display: flex;
  gap: 0.4rem;
}
#font-switcher button {
  flex: 1;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(201, 164, 106, 0.3);
  background: transparent;
  color: #b0aba3;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.3;
  text-align: center;
  transition: all 0.2s;
}
#font-switcher button:hover {
  border-color: #c9a46a;
  color: #c9a46a;
}
#font-switcher button.fs-active {
  background: rgba(201, 164, 106, 0.15);
  border-color: #c9a46a;
  color: #c9a46a;
}
#font-switcher .fs-name {
  display: block;
  font-weight: 600;
}
#font-switcher .fs-sample {
  display: block;
  font-size: 0.62rem;
  opacity: 0.7;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #1e2028;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR (Webkit) ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(22, 24, 29, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'ANNAI', var(--font-display);
  font-size: 1.9rem;
  font-weight: normal;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-text {
  letter-spacing: 0.15em;
}

.nav-logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 50%;
}

nav.scrolled .nav-logo-img {
  height: 32px;
  width: 32px;
}

.nav-logo-text { color: var(--text-primary); }
.nav-logo .miru-m,
.miru-m { color: var(--red-accent); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: lowercase;
  color: var(--text-secondary);
  margin-top: -0.8rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle .red-text {
  color: var(--red-accent);
  font-weight: 500;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* ── VACANCY BADGE ── */
.nav-vacatures { position: relative; }

.vacancy-badge {
  display: none;
  position: absolute;
  top: -8px;
  right: -14px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vacancy-badge.visible { display: inline-block; }

.mobile-badge {
  display: none !important;
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  font-size: 0.6rem;
  line-height: 16px;
}

.mobile-badge.visible { display: inline-block !important; }

.mobile-toggle.active .mobile-badge { display: none !important; }

@keyframes badgePop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #16181d !important;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0.5rem;
  position: relative;
}

.mobile-toggle span:not(.mobile-badge) {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
}

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

/* ── SITE BANNER ── */
.site-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--accent);
  color: #1a1a1a;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.site-banner.visible {
  transform: translateY(0);
}
.site-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 48px 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
}
.site-banner-icon {
  flex-shrink: 0;
}
.site-banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.site-banner-close:hover { opacity: 1; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.webp') center top/cover no-repeat;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 30%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 30%, transparent 90%);
  opacity: 0.65;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22,24,29,0.3) 0%, rgba(22,24,29,0.7) 100%);
  pointer-events: none;
}

.hero-ink-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.05);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 30%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 30%, transparent 90%);
  opacity: 0.65;
}

.hero-sakura {
  position: absolute;
  top: 72px;
  left: 0;
  width: 540px;
  max-width: 46vw;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  transform-origin: top left;
  animation: sakuraGrow 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes sakuraGrow {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 0.88;
    transform: scale(1);
  }
}

.hero-sakura-right-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 540px;
  max-width: 46vw;
  pointer-events: none;
  z-index: 2;
  transform: scaleX(-1);
  mix-blend-mode: screen;
}

.hero-sakura-right {
  width: 100%;
  display: block;
  transform-origin: top left;
  animation: sakuraGrowRight 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes sakuraGrowRight {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 0.88;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 3;
  animation: fadeUp 1.2s ease-out;
  color: var(--text-primary);
  padding-top: 4rem;
}

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

.hero-tag {
  font-family: var(--font-body);
  font-size: 1.35rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.hero h1 {
  font-family: 'ANNAI', var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  padding: 1rem 2rem;
  text-align: center;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.15rem 3.2rem;
  background: var(--accent);
  color: #16181d;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 164, 106, 0.3);
}

.btn-secondary {
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.15rem 3.2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(240, 236, 228, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: rgba(240, 236, 228, 0.5);
  transform: translateY(-2px);
}

/* Hero button overrides for dark background */
.hero .btn-primary { color: #16181d; }
.hero .btn-secondary {
  color: var(--accent);
  border-color: var(--accent);
}
.hero .btn-secondary:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

/* Menu section CTA — gold accent */
.menu-section > .btn-secondary {
  color: var(--accent);
  border-color: var(--accent);
}
.menu-section > .btn-secondary:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

/* ── HERO MARQUEE ── */
.hero-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0.8rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(240, 236, 228, 0.08);
}

.hero-marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.hero-marquee-track span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.hero-marquee-track span::before {
  content: '\00B7';
  margin-right: 3rem;
  color: var(--accent);
  opacity: 0.5;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1.2s ease-out 0.6s both;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── SECTIONS SHARED ── */
section {
  padding: 7rem 2rem;
}

.section-tag {
  font-family: var(--font-body);
  font-size: var(--fs-tag);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-tag::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.8s ease;
}

.section-tag.revealed::after {
  width: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-section-title);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: var(--fs-section-desc);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
}

/* ── ABOUT ── */
.about {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual:first-child {
  transform: translateY(-14rem);
}

.about-visual:last-child {
  transform: translateY(22rem);
}

.about-vid-hero {
  width: 100%;
  max-width: 640px;
  height: auto;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 35%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at center, black 35%, transparent 80%);
}

.about-visual:first-child .about-vid-hero {
  animation: floatFood 4s ease-in-out infinite;
}

.about-visual:last-child .about-vid-hero {
  animation: floatFood 4s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes floatFood {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.about-text .section-desc { margin-bottom: 2rem; }

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent);
}

.stat-label {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── MENU HIGHLIGHTS ── */
.menu-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.menu-section .section-desc {
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 1.5rem;
}

.menu-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease var(--reveal-delay, 0s),
              transform 0.6s ease var(--reveal-delay, 0s),
              box-shadow 0.4s ease;
}

.menu-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.menu-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.menu-card.revealed:hover {
  transform: translateY(-4px);
}

.menu-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* ── PRICING ── */
.pricing {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing .section-desc {
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease var(--reveal-delay, 0s),
              transform 0.6s ease var(--reveal-delay, 0s),
              border-color 0.4s ease,
              background 0.4s ease;
}

.price-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.price-card:hover::before { opacity: 1; }
.price-card:hover {
  border-color: rgba(201, 164, 106, 0.2);
  background: var(--bg-card-hover);
}

.price-card.revealed:hover {
  transform: translateY(-2px);
}

.price-card-label {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  margin-left: 2px;
}

.price-card-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.price-card-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--text-secondary);
  margin-left: 0.3rem;
}

.price-card-per {
  font-size: var(--fs-body);
  color: var(--text-muted);
  margin-top: 0.3rem;
  margin-bottom: 2rem;
  margin-left: 2px;
}

.price-card-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-card-details li {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.price-card-details li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}

.price-card .btn-primary {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  color: #16181d;
  box-shadow: 0 2px 8px rgba(201, 164, 106, 0.3);
}

.price-card .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201, 164, 106, 0.35);
}

.price-note {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--accent-dim);
  border: 1px solid rgba(201, 164, 106, 0.15);
  font-size: var(--fs-body);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  text-align: left;
}

.price-note strong {
  color: var(--accent);
  font-weight: 500;
}

/* ── DESSERT ── */
.dessert-banner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.dessert-img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  filter: brightness(0.95);
}

.dessert-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dessert-content .section-tag {
  color: var(--accent);
}

.dessert-content .section-title {
  color: var(--text-primary);
}

.dessert-content .section-desc {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.dessert-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  list-style: none;
}

.dessert-items li {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}

.dessert-items li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.45rem;
  top: 0.35rem;
}

/* ── RESERVATION ── */
.reservation {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.reservation .section-desc {
  margin-inline: auto;
  margin-bottom: 3rem;
}

.res-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0;
  text-align: left;
  overflow: hidden;
}

/* Step sections */
.res-step {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.res-step:last-of-type {
  border-bottom: none;
}

.res-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.res-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(201, 164, 106, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
}

.res-step-title {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  font-weight: 400;
  color: var(--text-primary);
}

.res-step-subtitle {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  font-weight: 300;
}

.res-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.res-row:last-child { margin-bottom: 0; }

.res-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

.res-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.res-field.full { grid-column: 1 / -1; }

.res-field label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.res-field label svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-primary);
  opacity: 0.6;
  flex-shrink: 0;
}

.res-field.has-error input,
.res-field.has-error select,
.res-field.has-error textarea {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px rgba(196, 76, 76, 0.15);
}

.res-field.has-error label {
  color: var(--red-accent);
}

.res-field-error {
  font-size: var(--fs-small);
  color: var(--red-accent);
  font-weight: 400;
  margin-top: 0.15rem;
  display: none;
}

.res-field.has-error .res-field-error {
  display: block;
}

.time-slots-group.has-error .time-period-toggle {
  border-color: var(--red-accent);
}

.time-slots-group.has-error .time-slots {
  outline: 1px solid var(--red-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.res-validation-msg {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(196, 76, 76, 0.1);
  border: 1px solid rgba(196, 76, 76, 0.25);
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: var(--fs-body);
  color: var(--red-accent);
  font-weight: 400;
}

.res-validation-msg.visible {
  display: flex;
}

.res-validation-msg svg {
  width: 16px;
  height: 16px;
  stroke: var(--red-accent);
  flex-shrink: 0;
}

/* API offline fallback */
.res-offline-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.res-offline-fallback > svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.res-offline-fallback h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}
.res-offline-fallback p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin: 0 0 2rem;
  line-height: 1.6;
}
.res-offline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.res-offline-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 164, 106, 0.3);
}

.res-field input,
.res-field select,
.res-field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-input);
  padding: 0.85rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
}

.res-field textarea {
  resize: vertical;
  min-height: 70px;
}

.res-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a958d' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.res-field input:focus,
.res-field select:focus,
.res-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 164, 106, 0.1);
}

.res-field input::placeholder,
.res-field textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

/* Date input wrapper — acts as the visible "input" */
.res-date-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.res-date-wrapper:hover {
  border-color: rgba(201, 164, 106, 0.25);
}

.res-date-wrapper:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 164, 106, 0.1);
}

.res-date-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.res-date-display {
  font-size: var(--fs-input);
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: 0.01em;
  pointer-events: none;
  white-space: nowrap;
}

.res-date-display:empty::before {
  content: 'Selecteer een datum';
  color: var(--text-muted);
  font-weight: 300;
}

/* Hide the actual date input visually but keep it functional */
.res-date-wrapper input[type="date"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
}

#fieldDate.has-error .res-date-wrapper {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px rgba(196, 76, 76, 0.15);
}

/* Children yes/no choice */
.res-children-question {
  margin-top: 0.5rem;
}

.res-children-question label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.res-children-question label svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-primary);
  opacity: 0.6;
  flex-shrink: 0;
}

.res-children-btns {
  display: flex;
  gap: 0.75rem;
}

.res-children-btn {
  flex: 1;
  max-width: 140px;
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: 400;
  padding: 0.7rem 1.2rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
  text-align: center;
}

.res-children-btn:hover {
  border-color: rgba(201, 164, 106, 0.3);
  color: var(--text-primary);
}

.res-children-btn.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 500;
}

.res-children-question.has-error .res-children-btns .res-children-btn {
  border-color: var(--red-accent);
}

.res-children-question.has-error label {
  color: var(--red-accent);
}

.res-children-fields {
  display: none;
  padding-top: 1rem;
  animation: fadeIn 0.3s ease;
}

.res-children-fields.open {
  display: block;
}

/* Time slots */
.time-slots-group {
  margin-top: 0.5rem;
}

/* Period toggle (Lunch / Diner) */
.time-period-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.period-btn {
  flex: 1;
  padding: 0.7rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.period-btn .period-time {
  font-size: var(--fs-small);
  opacity: 0.6;
}

.period-btn:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.period-btn.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.period-btn.active .period-time {
  opacity: 0.8;
}

.period-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Feedback message below toggle */
.period-msg {
  font-size: var(--fs-small);
  color: var(--red-accent);
  text-align: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.period-msg.visible {
  max-height: 2rem;
  opacity: 1;
  margin-bottom: 0.5rem;
}

/* All slots unavailable banner */
.slots-full-msg {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: rgba(196, 92, 80, 0.08);
  border: 1px solid rgba(196, 92, 80, 0.25);
  border-radius: 6px;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.5;
}

.slots-full-msg.visible {
  display: flex;
}

.slots-full-msg svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--red-accent);
}

.slots-full-msg strong {
  display: block;
  color: var(--accent);
  font-size: var(--fs-body);
  margin-bottom: 0.15rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.time-slot {
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  padding: 0.6rem 0.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border-radius: 4px;
  position: relative;
}

.time-slot:hover:not(.unavailable) {
  border-color: var(--accent);
  color: var(--text-primary);
  background: rgba(201, 164, 106, 0.06);
}

.time-slot.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 164, 106, 0.1);
}

.time-slot.selected::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.time-slot.unavailable {
  cursor: not-allowed;
  text-decoration: line-through;
  color: var(--text-muted);
  background: rgba(22, 24, 29, 0.6);
  border-color: rgba(255, 255, 255, 0.04);
}

/* Tooltip for unavailable slots */
.time-slot.unavailable[data-tooltip] {
  position: relative;
}

.time-slot.unavailable[data-tooltip]:hover::before,
.time-slot.unavailable.show-tooltip[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #2a2d38;
  color: var(--text-primary);
  font-size: var(--fs-small);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 164, 106, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

.time-slot.unavailable[data-tooltip]:hover::after,
.time-slot.unavailable.show-tooltip[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #2a2d38;
  z-index: 10;
  pointer-events: none;
}

.time-slot-info {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-top: 2px;
}

.time-slot-info:empty {
  display: none;
}

.time-slot.selected .time-slot-info { color: var(--accent); }

/* Submit area */
.res-submit-area {
  padding: 2rem 2.5rem;
  background: rgba(201, 164, 106, 0.05);
  border-top: 1px solid var(--border);
}

.res-submit {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.15rem;
  background: var(--accent);
  color: #16181d;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(201, 164, 106, 0.3);
}

.res-submit:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 30px rgba(201, 164, 106, 0.35);
  transform: translateY(-1px);
}

.res-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.res-note {
  margin-top: 1.2rem;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
}

.res-note a {
  color: var(--accent);
  text-decoration: none;
}

.res-note a:hover { text-decoration: underline; }

.res-privacy {
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.res-privacy a {
  color: var(--text-muted);
  text-decoration: underline;
}
.res-privacy a:hover {
  color: var(--text-secondary);
}

/* ── CONFIRMATION OVERLAY ── */
.confirmation-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 24, 29, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.confirmation-overlay.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.confirmation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.4s ease;
}

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

.confirm-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--green-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirm-icon svg {
  stroke: var(--green-accent);
  width: 24px;
  height: 24px;
}

.confirm-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.confirm-sub {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.confirm-details {
  background: var(--bg-dark);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

.confirm-detail-label {
  font-size: var(--fs-tag);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.confirm-detail-value {
  font-size: var(--fs-body);
  color: var(--text-primary);
  overflow-wrap: break-word;
  word-break: break-all;
}

.confirm-close {
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirm-close:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* ── ORDER ONLINE ── */
.order-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.order-section .section-desc {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.order-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease var(--reveal-delay, 0s),
              transform 0.6s ease var(--reveal-delay, 0s),
              border-color 0.4s ease,
              background 0.4s ease;
}

.order-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.order-card:hover {
  border-color: rgba(201, 164, 106, 0.2);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.order-card.revealed:hover {
  transform: translateY(-4px);
}

.order-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.order-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.order-card-desc {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

.order-discount {
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  color: var(--accent);
  font-weight: 400;
}

/* ── REVIEWS ── */
.reviews-section {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.reviews-section .section-desc {
  margin-inline: auto;
  margin-bottom: 3rem;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: left;
  transition: all 0.4s ease;
}

.review-card:hover {
  border-color: rgba(201, 164, 106, 0.25);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent);
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.review-author {
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews-platforms {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.reviews-platforms-label {
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews-platforms-links {
  display: flex;
  gap: 0.75rem;
}

.reviews-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--fs-small);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.reviews-platform-link:hover {
  border-color: var(--accent);
  background: rgba(201, 164, 106, 0.06);
}

.reviews-platform-rating {
  color: var(--accent);
  font-weight: 600;
}

/* ── CONTACT / FOOTER ── */
.contact {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.contact-block p,
.contact-block a {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  text-decoration: none;
}

.contact-block a:hover { color: var(--accent); }

.contact-block-location {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  position: relative;
}

.contact-block-location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-block p.location-address {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.location-phone-email a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-body);
  color: var(--accent) !important;
  font-weight: 400;
  margin-bottom: 0.4rem;
  transition: opacity 0.3s ease;
}

.location-phone-email a:hover { opacity: 0.8; }

.location-phone-email svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  font-weight: 300;
}

.hours-day { color: var(--text-muted); }
.hours-note {
  grid-column: 1 / -1;
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── MAP ── */
.map-container {
  max-width: 1200px;
  margin: 2rem auto 0;
  height: 300px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
}

.map-facade {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  cursor: pointer;
  transition: background 0.2s ease;
}
.map-facade:hover {
  background: #252830;
}
.map-facade-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
}
.map-facade-content svg {
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.map-facade-content span {
  font-size: var(--fs-body);
  color: var(--text-primary);
}
.map-facade-content small {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

footer {
  text-align: center;
  padding: 2.5rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

.nav-login {
  color: var(--text-muted) !important;
  opacity: 0.3;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
}

.nav-login:hover {
  opacity: 0.7;
  color: var(--text-muted) !important;
}

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

.nav-login-item {
  margin-left: -1rem;
  margin-right: -1rem;
}

/* ── DIVIDER ── */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: var(--border);
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none;
}

/* ── VACATURES PAGE ── */
.vacatures-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vacatures-section .section-desc {
  margin-inline: auto;
}

.vacatures-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.vacancy-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--accent);
  transition: background 0.3s ease;
}

.vacancy-card:hover {
  background: var(--bg-card-hover);
}

.vacancy-title {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.vacancy-hours {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.vacancy-desc {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.7;
  white-space: pre-line;
}

.vacatures-empty {
  margin-top: 3rem;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: var(--fs-body);
}

.vacatures-contact {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--accent-dim);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.vacatures-contact a {
  color: var(--accent);
  text-decoration: none;
}

.vacatures-contact a:hover {
  text-decoration: underline;
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  /* Remove backdrop-filter on nav when menu is open — backdrop-filter
     creates a containing block that traps position:fixed children */
  nav:has(.mobile-open) {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none !important;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(22, 24, 29, 0.98);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1000;
  }

  .nav-links.mobile-open a {
    font-size: 1rem;
    color: var(--text-primary);
  }

  .nav-links.mobile-open .vacancy-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 0.5rem;
    vertical-align: middle;
  }

  .nav-links.mobile-open li[style] {
    flex-direction: column;
    align-items: center;
  }

  .nav-links.mobile-open .nav-login-item {
    position: absolute;
    bottom: 2rem;
  }

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

  .about-text {
    grid-column: 1 / -1;
    order: 0;
  }

  .about-visual {
    order: 1;
  }

  .about-visual:first-child,
  .about-visual:last-child {
    transform: none;
  }

  .about-vid-hero {
    max-width: 340px;
  }

  #about {
    padding-bottom: 0;
  }

  #menu {
    padding-top: 2rem;
  }

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

  .menu-card-img {
    height: 260px;
  }

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

  .dessert-banner {
    grid-template-columns: 1fr;
  }

  .dessert-img {
    min-height: 250px;
  }

  .res-row,
  .res-row-3 {
    grid-template-columns: 1fr;
  }

  .res-step {
    padding: 1.5rem;
  }

  .res-submit-area {
    padding: 1.5rem;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-options {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  section { padding: 4rem 1.5rem; }

  /* Sakura — tablet */
  .hero-sakura {
    width: 340px;
    max-width: 42vw;
    top: 60px;
  }
  .hero-sakura-right-wrap {
    width: 340px;
    max-width: 42vw;
  }

  /* Hero mobile fixes */
  .hero-content {
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero-marquee-track {
    animation-duration: 10s;
    gap: 1.5rem;
  }

  .hero-marquee-track span::before {
    margin-right: 1.5rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }

  /* Mobile sticky CTA bar */
  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    gap: 0.6rem;
    border-top: 1px solid var(--border);
    background: rgba(22, 24, 29, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }
  .mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 0.85rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
  }
  .mobile-sticky-cta .cta-reserveer {
    background: var(--accent);
    color: #16181d;
  }
  .mobile-sticky-cta .cta-bestellen {
    background: var(--accent);
    color: #16181d;
  }

  /* Add padding to body bottom to prevent content being hidden behind sticky bar */
  body { padding-bottom: 4rem; }
}

@media (max-width: 480px) {
  /* Sakura — small phone */
  .hero-sakura {
    width: 220px;
    max-width: 58vw;
    top: 50px;
  }
  .hero-sakura-right-wrap {
    width: 220px;
    max-width: 58vw;
  }

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

  .menu-card-img {
    height: 220px;
  }
  .about-stats {
    gap: 1.5rem;
  }
  .dessert-items {
    grid-template-columns: 1fr;
  }
}
