/* ═══════════════ Bocholter Brouwerijmuseum ═══════════════ */
:root {
  --bg: #14100c;
  --bg-alt: #1c1712;
  --surface: #241d16;
  --line: rgba(242, 233, 220, 0.12);
  --text: #f2e9dc;
  --muted: #b3a695;
  --copper: #c97f45;
  --copper-bright: #e09a58;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--copper-bright); text-decoration: none; }
a:hover { color: var(--text); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─────────── Header ─────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(20, 16, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand-mark {
  width: 42px; height: 42px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--copper-bright);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; }
.brand-text em { font-style: italic; font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--copper-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1.5px solid var(--copper);
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--copper-bright) !important;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--copper); color: #14100c !important; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.35) 40%, rgba(20,16,12,0.92) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(20,16,12,0.35), transparent 70%);
}
.hero-content {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 140px 24px 40px;
}
.hero-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper-bright);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  max-width: 14em;
}
.hero h1 .accent { color: var(--copper-bright); font-style: italic; }
.hero-sub {
  max-width: 560px;
  margin-top: 24px;
  font-size: 1.12rem;
  color: rgba(242, 233, 220, 0.85);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--copper); color: #14100c; }
.btn-primary:hover { background: var(--copper-bright); color: #14100c; }
.btn-ghost { border: 1.5px solid rgba(242,233,220,0.4); color: var(--text); }
.btn-ghost:hover { border-color: var(--copper-bright); color: var(--copper-bright); }

.hero-stats {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 56px auto 0;
  padding: 28px 24px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--copper-bright);
}
.stat span { font-size: 0.85rem; color: var(--muted); }

.scroll-hint {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(242,233,220,0.4);
  border-radius: 999px;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--copper-bright);
  animation: scrollHint 2s infinite ease-in-out;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─────────── Sections ─────────── */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper-bright);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 18em;
  margin-bottom: 22px;
}
.section-intro { max-width: 720px; color: var(--muted); margin-bottom: 48px; }
.section-outro { max-width: 720px; color: var(--muted); margin-top: 44px; font-style: italic; }

/* split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-text p { margin-bottom: 18px; color: rgba(242,233,220,0.88); }
.split-text p strong { color: var(--copper-bright); font-weight: 600; }
.split-media { position: relative; }
.split-media img {
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.split-media figcaption {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.checklist { list-style: none; margin-top: 28px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: rgba(242,233,220,0.88);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--copper-bright);
  border-bottom: 2px solid var(--copper-bright);
  transform: rotate(-45deg);
}

/* ─────────── Archive strip ─────────── */
.archive { padding: 110px 0 90px; background: var(--bg-alt); }
.archive .container { margin-bottom: 40px; }
.archive h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.archive-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) transparent;
}
.archive-strip figure {
  flex: 0 0 auto;
  width: min(420px, 78vw);
  scroll-snap-align: start;
}
.archive-strip img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
  filter: sepia(0.25) contrast(1.02);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.archive-strip figure:hover img { filter: sepia(0); transform: translateY(-4px); }
.archive-strip figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ─────────── Cards (collectie) ─────────── */
.card-grid { display: grid; gap: 28px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,127,69,0.5); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px 26px 28px; }
.card-body h3 { font-size: 1.35rem; margin-bottom: 10px; color: var(--copper-bright); }
.card-body p { font-size: 0.95rem; color: var(--muted); }

/* ─────────── Quote band ─────────── */
.band {
  position: relative;
  padding: 150px 24px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (hover: none) { .band { background-attachment: scroll; } }
.band-overlay { position: absolute; inset: 0; background: rgba(20,16,12,0.78); }
.band blockquote {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.band blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--text);
}

/* ─────────── Rooms ─────────── */
.room-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.room {
  position: relative;
  grid-column: span 2;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.room.wide { grid-column: span 6; aspect-ratio: 3 / 1; }
.room img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.room:hover img { transform: scale(1.05); }
.room-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(20,16,12,0.92));
}
.room-info h3 { font-size: 1.3rem; color: var(--text); }
.room-info p { font-size: 0.85rem; color: var(--muted); }

/* ─────────── Bezoek ─────────── */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.visit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.visit-card h3 { font-size: 1.4rem; margin-bottom: 14px; color: var(--copper-bright); }
.visit-card p { font-size: 0.96rem; color: rgba(242,233,220,0.85); margin-bottom: 14px; }
.visit-card address { font-style: normal; font-size: 0.96rem; color: rgba(242,233,220,0.85); line-height: 1.9; }
.price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--text);
  margin-top: auto;
}
.price span { font-family: var(--font-body); font-size: 0.82rem; color: var(--muted); }
.visit-note {
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper-bright) !important;
  margin-bottom: 0 !important;
}

/* ─────────── CTA ─────────── */
.cta { position: relative; padding: 150px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(20,16,12,0.82); }
.cta-inner { position: relative; text-align: center; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.cta p { color: var(--muted); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────── Footer ─────────── */
.site-footer { border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; }
.footer-tag { font-style: italic; color: var(--muted); font-size: 0.9rem; }
.site-footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.site-footer address, .site-footer p { font-style: normal; font-size: 0.95rem; color: rgba(242,233,220,0.8); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(242,233,220,0.8); }
.footer-links a:hover { color: var(--copper-bright); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─────────── Reveal animations ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; transform: none; }
  .scroll-hint span { animation: none; }
}

/* ─────────── Responsive ─────────── */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { order: -1; }
  .card-grid.three { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .room { grid-column: span 3; }
  .room.wide { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .card-grid.three { grid-template-columns: 1fr; }
  .room { grid-column: span 6; aspect-ratio: 4 / 3; }
  .room.wide { aspect-ratio: 4 / 3; }
  .brand-text strong { font-size: 0.9rem; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: rgba(20,16,12,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 1.15rem; }
}
