/* ═══════════════════════════════════════════════════════════
   JIWA SOCIAL CLUB — WOERDEN
   Design: Grounded redesign — dark, warm, cinematic
   Palette: #1a0a0a (almost-black) · #c8102e (red) · #f5f0eb (cream) · #e8c97a (gold) · #2d1a1a (darkbrown)
   Type: Fraunces (serif display) + Inter (sans body)
═══════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-black:      #1a0a0a;
  --c-darkbrown:  #2d1a1a;
  --c-red:        #c8102e;
  --c-red-dark:   #a00d24;
  --c-cream:      #f5f0eb;
  --c-cream-dark: #ede7df;
  --c-gold:       #e8c97a;
  --c-gold-dim:   #b89a4a;
  --c-white:      #ffffff;
  --c-text-dark:  #1a0a0a;
  --c-text-muted: #6b4f4f;
  --c-text-light: #f5f0eb;
  --c-text-gold:  #e8c97a;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --topbar-h: 68px;
  --radius:   4px;
  --radius-lg: 10px;
  --transition: 250ms ease;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
}

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

body {
  font-family: var(--font-body);
  background: var(--c-black);
  color: var(--c-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ── ACCESSIBILITY ──────────────────────────────────────── */
.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;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}

.btn--red {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}
.btn--red:hover {
  background: var(--c-red-dark);
  border-color: var(--c-red-dark);
  transform: translateY(-1px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn--outline-gold:hover {
  background: var(--c-gold);
  color: var(--c-black);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}
.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}
.btn--full {
  width: 100%;
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--topbar-h);
  background: rgba(26, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 201, 122, 0.15);
  transition: background var(--transition);
}

.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.topbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-jiwa {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--c-cream);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  text-transform: uppercase;
  font-weight: 500;
}

.topbar__nav {
  display: flex;
  gap: var(--space-md);
  flex: 1;
  justify-content: center;
}
.topbar__nav a {
  color: rgba(245, 240, 235, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.topbar__nav a:hover { color: var(--c-gold); }

.topbar__cta {
  margin-left: auto;
  flex-shrink: 0;
}

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: var(--space-sm);
  color: var(--c-cream);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── MOBILE MENU — FULLSCREEN OVERLAY ───────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  height: 100dvh;
  background: var(--c-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 280ms cubic-bezier(0.4,0,0.2,1),
    opacity 280ms ease,
    visibility 0s 280ms;
}

.mobile-menu__overlay[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition:
    transform 280ms cubic-bezier(0.4,0,0.2,1),
    opacity 280ms ease,
    visibility 0s 0s;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay,
  .mobile-menu__overlay[aria-hidden="false"] {
    transition: opacity 150ms ease, visibility 0s;
    transform: none;
  }
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-md);
  overflow-y: auto;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--c-cream);
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: var(--space-md);
  transition: color var(--transition);
}
.mobile-menu__close:hover { color: var(--c-gold); }

.mobile-menu__brand {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
}
.mobile-menu__brand .logo-jiwa {
  font-size: 2.5rem;
}
.mobile-menu__brand .logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  flex: 1;
}
.mobile-menu__list li {
  border-bottom: 1px solid rgba(232, 201, 122, 0.1);
}
.mobile-menu__item {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  font-weight: 700;
  color: var(--c-cream);
  text-decoration: none;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.mobile-menu__item:hover { color: var(--c-gold); }

.mobile-menu__cta {
  margin-top: var(--space-lg);
  text-align: center;
}

.mobile-menu__footer-info {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(232, 201, 122, 0.15);
}
.mobile-menu__footer-info p {
  color: rgba(245, 240, 235, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.mobile-menu__footer-info a {
  color: rgba(245, 240, 235, 0.5);
  text-decoration: none;
}

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.container--split-reverse .split__image { order: -1; }

.split__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.split__image:hover img { transform: scale(1.03); }

/* ── TYPOGRAPHY SYSTEM ──────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--c-red);
}
.section-title--light {
  color: var(--c-cream);
}
.section-title--light em { color: var(--c-gold); }

.section-intro {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 680px;
}
.section-intro--light { color: rgba(245, 240, 235, 0.65); }

.body-text {
  color: #4a3030;
  line-height: 1.75;
  font-size: 1.05rem;
}

.section-header {
  margin-bottom: var(--space-lg);
}
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: var(--space-xl) 0;
}
.section--dark {
  background: var(--c-darkbrown);
}
.section--cream {
  background: var(--c-cream);
}
.section--gallery {
  background: var(--c-black);
  padding-bottom: var(--space-xl);
}
.section--gallery .section-label { color: var(--c-gold); }
.section--gallery .section-title { color: var(--c-cream); }
.section--gallery .section-header {
  padding-bottom: var(--space-lg);
}

/* ── GOLD DIVIDER ───────────────────────────────────────── */
.gold-divider {
  background: var(--c-darkbrown);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(232, 201, 122, 0.2);
  border-bottom: 1px solid rgba(232, 201, 122, 0.2);
}
.gold-divider span {
  color: var(--c-gold);
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--topbar-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 10, 10, 0.72) 0%,
    rgba(26, 10, 10, 0.55) 45%,
    rgba(26, 10, 10, 0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--c-cream);
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(245, 240, 235, 0.8);
  line-height: 1.6;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 240, 235, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── OVER JIWA — VALUES ─────────────────────────────────── */
.over__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-dark);
}
.value-icon {
  font-size: 1.2rem;
}

/* ── MENU TABS ──────────────────────────────────────────── */
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(232, 201, 122, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  background: transparent;
  border: none;
  color: rgba(245, 240, 235, 0.6);
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.menu-tab:hover {
  color: var(--c-gold);
}
.menu-tab--active {
  background: var(--c-red);
  color: var(--c-white);
}
.menu-tab--active:hover {
  background: var(--c-red-dark);
  color: var(--c-white);
}

/* ── CARD GRID ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background: rgba(255,255,255, 0.04);
  border: 1px solid rgba(232, 201, 122, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: rgba(232, 201, 122, 0.4);
  transform: translateY(-3px);
}

.card--wide {
  grid-column: span 2;
}

.card__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.05); }

.card__body {
  padding: var(--space-md);
}
.card__body--full {
  padding: var(--space-lg) var(--space-md);
}
.card__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}
.card__desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold);
}
.card__list {
  list-style: none;
  padding: 0;
}
.card__list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(232, 201, 122, 0.1);
  font-size: 0.92rem;
  color: rgba(245, 240, 235, 0.75);
}
.card__list li span {
  color: var(--c-gold);
  font-weight: 600;
}

.menu-panel { display: none; }
.menu-panel--active { display: grid; }

.menu-footer {
  margin-top: var(--space-lg);
  text-align: center;
}
.menu-note {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.4);
  font-style: italic;
}

/* ── GALLERY STRIP ──────────────────────────────────────── */
.gallery-strip {
  width: 100%;
  overflow: hidden;
}
.gallery-strip__track {
  display: flex;
  gap: var(--space-sm);
  padding: 0 var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-strip__track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex-shrink: 0;
  width: clamp(220px, 30vw, 380px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-item:nth-child(even) {
  margin-top: 1.5rem;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── EVENTS GRID ────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xs);
}
.event-type {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.event-icon {
  font-size: 1.5rem;
}
.event-type h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-dark);
}
.event-type p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: var(--space-xl) 0;
  text-align: center;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 10, 0.82);
}
.cta-band__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.15;
}
.cta-band__sub {
  font-size: 1.1rem;
  color: rgba(245, 240, 235, 0.72);
  max-width: 560px;
}

/* ── CONTACT SECTION ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-block__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: rgba(245, 240, 235, 0.8);
  border-bottom: 1px solid rgba(232, 201, 122, 0.1);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--c-cream);
  font-weight: 600;
}
.hours-table tr.closed td {
  color: rgba(245, 240, 235, 0.35);
}

.contact-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(245, 240, 235, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-address a {
  color: rgba(245, 240, 235, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.contact-address a:hover { color: var(--c-gold); }
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-gold);
}
.map-link {
  color: var(--c-gold) !important;
  font-weight: 600;
  text-decoration: none !important;
}
.map-link:hover { text-decoration: underline !important; }

/* ── FORM ───────────────────────────────────────────────── */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.form-group label span {
  color: var(--c-red);
}
.form-group input,
.form-group textarea {
  background: rgba(245, 240, 235, 0.06);
  border: 1px solid rgba(232, 201, 122, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 235, 0.3);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(245, 240, 235, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer-kit {
  background: var(--c-black);
  border-top: 2px solid var(--c-red);
}

.footer-kit__top {
  padding: var(--space-xl) 0;
}

.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: start;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo .logo-jiwa { font-size: 1.8rem; }
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 240, 235, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232, 201, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 235, 0.5);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social a:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
  background: rgba(232, 201, 122, 0.08);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}

.footer-links,
.footer-hours {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(245, 240, 235, 0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-gold); }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.65);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(232, 201, 122, 0.08);
}
.footer-hours li span:last-child {
  font-weight: 600;
  color: var(--c-cream);
}
.footer-hours li.closed span {
  color: rgba(245, 240, 235, 0.3);
}

.footer-col--cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-col--cta p {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.6);
  line-height: 1.5;
}

.footer-contact-info {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-contact-info p,
.footer-contact-info a {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.35);
}
.footer-contact-info a:hover { color: var(--c-gold); }

.footer-kit__bottom {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(232, 201, 122, 0.08);
  padding: 1.25rem 0;
}
.footer-kit__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.footer-kit__bottom-inner p {
  font-size: 0.78rem;
  color: rgba(245, 240, 235, 0.3);
}
.footer-demo-note a {
  color: rgba(232, 201, 122, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-demo-note a:hover { color: var(--c-gold); }

/* ── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 1; /* Always visible as fallback */
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .container--split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .container--split-reverse .split__image { order: 0; }

  .card-grid { grid-template-columns: 1fr 1fr; }
  .card--wide { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-block--form { grid-column: span 2; }

  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }

  .topbar__inner { padding: 0 1rem; }

  .hero__content { padding: 1.5rem 1rem; }

  .card-grid {
    grid-template-columns: 1fr;
  }
  .card--wide { grid-column: span 1; }

  .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact-block--form { grid-column: span 1; }

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

  .footer-kit__inner { grid-template-columns: 1fr; }
  .footer-kit__bottom-inner { flex-direction: column; text-align: center; }

  .over__values { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }

  .gallery-item { width: 85vw; }

  .menu-tabs { width: 100%; }
  .menu-tab { flex: 1; padding: 0.65rem 0.75rem; font-size: 0.8rem; }
}

/* === WG image-fill patch: content-foto's vullen hun container (mobiel), logo's uitgezonderd === */
.gallery img, [class*="gallery"] img, .card img, figure img, picture img,
[class*="photo"] img, [class*="image"] img, [class*="sfeer"] img,
[class*="foto"] img, [class*="tile"] img, [class*="band"] img, [class*="hero"] img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.logo img, [class*="logo"] img, [class*="brand"] img, header nav img,
img[alt*="logo" i], img[src*="logo" i], img[src*="favicon" i] {
  width: auto; height: auto; object-fit: initial;
}
