/* ═══════════════════════════════════════════════════════
   BRASSERIE GENIETEN — WADDINXVEEN
   Design: diep bosgroen #1a4a3f + warm crème #f5f0e8
   Fonts: Cormorant Garamond (display) + Jost (body)
═══════════════════════════════════════════════════════ */

/* ─── Custom properties ────────────────────────────── */
:root {
  --green:    #1a4a3f;
  --green-dk: #0d2e28;
  --cream:    #f5f0e8;
  --sand:     #c9b99a;
  --sand-lt:  #e8dece;
  --text:     #1a1a1a;
  --text-muted: #5a5a4a;
  --white:    #ffffff;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --trans: 280ms ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ────────────────────────────────────── */
.logo-script {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--cream);
}

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--sand-lt); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.section-title--light { color: var(--cream); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 3rem;
}

/* ─── Utility ───────────────────────────────────────── */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.container--narrow { width: min(720px, 92vw); margin-inline: auto; }

.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-block;
  padding: 0.875rem 2.25rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
}

.btn--cream {
  background: var(--cream);
  color: var(--green);
  border: 2px solid var(--cream);
}
.btn--cream:hover { background: transparent; color: var(--cream); }

.btn--green {
  background: var(--green);
  color: var(--cream);
  border: 2px solid var(--green);
}
.btn--green:hover { background: var(--green-dk); border-color: var(--green-dk); }

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

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--trans), box-shadow var(--trans);
}

.site-nav.scrolled {
  background: var(--green-dk);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nav-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--trans);
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  opacity: 1 !important;
  background: var(--cream) !important;
  color: var(--green) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.nav-cta:hover { background: var(--sand-lt) !important; }

/* hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY — fullscreen kit component
═══════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  background: var(--green-dk);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;

  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 280ms ease, transform 280ms ease;
}

.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: opacity 200ms ease; transform: none; }
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
}

.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cream);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: auto;
}

.mobile-menu__item {
  display: block;
  padding: 1rem 0;
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--cream);
  border-bottom: 1px solid rgba(245,240,232,0.12);
  transition: color var(--trans);
}
.mobile-menu__item:hover { color: var(--sand); }

.mobile-menu__cta {
  display: block;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  background: var(--cream);
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--trans);
}
.mobile-menu__cta:hover { background: var(--sand-lt); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.0); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,46,40,.55) 0%,
    rgba(13,46,40,.45) 50%,
    rgba(13,46,40,.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
}

.hero__logo-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.hero__tagline {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-lt);
  margin-top: -0.25rem;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-cue__line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(245,240,232,0), rgba(245,240,232,0.7));
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════════════════
   SFEER GRID
═══════════════════════════════════════════════════════ */
.sfeer-grid {
  background: var(--green);
  padding: 0;
}

.card-grid {
  display: grid;
  gap: 0;
}

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

.sfeer-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.sfeer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sfeer-card:hover img { transform: scale(1.06); }

.sfeer-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(13,46,40,.85), transparent);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sfeer-card:hover figcaption { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   MENU SECTIE
═══════════════════════════════════════════════════════ */
.menu-section {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
  margin-top: 1rem;
}

.menu-col__title {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  font-weight: 600;
  font-style: italic;
  color: var(--green);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sand);
  margin-bottom: 1.5rem;
}

.menu-category { margin-bottom: 2rem; }

.menu-cat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}

.menu-list { display: flex; flex-direction: column; gap: 0.65rem; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.97rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201,185,154,.25);
}

.menu-item__name { color: var(--text); flex: 1; }

.menu-item__price {
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.92rem;
}

.menu-note {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   PHOTO BAND
═══════════════════════════════════════════════════════ */
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-band img:hover { transform: scale(1.04); }

/* ═══════════════════════════════════════════════════════
   RESERVEREN
═══════════════════════════════════════════════════════ */
.reserveren {
  background: var(--green);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.reserveren__intro {
  color: rgba(245,240,232,.75);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* Form */
.reserveer-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.form-row { display: grid; gap: 1.25rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-lt);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.875rem 1rem;
  background: rgba(245,240,232,.08);
  border: 1px solid rgba(245,240,232,.2);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: border-color var(--trans), background var(--trans);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245,240,232,.4); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(245,240,232,.12);
}

.form-field select option { background: var(--green-dk); color: var(--cream); }

.form-field textarea { resize: vertical; min-height: 90px; }

.form-success {
  padding: 1.25rem;
  background: rgba(245,240,232,.12);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  color: var(--cream);
  text-align: center;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   OVER ONS
═══════════════════════════════════════════════════════ */
.over {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) min(6vw, 80px);
}

.over__inner {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.over__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.over__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.over__text { display: flex; flex-direction: column; gap: 1rem; }

.over__text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.over__text .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════ */
.reviews {
  background: var(--green-dk);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.reviews .section-eyebrow { color: var(--sand); }
.reviews .section-title { color: var(--cream); margin-bottom: 3rem; }

.reviews .card-grid--3 {
  width: min(1200px, 92vw);
  margin-inline: auto;
  gap: 1.5rem;
  align-items: stretch;
}

.card {
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(201,185,154,.2);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  text-align: left;
}

.review-stars {
  color: #f5c842;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--cream);
  flex: 1;
}
.review-quote::before { content: '\201C'; }
.review-quote::after  { content: '\201D'; }

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201,185,154,.2);
}
.review-author strong { color: var(--cream); font-size: 0.9rem; }
.review-author span { color: var(--sand); font-size: 0.8rem; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════ */
.cta-band {
  background: var(--green);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.cta-band__text p {
  color: rgba(245,240,232,.7);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer-kit {
  background: var(--green-dk);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
}

.footer-logo { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.footer-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,.1);
}

.footer-col__title {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.footer-col address p { margin-bottom: 0.5rem; font-size: 0.93rem; color: rgba(245,240,232,.8); }
.footer-col address a { color: var(--sand-lt); transition: color var(--trans); }
.footer-col address a:hover { color: var(--cream); }

.hours-table { border-collapse: collapse; font-size: 0.88rem; width: 100%; }
.hours-table th {
  text-align: left;
  padding: 0.3rem 1rem 0.3rem 0;
  color: rgba(245,240,232,.65);
  font-weight: 400;
  white-space: nowrap;
}
.hours-table td {
  text-align: right;
  padding: 0.3rem 0;
  color: rgba(245,240,232,.9);
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245,240,232,.7);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--cream); }

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245,240,232,.2);
  border-radius: 50%;
  color: rgba(245,240,232,.7);
  transition: border-color var(--trans), color var(--trans);
}
.footer-socials a:hover { border-color: var(--sand); color: var(--sand); }

.footer-bottom {
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245,240,232,.4);
}
.footer-bottom a { color: rgba(245,240,232,.5); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu__trigger { display: flex; }

  .card-grid--3 { grid-template-columns: 1fr; }
  .sfeer-grid .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .sfeer-card { aspect-ratio: 3/4; }

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

  .over__inner { grid-template-columns: 1fr; }
  .over__image { aspect-ratio: 16/9; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .cta-band__inner { flex-direction: column; text-align: center; }
}

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

  .sfeer-grid .card-grid--3 { grid-template-columns: 1fr; }
  .sfeer-card { aspect-ratio: 16/9; }

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

  .photo-band { grid-template-columns: 1fr; height: auto; }
  .photo-band img { height: 220px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .reviews .card-grid--3 { grid-template-columns: 1fr; }

  .hero__logo-text { font-size: clamp(2.5rem, 12vw, 4rem); }
}

