/* ═══════════════════════════════════════════════════════════
   DISPLAY FONT — Zuume Rough Bold
   ───────────────────────────────────────────────────────────
   Commercial typeface (Ellen Luff) — not on Google Fonts, so
   it has to be self-hosted. Buy the webfont licence, drop the
   files in  front-end/fonts/  and the site picks them up:

       fonts/ZuumeRough-Bold.woff2
       fonts/ZuumeRough-Bold.woff

   Until those files exist everything falls back to Oswald, so
   the page keeps rendering fine.
   ═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Zuume Rough';
  src: url('fonts/ZuumeRough-Bold.woff2') format('woff2'),
    url('fonts/ZuumeRough-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — derived from logo.jpeg
   Deep blood red gloves + hand-drawn black ring + bone-white
   paper. Stencil type, zero border-radius, hard edges.
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Display face: wordmark, hero title, menu. Falls back to Oswald. */
  --display: 'Zuume Rough', 'Oswald', sans-serif;

  --blood: #8e1a12;
  /* primary — gloves, buttons, rules  */
  --blood-lt: #b3241a;
  /* hover / highlight                 */
  --blood-dk: #5e0f0a;
  /* deep fills                        */
  --bone: #f2efea;
  /* logo paper white                  */
  --ink: #0e0e0e;
  /* page bg                           */
  --ink-2: #141414;
  /* section bg                        */
  --ink-3: #1b1b1b;
  /* card bg                           */
  --ink-4: #080808;
  /* footer                            */
  --muted: rgba(242, 239, 234, .45);
  --hairline: rgba(242, 239, 234, .07);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--blood-lt);
  outline-offset: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

h1,
h2,
h3,
h4,
h5,
.oswald {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

/* Wordmark + menu run on the display face (Zuume Rough).
   To put EVERY heading in Zuume, swap 'Oswald' for var(--display)
   in the rule above. */
.wordmark,
.nav-brand-text,
.footer-brand-text .oswald,
.hero-content h1,
.nav-links a,
.mobile-nav-links a {
  font-family: var(--display);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 38px;
  background: var(--blood);
  color: var(--bone);
  border: 2px solid var(--blood);
  transition: background .2s, color .2s, border-color .2s, transform .12s;
  cursor: pointer;
}

.btn:hover {
  background: var(--blood-lt);
  border-color: var(--blood-lt);
}

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

.btn--outline {
  background: transparent;
  color: var(--bone);
  border-color: rgba(242, 239, 234, .25);
}

.btn--outline:hover {
  background: transparent;
  border-color: var(--blood-lt);
  color: var(--blood-lt);
}

.btn--bone {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.btn--bone:hover {
  background: var(--blood);
  border-color: var(--blood);
  color: var(--bone);
}

/* The one oversized "punch" CTA — membership section */
.btn--punch {
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: 5px;
  padding: 24px 64px;
  position: relative;
  box-shadow: 10px 10px 0 var(--blood-dk);
}

.btn--punch:hover {
  box-shadow: 4px 4px 0 var(--blood-dk);
  transform: translate(3px, 3px);
}

.btn--punch:active {
  transform: translate(6px, 6px);
  box-shadow: 2px 2px 0 var(--blood-dk);
}

/* ── LABEL / DIVIDER ─────────────────────────────────── */
.label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  background: var(--blood);
  color: var(--bone);
  margin-bottom: 18px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--blood);
  margin: 16px 0 28px;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── DIAGONAL ACCENTS ────────────────────────────────
   Zero-size divs whose thick asymmetric borders render as
   triangles — no images, no clip-path.
   ──────────────────────────────────────────────────── */
.geo-topright,
.geo-botleft {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.geo-topright {
  top: 0;
  right: 0;
  width: 240px;
  height: 170px;
}

.geo-botleft {
  bottom: 0;
  left: 0;
  width: 220px;
  height: 170px;
}

.geo-topright::before,
.geo-topright::after,
.geo-botleft::before,
.geo-botleft::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.geo-topright::before {
  top: 0;
  right: 0;
  border-width: 0 240px 170px 0;
  border-color: transparent var(--blood) transparent transparent;
  opacity: .5;
}

.geo-topright::after {
  top: 0;
  right: 0;
  border-width: 0 150px 105px 0;
  border-color: transparent var(--ink) transparent transparent;
  opacity: .75;
}

.geo-botleft::before {
  bottom: 0;
  left: 0;
  border-width: 170px 0 0 220px;
  border-color: transparent transparent transparent var(--blood-dk);
  opacity: .55;
}

.geo-botleft::after {
  bottom: 0;
  left: 0;
  border-width: 105px 0 0 145px;
  border-color: transparent transparent transparent var(--ink);
  opacity: .7;
}

/* ── LOGO MEDALLION ──────────────────────────────────
   logo.jpeg ships on bone-white paper. Cropped to a circle
   it reads as an intentional medallion on the dark page.
   ──────────────────────────────────────────────────── */
.medallion {
  border-radius: 50%;
  background: var(--bone);
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--blood), 0 18px 50px rgba(0, 0, 0, .6);
}

/* ═══ NAV ═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(14, 14, 14, .55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  transition: background .3s, border-color .3s;
}

nav.scrolled {
  background: rgba(14, 14, 14, .94);
  border-bottom-color: rgba(142, 26, 18, .35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-brand .medallion {
  width: 52px;
  height: 52px;
  box-shadow: 0 0 0 2px var(--blood);
}

.nav-brand-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 4px;
  line-height: 1.1;
}

.nav-brand-text span {
  display: block;
  color: var(--blood-lt);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* The nav CTA is the one button that has to share a 88px bar with the brand
   and the burger, so it runs tighter than the default .btn. */
.nav-actions .btn {
  font-size: 13px;
  letter-spacing: 2px;
  padding: 12px 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 239, 234, .8);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--blood-lt);
  transition: right .25s ease;
}

.nav-links a:hover {
  color: var(--blood-lt);
}

.nav-links a:hover::after {
  right: 0;
}

/* Language toggle — hidden until the EN dictionary is filled in (see script) */
.lang-toggle {
  display: none;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--muted);
  padding: 6px 10px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}

.lang-toggle:hover {
  color: var(--bone);
  border-color: var(--blood);
}

.lang-toggle.enabled {
  display: inline-block;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  z-index: 400;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bone);
  position: absolute;
  transition: transform .4s cubic-bezier(.23, 1, .32, 1), opacity .3s, width .3s, top .3s;
}

.hamburger-line:nth-child(1) {
  top: 16px;
}

.hamburger-line:nth-child(2) {
  top: 23px;
  width: 20px;
}

.hamburger-line:nth-child(3) {
  top: 30px;
}

.hamburger.open .hamburger-line:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
  background: var(--blood-lt);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
  background: var(--blood-lt);
}

/* ── MOBILE OVERLAY (clip-path circle reveal) ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 110px 48px 48px;
  overflow-y: auto;
  clip-path: circle(0% at calc(100% - 64px) 44px);
  transition: clip-path .65s cubic-bezier(.77, 0, .175, 1);
  pointer-events: none;
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 64px) 44px);
  pointer-events: all;
}

.mobile-menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 0 0 200px;
  border-color: transparent transparent transparent rgba(142, 26, 18, .10);
  pointer-events: none;
}

.mobile-nav-links {
  list-style: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

.mobile-nav-links li {
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.mobile-nav-links li:first-child {
  border-top: 1px solid var(--hairline);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 7vw, 46px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 239, 234, .85);
  padding: 16px 0;
  transform: translateY(40px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.23, 1, .32, 1), opacity .4s, color .2s;
}

.mobile-menu.open .mobile-nav-links a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-links li:nth-child(1) a {
  transition-delay: .10s;
}

.mobile-nav-links li:nth-child(2) a {
  transition-delay: .16s;
}

.mobile-nav-links li:nth-child(3) a {
  transition-delay: .22s;
}

.mobile-nav-links li:nth-child(4) a {
  transition-delay: .28s;
}

.mobile-nav-links a:hover {
  color: var(--blood-lt);
}

.link-arrow {
  font-size: 20px;
  color: var(--blood-lt);
  opacity: 0;
  transition: opacity .2s, transform .2s;
}

.mobile-nav-links a:hover .link-arrow {
  opacity: 1;
  transform: translate(4px, -4px);
}

.mobile-cta-wrap {
  margin-top: 36px;
  z-index: 1;
  flex-shrink: 0;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.23, 1, .32, 1) .34s, opacity .4s .34s;
}

.mobile-menu.open .mobile-cta-wrap {
  transform: translateY(0);
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 0 24px;
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  /* Burger appears — shrink the CTA so it stops crowding it. */
  .nav-actions .btn {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 9px 16px;
  }

  .hamburger {
    display: flex;
  }
}

/* On a phone the brand + burger already fill the bar. Drop the CTA entirely —
   it is the first thing in the burger menu anyway, so nothing is lost. */
@media (max-width: 600px) {
  .nav-actions .btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    padding: 110px 28px 48px;
  }

  .nav-brand-text {
    font-size: 14px;
    letter-spacing: 3px;
  }
}

/* ═══ HERO ══════════════════════════════════════════════
   Asset-free by design: layered gradients + the logo.
   To use a photo instead, drop it at assets/hero.jpg and
   uncomment the background-image line in .hero-media.
   ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 90px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(142, 26, 18, .38), transparent 65%),
    radial-gradient(circle 60% at 85% 90%, rgba(142, 26, 18, .16), transparent 60%),
    linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
  /* background-image: url('assets/hero.jpg'); background-size: cover; background-position: center; */
}

/* Faint diagonal canvas texture, pure CSS */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(242, 239, 234, .022) 0 2px, transparent 2px 7px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-logo {
  width: clamp(140px, 22vw, 210px);
  height: clamp(140px, 22vw, 210px);
  margin: 0 auto 34px;
}

.hero-content h1 {
  font-size: clamp(46px, 9vw, 104px);
  font-weight: 800;
  letter-spacing: 8px;
  line-height: .95;
  margin-bottom: 18px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--blood-lt);
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(12px, 2vw, 19px);
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(242, 239, 234, .72);
  margin-bottom: 14px;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto 44px;
  color: rgba(242, 239, 234, .6);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--blood-lt), transparent);
  animation: drop 2s ease-in-out infinite;
}

@keyframes drop {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 600px) {
  .hero-scroll {
    display: none;
  }
}

/* ═══ INTRO ═════════════════════════════════════════════ */
#intro {
  background: var(--ink-2);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.intro-tekst h2 {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.08;
}

.intro-tekst h2 em {
  font-style: normal;
  color: var(--blood-lt);
}

.intro-tekst p {
  color: rgba(242, 239, 234, .65);
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.8;
}

.intro-tekst p strong {
  color: var(--bone);
  font-weight: 600;
}

.intro-punten {
  list-style: none;
  display: grid;
  gap: 14px;
}

.intro-punten li {
  background: var(--ink-3);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--blood);
  padding: 20px 24px;
  transition: border-color .25s, transform .2s;
}

.intro-punten li:hover {
  border-color: var(--blood-lt);
  transform: translateY(-3px);
}

.intro-punten h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.intro-punten p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ═══ TRAININGSSCHEMA ═══════════════════════════════════ */
#trainingsschema {
  background: var(--ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.08;
}

.section-header p {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
}

.schema-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 2;
}

.dag {
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}

.dag-kop {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 12px;
  text-align: center;
  background: var(--blood);
  color: var(--bone);
}

.dag--rust .dag-kop {
  background: var(--ink-3);
  color: var(--muted);
}

.dag-slots {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.slot {
  background: var(--ink-3);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--blood);
  padding: 14px 12px;
  transition: border-color .25s, transform .2s, background .25s;
}

.slot:hover {
  border-color: var(--blood-lt);
  background: #202020;
  transform: translateY(-2px);
}

.slot-tijd {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bone);
  margin-bottom: 5px;
}

.slot-naam {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blood-lt);
  margin-bottom: 4px;
}

.slot-meta {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

.dag-leeg {
  padding: 20px 12px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 239, 234, .22);
}

/* ── HOUSE RULES / CLOSING PERIODS ── */
.afspraken {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.afspraken h3 {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.afspraken h3::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--blood);
  margin-top: 12px;
}

.afspraken-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.afspraak {
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--blood);
  padding: 24px 26px;
  transition: border-color .25s, transform .2s;
}

.afspraak:hover {
  border-color: var(--blood-lt);
  transform: translateY(-3px);
}

.afspraak h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blood-lt);
  margin-bottom: 12px;
}

.afspraak p {
  font-size: 15px;
  color: rgba(242, 239, 234, .7);
  line-height: 1.7;
}

.afspraak-lijst {
  list-style: none;
  margin-bottom: 14px;
}

.afspraak-lijst li {
  font-size: 15px;
  color: rgba(242, 239, 234, .7);
  line-height: 1.6;
  padding: 5px 0 5px 18px;
  position: relative;
}

.afspraak-lijst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 2px;
  background: var(--blood-lt);
}

@media (max-width: 760px) {
  .afspraken-grid {
    grid-template-columns: 1fr;
  }
}

.schema-voet {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
}

.schema-voet p {
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
}

@media (max-width: 1100px) {
  .schema-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .schema-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .schema-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ LIDMAATSCHAP (blood split panel) ══════════════════ */
#lidmaatschap {
  background: var(--blood);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

#lidmaatschap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 300px 520px 0;
  border-color: transparent rgba(0, 0, 0, .16) transparent transparent;
  pointer-events: none;
}

.lid-inner {
  position: relative;
  z-index: 2;
}

.lid-inner .label {
  background: var(--ink);
  color: var(--bone);
}

.lid-inner h2 {
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.lid-inner h2 em {
  font-style: normal;
  color: var(--ink);
}

.lid-inner>p {
  max-width: 580px;
  margin: 0 auto 44px;
  color: rgba(242, 239, 234, .85);
  font-size: 17px;
}

#lidmaatschap .btn--punch {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .35);
}

#lidmaatschap .btn--punch:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.lid-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(242, 239, 234, .7);
}

/* ── APP DOWNLOAD ── */
.app-block {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(242, 239, 234, .22);
}

.app-block h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}

.app-block>p {
  font-size: 15px;
  color: rgba(242, 239, 234, .8);
  margin-bottom: 26px;
}

.app-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 26px;
  min-width: 210px;
  transition: background .2s, color .2s, transform .12s;
}

.app-badge:hover {
  background: var(--bone);
  color: var(--ink);
}

.app-badge:active {
  transform: translateY(1px);
}

.app-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.app-badge-text {
  text-align: left;
  line-height: 1.2;
}

.app-badge-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .65;
}

.app-badge-text span {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ═══ CONTACT ═══════════════════════════════════════════ */
#contact {
  background: var(--ink-2);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--ink-3);
  border: 1px solid var(--hairline);
  padding: 30px 26px;
  transition: border-color .25s, transform .2s;
}

.contact-card:hover {
  border-color: var(--blood);
  transform: translateY(-3px);
}

.contact-card h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blood-lt);
  margin-bottom: 14px;
}

.contact-card p,
.contact-card a {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(242, 239, 234, .75);
  display: block;
}

.contact-card a:hover {
  color: var(--blood-lt);
}

.contact-uren {
  list-style: none;
}

.contact-uren li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(242, 239, 234, .7);
  padding: 6px 0;
  border-bottom: 1px solid var(--hairline);
}

.contact-uren li:last-child {
  border-bottom: none;
}

.contact-uren span:last-child {
  color: var(--muted);
}

.map-wrap {
  position: relative;
  z-index: 2;
  border: 1px solid var(--hairline);
  background: var(--ink-3);
  height: 380px;
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Dark-mode the stock Google tiles so they sit in the page. Drop this
     line for default colours. */
  filter: invert(92%) hue-rotate(180deg) saturate(.75) contrast(.92);
}

@media (max-width: 600px) {
  .map-wrap {
    height: 300px;
  }
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}

.socials a:hover {
  border-color: var(--blood);
  color: var(--bone);
  background: var(--blood);
}

.socials svg {
  width: 18px;
  height: 18px;
}

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

/* ═══ FOOTER ════════════════════════════════════════════ */
footer {
  background: var(--ink-4);
  padding: 54px 0 30px;
  border-top: 1px solid var(--hairline);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .medallion {
  width: 62px;
  height: 62px;
  box-shadow: 0 0 0 2px var(--blood);
}

.footer-brand-text .oswald {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 4px;
}

.footer-brand-text p {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--blood-lt);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 11px;
  color: rgba(242, 239, 234, .28);
}

.footer-bottom a:hover {
  color: var(--muted);
}

/* ═══ SCROLL REVEAL ═════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.23, 1, .32, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero-scroll::after {
    animation: none;
  }
}