/* ═══════════════════════════════════════════
   IS MORUS — STYLESHEET
   Brand: #C49A1A (gold) · #3B2E1E (dark) · #F5F0E8 (cream) · #fff
   Fonts: Playfair Display + Lato
═══════════════════════════════════════════ */

:root {
  --gold: #C49A1A;
  --gold-light: #dbb94a;
  --gold-dim: rgba(196,154,26,0.15);
  --dark: #3B2E1E;
  --dark-2: #2a2017;
  --cream: #F5F0E8;
  --cream-2: #ede6d6;
  --white: #ffffff;
  --text-dark: #2a1f10;
  --text-mid: #5a4e3a;
  --text-light: rgba(245,240,232,0.85);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(59,46,30,0.12);
  --shadow-card: 0 2px 12px rgba(59,46,30,0.10);
  --container: 1200px;
  --section-gap: 96px;
}

/* ── 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(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── IMAGE FILL SAFETY NET ── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img-wrap img, .hero__img,
.menu-img-wrap img, .over-foto .media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── CONTAINER ── */
.container { width: min(var(--container), 100% - 2 * clamp(20px, 4vw, 60px)); margin-inline: auto; }

/* ── SECTION BASE ── */
.section { padding-block: var(--section-gap); background: var(--white); }
.dark-bg { background: var(--dark); }
.cream-bg { background: var(--cream); }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .5rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--dark);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--cream); }
.section-title em { font-style: italic; color: var(--gold); }
.section-intro { max-width: 600px; color: var(--text-mid); margin-bottom: 2.5rem; font-size: 1.05rem; }
.gold-rule { width: 56px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .75rem 1.6rem; border-radius: var(--radius);
  transition: all .2s ease; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark-2); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.85); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--cream); }
.btn-lg { font-size: .9rem; padding: .9rem 2rem; }
.btn-sm { font-size: .78rem; padding: .55rem 1.2rem; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: var(--dark-2);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(20px, 4vw, 60px);
  gap: 1rem;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; font-style: italic; color: var(--white); }
.logo-sub { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.desktop-nav ul { display: flex; gap: 2rem; }
.desktop-nav a {
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.85); transition: color .2s;
}
.desktop-nav a:hover { color: var(--gold); }
.header-cta { display: none; }

@media (min-width: 900px) {
  .header-cta { display: inline-flex; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
}

/* ── HAMBURGER ── */
.mobile-menu__trigger {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
@media (min-width: 769px) { .mobile-menu__trigger { display: none; } }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ═══════════════════════════════════════════
   MOBILE MENU — FULLSCREEN OVERLAY
═══════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--dark-2);
  height: 100dvh; width: 100%;
  display: flex; align-items: stretch;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.mobile-menu__overlay.is-open { transform: translateX(0); }
.mobile-menu__overlay[aria-hidden="true"] { transform: translateX(100%); }
body.menu-open { overflow: hidden; }

.mobile-menu__panel--root {
  width: 100%; padding: 2rem clamp(20px, 6vw, 40px);
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mobile-menu__close {
  background: none; border: none; cursor: pointer; color: var(--white);
  align-self: flex-end; padding: .5rem; margin-bottom: 1.5rem;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__list { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 2rem; }
.mobile-menu__item {
  display: block; font-family: var(--font-display); font-size: 2rem; font-style: italic;
  color: var(--cream); font-weight: 600; padding: .5rem 0;
  border-bottom: 1px solid rgba(196,154,26,0.15);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: .5rem; }
.mobile-cta { align-self: flex-start; margin-top: 1rem; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero__img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  object-position: center center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,32,15,0.35) 0%,
    rgba(42,32,15,0.55) 50%,
    rgba(42,32,15,0.75) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  padding: 0 clamp(20px, 6vw, 60px);
  max-width: 800px;
}
.hero__eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); background: rgba(196,154,26,0.15);
  border: 1px solid rgba(196,154,26,0.4);
  padding: .35rem 1rem; border-radius: 2px;
}
.hero__headline {
  font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.15rem); color: rgba(245,240,232,.9);
  max-width: 560px; line-height: 1.55;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; color: var(--gold); opacity: .6; animation: bounce 2s infinite;
}
.hero__scroll-hint svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   OVER IS MORUS
═══════════════════════════════════════════ */
.over-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
@media (max-width: 900px) { .over-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.over-foto .media {
  aspect-ratio: 4/5; border-radius: 2px; overflow: hidden;
  box-shadow: var(--shadow);
}
.over-tekst p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.over-badges {
  display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap;
}
.badge {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1.2rem; background: var(--cream); border-radius: var(--radius);
  border-left: 3px solid var(--gold); box-shadow: var(--shadow-card);
}
.badge svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.badge span { font-size: .82rem; font-weight: 700; color: var(--dark); line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; }

/* ═══════════════════════════════════════════
   CARDS (AANBOD)
═══════════════════════════════════════════ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(59,46,30,.18); }

.card__img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.card:hover .card__img-wrap img { transform: scale(1.04); }
.card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,32,15,.65) 0%, transparent 55%);
}
.card__label {
  position: absolute; top: .75rem; right: .75rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: .2rem .65rem; border-radius: 2px;
}
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.card__body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--dark); }
.card__body p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.card__hours {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8rem; color: var(--text-mid);
}
.card__hours svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* ═══════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════ */
.menu-tabs {
  display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.menu-tab {
  font-family: var(--font-body); font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem 1.4rem; border-radius: var(--radius);
  border: 2px solid var(--dark); background: transparent; color: var(--dark);
  cursor: pointer; transition: all .2s;
}
.menu-tab.active,
.menu-tab:hover { background: var(--dark); color: var(--cream); }

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

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem;
  margin-bottom: 2rem;
}
.menu-item-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .2s;
  border: 1px solid rgba(59,46,30,0.08);
}
.menu-item-card:hover { transform: translateY(-3px); }
.menu-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-item-info { padding: 1rem 1.1rem; }
.menu-item-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: .4rem; gap: .5rem;
}
.menu-item-header h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); }
.price { font-weight: 700; color: var(--gold); font-size: .95rem; white-space: nowrap; }
.price::before { content: '€ '; font-size: .8em; }
.menu-item-info p { font-size: .82rem; color: var(--text-mid); line-height: 1.55; }
.menu-cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.menu-note { font-size: .82rem; color: var(--text-mid); font-style: italic; }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews-header {
  display: flex; gap: 3rem; align-items: flex-start; margin-bottom: 3rem; flex-wrap: wrap;
}
.dal-badge {
  flex-shrink: 0;
  width: 130px; height: 130px; border: 2px solid var(--gold);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 1rem; gap: 0;
}
.dal-year { font-family: var(--font-display); font-size: .8rem; font-style: italic; color: var(--gold-light); }
.dal-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.dal-sub { font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

.google-rating { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; }
.rating-text { font-size: .9rem; color: var(--cream); }
.rating-text strong { color: var(--gold); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(196,154,26,.2);
  border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .2s;
}
.review-card:hover { border-color: rgba(196,154,26,.5); }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 16px; height: 16px; }
.review-card blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1rem;
  color: var(--cream); line-height: 1.65; flex: 1;
}
.review-card cite { font-size: .8rem; color: var(--gold-light); font-style: normal; font-weight: 700; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-items { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.75rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-card); transition: box-shadow .2s;
}
.contact-item:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(196,154,26,.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item strong { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: .2rem; }
.contact-item span { font-size: .9rem; color: var(--dark); }

/* Openingstijden tabs */
.openingstijden-tabs { margin-top: 1.5rem; }
.ot-tab-btns { display: flex; gap: .5rem; margin-bottom: 1rem; }
.ot-tab-btn {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: var(--radius);
  border: 2px solid var(--dark); background: transparent; color: var(--dark);
  cursor: pointer; transition: all .2s;
}
.ot-tab-btn.active { background: var(--dark); color: var(--cream); }
.ot-panel { display: none; }
.ot-panel.active { display: block; }
.hours-table { width: 100%; font-size: .88rem; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(59,46,30,.1); }
.hours-table td { padding: .5rem .25rem; color: var(--text-dark); }
.hours-table td:first-child { color: var(--text-mid); width: 40%; }
.hours-table td:last-child { font-weight: 700; }

/* Form */
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 1.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-mid); }
.form-group label span { color: var(--gold); }
.form-group input,
.form-group textarea {
  font-family: var(--font-body); font-size: .9rem; color: var(--text-dark);
  background: var(--white); border: 1.5px solid rgba(59,46,30,0.2); border-radius: var(--radius);
  padding: .7rem .9rem; outline: none; transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

.map-embed { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-kit { padding-top: 4rem; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(196,154,26,.2);
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand { display: flex; flex-direction: column; gap: .5rem; }
.footer-brand .logo-title { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--white); }
.footer-brand .logo-sub { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.footer-brand p { font-size: .88rem; color: var(--text-light); line-height: 1.65; margin-top: .5rem; max-width: 300px; }

.footer-nav h4,
.footer-contact h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: .88rem; color: var(--text-light); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact address { font-size: .88rem; color: var(--text-light); line-height: 1.8; }
.footer-contact a { color: var(--text-light); transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom { padding: 1.25rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .78rem; color: rgba(245,240,232,.5); }
.footer-note a { color: var(--gold); }

/* ═══════════════════════════════════════════
   SCROLLED HEADER
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ── MOBILE GRID OVERRIDES ── */
@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .card__body h3 { font-size: 1rem; }
  .card__body p { font-size: .82rem; }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .badge {
    padding: .75rem 1rem;
    flex: 1 1 calc(50% - .75rem);
  }
  .over-badges { gap: .75rem; }
}
@media (max-width: 380px) {
  .card-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}
