/* 't broojke — modern redesign */
:root {
  --white: #ffffff;
  --white-soft: #f7f7f8;
  --ink: #141414;
  --ink-muted: #5c5c5c;
  --red: #bc0024;
  --red-deep: #8f001b;
  --red-soft: rgba(188, 0, 36, 0.08);
  --line: rgba(20, 20, 20, 0.1);
  --font-display: "Syne", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--red-deep);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header__inner {
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 2.4rem;
  width: auto;
}

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

.nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--red);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.35rem auto;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #1a1a1a;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.06) contrast(1.02) saturate(1.03);
}

.hero__shade {
  position: absolute;
  inset: 0;
  /* Licht gehouden zodat voorkant-foto helder blijft; tekst leesbaar links */
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.36) 0%, rgba(10, 10, 10, 0.08) 55%, rgba(10, 10, 10, 0.03) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.28) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
}

.hero__brand {
  width: min(420px, 82vw);
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.22s forwards;
}

.hero__lead {
  max-width: 34ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.34s forwards;
}

.hero .cta-row {
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.46s forwards;
}

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

/* ——— Sections ——— */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section--soft {
  background: var(--white-soft);
}

.section__inner {
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
}

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 16ch;
}

.section__intro {
  max-width: 42ch;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split--reverse .split__media {
  order: -1;
}

.split__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #ddd;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split__text h2 {
  max-width: none;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hours-list span:last-child {
  color: var(--ink-muted);
  font-weight: 500;
  text-align: right;
}

.hours-list .closed {
  color: var(--red);
  font-weight: 700;
}

/* Assortiment strip */
.assortiment {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assortiment li {
  list-style: none;
  padding: 1.5rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: -0.02em;
  border-right: 1px solid var(--line);
  text-align: center;
}

.assortiment li:last-child {
  border-right: 0;
}

/* Menu links — interaction containers */
.menu-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.menu-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
}

.menu-link span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.menu-link:hover span {
  color: var(--red);
}

/* Atmosphere band */
.atmosphere {
  position: relative;
  min-height: min(70vh, 640px);
  overflow: hidden;
  display: grid;
  place-items: end start;
  color: var(--white);
}

.atmosphere img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atmosphere__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.15) 60%);
}

.atmosphere__copy {
  position: relative;
  z-index: 1;
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
  padding: 4rem 0;
}

.atmosphere__copy h2 {
  color: var(--white);
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

.atmosphere__copy p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36ch;
  margin-top: 0.75rem;
}

/* Editorial page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--red-soft), transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 12ch;
}

.page-hero p {
  max-width: 40ch;
  font-size: 1.15rem;
  margin-top: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--red);
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.month-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.month-feature__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #222;
  position: relative;
}

.month-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.month-feature__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(188, 0, 36, 0.55));
  pointer-events: none;
}

.fb-month {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.fb-month__embed {
  background: var(--white-soft);
  border: 1px solid var(--line);
  padding: 1rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fb-month__embed .fb-page,
.fb-month__embed iframe {
  max-width: 100%;
}

.fb-month__note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
}

.fb-native-feed {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}

.fb-native-post {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
}

.fb-native-post time {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.fb-native-post__text {
  white-space: pre-wrap;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.fb-native-post__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.fb-native-empty {
  max-width: 560px;
  padding: 1.5rem;
  background: var(--white-soft);
  border: 1px solid var(--line);
}

.fb-native-empty h2 {
  margin-top: 0;
}

.fb-native-hint {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.fb-native-hint code {
  font-size: 0.85em;
  background: var(--white);
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .fb-month {
    grid-template-columns: 1fr;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffb3c0;
}

.site-footer__inner {
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.site-footer__brand img {
  height: 2.2rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer__bottom {
  padding-top: 1.25rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    color: inherit;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    background: var(--white);
    color: var(--ink);
    padding: 0.5rem var(--pad) 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .split,
  .split--reverse,
  .contact-grid,
  .month-feature,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

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

  .assortiment li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    padding-left: 0;
  }

  .hero__content {
    padding-bottom: 3.25rem;
  }

  .split__media img {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
