/* ==========================================================================
   THE BOX — brand stylesheet
   Cream / charcoal / champagne-gold. Inter Tight (headings) + Inter (body).
   Self-hosted from the official brandbook: two weights only, Inter Tight
   Bold for headings/UI, Inter Regular for body copy.
   ========================================================================== */

@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/InterTight-Regular.ttf") format("truetype");
  font-weight: 100 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/InterTight-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fcfaf0;
  --cream-dim: #f3efe2;
  --charcoal: #272727;
  --charcoal-soft: #3a3835;
  --ink: #1c1b19;
  --line: rgba(39, 39, 39, 0.12);
  --line-on-dark: rgba(252, 250, 240, 0.16);
  --gold-light: #d6cdb3;
  --gold-mid: #6d5430;
  --gold-dark: #141414;
  --gold-gradient: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-mid) 58%, var(--gold-dark) 100%);
  --gold-gradient-diag: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 55%, var(--gold-dark) 100%);
  --max-w: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .tight {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  text-transform: none;
}

h1 { font-weight: 800; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1em;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  background: var(--gold-mid);
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section--dark .eyebrow { color: var(--gold-light); }
.section--dark .eyebrow::before { background: var(--gold-light); }

.section--dim { background: var(--cream-dim); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.8em;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--gold-mid);
  border-color: var(--ink);
  color: var(--cream);
}
.btn--primary:hover { filter: brightness(1.1); }

.btn--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn--outline-light {
  background: transparent;
  border-color: var(--line-on-dark);
  color: var(--cream);
}
.btn--outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.25rem, 3.2vw, 3.5rem);
  height: 92px;
  max-width: 1500px;
}

/* keep anchor targets (e.g. #proefles) clear of the sticky header on scroll-into-view */
[id] { scroll-margin-top: 112px; }

.logo { flex: none; display: block; }
.logo img, img.logo { display: block; height: clamp(28px, 2.6vw, 38px); width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.4rem;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 auto;
}

.nav-links a {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.3em 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--gold-mid);
}

.nav-actions { display: flex; align-items: center; gap: 0.7rem; flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

/* .site-header has backdrop-filter, which makes it the containing block for
   any position:fixed descendant — top/right/left still land correctly (the
   header spans the full viewport width and sticks to y:0), but bottom:0 /
   inset:0 would resolve against the header's own ~92px box instead of the
   viewport. Explicit height sidesteps that. */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  background: rgba(20, 20, 20, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 94;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 1150px) {
  .site-header .container { gap: clamp(1rem, 2.4vw, 2rem); }
  .site-nav { gap: 1rem; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { white-space: nowrap; }
  .nav-actions { gap: 0.5rem; }
  .nav-actions .btn { padding: 0.85em 1.2em; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }

  /* .site-nav becomes position:fixed below, dropping out of this flex row —
     without this, the header would only have logo + toggle left to lay out
     and justify-content:flex-start leaves the toggle stranded near the
     middle instead of pinned to the right edge. */
  .site-header .container { justify-content: space-between; }

  /* .site-nav is a fixed off-canvas drawer at all times on mobile — closed
     by default (slid out past the right edge) and slid into view on
     .is-open. Its children (nav-links, nav-actions) never need their own
     display toggling: the drawer's own transform hides/shows everything
     inside it at once, so nothing can overlap the header bar. */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(82vw, 340px);
    z-index: 95;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem var(--gutter) 2rem;
    box-shadow: -12px 0 32px rgba(20, 20, 20, 0.18);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
  }

  .site-nav.is-open { transform: translateX(0); }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3rem;
    margin: 0 0 1.75rem;
  }

  .nav-links a { font-size: 1.05rem; }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .nav-actions .btn--outline { display: inline-flex; }

  .nav-actions .btn { width: 100%; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.hero .lede {
  font-size: 1.15rem;
  max-width: 40ch;
  color: rgba(252, 250, 240, 0.78);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gold-gradient-diag);
}

.box-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-mark svg { width: 62%; height: 62%; }

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line-on-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-on-dark) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

/* ---------- real photography, graded to the brand's "gouden randje" ---------- */

.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: var(--ph-ratio, 4/5);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-pos, center);
  filter: grayscale(1) contrast(1.12) brightness(0.94);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.4s ease;
}

.photo:hover img {
  transform: scale(1.055);
  filter: grayscale(1) contrast(1.14) brightness(1);
}

/* "gouden randje": the brandbook's sparing, deliberate exception to the monochrome
   base — opt in per photo with .photo--gold, never applied as the default */
.photo--gold img {
  filter: grayscale(0.8) sepia(0.28) saturate(1.4) contrast(1.1) brightness(0.92);
}
.photo--gold:hover img {
  filter: grayscale(0.65) sepia(0.22) saturate(1.45) contrast(1.12) brightness(0.98);
}
.photo--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(198,186,159,0.28) 0%, rgba(111,86,49,0.12) 45%, rgba(37,32,25,0.55) 100%);
  mix-blend-mode: multiply;
}


/* ---------- recurring box-square motif ---------- */

.box-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: var(--motif-opacity, 1);
}

.box-motif svg { display: block; width: 100%; height: 100%; }

.box-motif--corner-tr { top: -40px; right: -40px; width: clamp(120px, 18vw, 240px); aspect-ratio: 1; }
.box-motif--corner-bl { bottom: -40px; left: -40px; width: clamp(120px, 18vw, 240px); aspect-ratio: 1; }
.box-motif--corner-br { bottom: -40px; right: -40px; width: clamp(120px, 18vw, 240px); aspect-ratio: 1; }
.box-motif--corner-tl { top: -40px; left: -40px; width: clamp(120px, 18vw, 240px); aspect-ratio: 1; }
.box-motif--center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: clamp(200px, 30vw, 420px); aspect-ratio: 1; }

.box-motif--gold { color: var(--gold-mid); opacity: 0.16; }
.box-motif--cream { color: var(--cream); opacity: 0.1; }
.box-motif--charcoal { color: var(--charcoal); opacity: 0.07; }

@media (max-width: 640px) {
  .box-motif--corner-tr, .box-motif--corner-bl,
  .box-motif--corner-br, .box-motif--corner-tl { width: 110px; }
}

.section { position: relative; overflow-x: hidden; }
.section > .container { position: relative; z-index: 1; }

/* ---------- hero background video ---------- */

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: var(--charcoal);
}

/* native local video: fills the hero edge-to-edge regardless of its own
   (portrait) source aspect ratio, no iframe/origin issues at all */
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: sepia(0.22) saturate(1.15) contrast(1.08) brightness(0.82);
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(28,27,25,0.55) 0%, rgba(28,27,25,0.72) 55%, rgba(28,27,25,0.92) 100%),
    linear-gradient(100deg, rgba(37,32,25,0.75) 0%, rgba(37,32,25,0.15) 45%, transparent 70%);
}

.hero--video { padding-top: 0; padding-bottom: 0; min-height: 92vh; display: flex; align-items: center; }
.hero--video .container { z-index: 2; padding-top: clamp(4rem, 10vw, 6rem); padding-bottom: clamp(4rem, 10vw, 6rem); }

.video-sound-toggle {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 240, 0.35);
  background: rgba(28, 27, 25, 0.45);
  backdrop-filter: blur(4px);
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.video-sound-toggle:hover { border-color: var(--gold-light); background: rgba(28, 27, 25, 0.65); }
.video-sound-toggle svg { width: 20px; height: 20px; }
.video-sound-toggle .icon-unmuted { display: none; }
.video-sound-toggle[data-muted="false"] .icon-muted { display: none; }
.video-sound-toggle[data-muted="false"] .icon-unmuted { display: block; }

/* ---------- ratio chart: strength/endurance across the six lessons ---------- */

/* ---------- ratio overview: at-a-glance strength/endurance split per les ---------- */

.ratio-overview { display: flex; flex-direction: column; gap: 1.15rem; max-width: 640px; margin: 0 auto; }

.ratio-row { display: grid; grid-template-columns: 8.5rem 1fr 6rem; align-items: center; gap: 1rem; }

.ratio-row-label { font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 0.95rem; }

.ratio-row-bar { display: flex; gap: 0.3rem; height: 10px; }
.ratio-row-bar .ratio-bar { height: 100%; }

.ratio-row-meta { font-size: 0.8rem; opacity: 0.6; text-align: right; white-space: nowrap; }

@media (max-width: 600px) {
  .ratio-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .ratio-row-meta { text-align: left; }
}

.ratio-chart { max-width: 760px; margin: 0 auto; }
.ratio-chart svg { display: block; width: 100%; height: auto; overflow: visible; }

.ratio-chart-grid { stroke: var(--line); stroke-width: 1; }

.ratio-chart-axis {
  font-family: "Inter Tight", sans-serif;
  font-size: 10px;
  fill: var(--ink);
  opacity: 0.4;
}

.ratio-chart-label {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  fill: var(--ink);
}

.ratio-chart-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ratio-chart-line--strength { stroke: var(--gold-mid); }
.ratio-chart-line--endurance { stroke: var(--charcoal); opacity: 0.55; }

.ratio-chart-dot--strength circle { fill: var(--gold-mid); }
.ratio-chart-dot--endurance circle { fill: var(--charcoal); opacity: 0.55; }

.ratio-chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.ratio-chart-legend span { display: inline-flex; align-items: center; gap: 0.5em; }
.ratio-chart-swatch { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.ratio-chart-swatch--strength { background: var(--gold-mid); }
.ratio-chart-swatch--endurance { background: var(--charcoal); }

@media (max-width: 560px) {
  .ratio-chart-label { font-size: 15px; }
  .ratio-chart-axis { font-size: 13px; }
}

/* ---------- placeholder image blocks (no photography yet) ---------- */

.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gold-gradient-diag);
  aspect-ratio: var(--ph-ratio, 4/3);
  display: flex;
  align-items: flex-end;
}

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ph--charcoal { background: linear-gradient(145deg, var(--charcoal-soft), var(--charcoal) 70%, var(--gold-dark)); }
.ph--cream { background: linear-gradient(145deg, var(--cream-dim), var(--gold-light)); }

.ph-label {
  position: relative;
  z-index: 1;
  margin: 1rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252, 250, 240, 0.85);
  background: rgba(28, 27, 25, 0.35);
  padding: 0.4em 0.7em;
  border-radius: var(--radius);
  backdrop-filter: blur(3px);
}

/* ---------- grids / cards ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--6 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-gradient-diag);
}

.section--dark .card {
  background: rgba(252, 250, 240, 0.04);
  border-color: var(--line-on-dark);
}

.card .ratio {
  display: flex;
  gap: 0.4rem;
  margin: 1rem 0;
}

.ratio-bar {
  height: 8px;
  border-radius: 1px;
}
.ratio-bar--strength { background: var(--gold-gradient-diag); }
.ratio-bar--endurance { background: var(--charcoal); }
.section--dark .ratio-bar--endurance { background: rgba(252,250,240,0.25); }

.tag {
  display: inline-block;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: var(--gold-mid);
}
.section--dark .tag { color: var(--gold-light); }

/* ---------- pricing ---------- */

.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.price-card--popular {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
  transform: translateY(-8px);
}

.price-card--popular .btn--outline { border-color: var(--line-on-dark); }

.price-badge {
  position: absolute;
  top: -13px;
  left: 1.8rem;
  background: var(--gold-gradient-diag);
  color: var(--cream);
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 0.8em;
  border-radius: var(--radius);
}

.price-amount {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -0.02em;
}
.price-amount span { font-size: 1rem; font-weight: 600; opacity: 0.6; }

.price-list li {
  padding: 0.5em 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}
.price-card--popular .price-list li { border-color: var(--line-on-dark); }
.price-list li:first-child { border-top: none; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-on-dark);
}

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

.footer-grid h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1em;
}

.footer-grid li { margin-bottom: 0.6em; color: rgba(252,250,240,0.75); }
.footer-grid a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(252,250,240,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- misc ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr 1fr; } }

.stat-num {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold-mid);
}
.section--dark .stat-num { color: var(--gold-light); }

.divider {
  height: 1px;
  background: var(--line);
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}
.section--dark .divider { background: var(--line-on-dark); }

.divider--gold {
  height: 3px;
  background: var(--gold-gradient-diag);
  border: none;
  width: 64px;
  margin: 1.4rem 0 1.8rem;
}

.gold-text {
  background: var(--gold-gradient-diag);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.page-hero h1 { text-transform: uppercase; }

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 9vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
  min-height: 29rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

table.hours { width: 100%; border-collapse: collapse; }
table.hours td { padding: 0.6em 0; border-top: 1px solid var(--line); font-size: 0.95rem; }
.section--dark table.hours td { border-color: var(--line-on-dark); }
table.hours td:last-child { text-align: right; font-weight: 600; }

.cta-banner {
  background: var(--gold-mid);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner p { font-size: 0.92rem; }

.cta-banner .btn--dark:hover { filter: brightness(1.2); }

/* Reveal-on-scroll is progressive enhancement: content is fully visible by
   default (works with no JS / JS errors). JS opts elements into the
   animated state via .reveal-pending before observing them. */
[data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-56 { max-width: 56ch; }

/* ---------- reviews ---------- */

.review-summary {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.review-summary-score {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
}

.review-summary-stars {
  color: var(--gold-mid);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.review-summary-meta {
  font-size: 0.88rem;
  opacity: 0.65;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  transition: opacity 0.3s ease;
}

@media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-gradient-diag);
}

.review-stars {
  color: var(--gold-mid);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.review-quote {
  font-size: 0.94rem;
  opacity: 0.85;
  margin: 0;
}

.review-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
}

.review-author {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
}

.review-meta {
  font-size: 0.76rem;
  opacity: 0.5;
  white-space: nowrap;
}

/* ---------- lesrooster / schedule ---------- */

.class-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.35em 0.75em;
  border-radius: var(--radius);
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  white-space: nowrap;
  margin: 0.15em 0.25em 0.15em 0;
}

.class-pill--build { background: #6d5430; }
.class-pill--move { background: #3a3835; }
.class-pill--allsides { background: linear-gradient(135deg, #6d5430, #3a3835); }
.class-pill--sidebyside { background: #141414; }
.class-pill--outside { background: #8a7a5c; }
.class-pill--inside { background: linear-gradient(135deg, #d6cdb3, #6d5430); color: var(--ink); }

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.5rem;
}
.schedule-legend-item { display: flex; align-items: center; gap: 0.5em; font-size: 0.82rem; opacity: 0.8; }
.schedule-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  opacity: 0.65;
  max-width: 60ch;
}

/* ---------- timetable: day-tab switcher + per-day time list ---------- */

.day-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.9rem 0.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  font-family: "Inter Tight", sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.day-tab:hover { border-color: var(--gold-mid); }

.day-tab-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-tab.is-active {
  background: var(--gold-gradient-diag);
  border-color: transparent;
  color: var(--cream);
}

@media (max-width: 640px) {
  .day-tabs { grid-template-columns: repeat(4, 1fr); }
}

.day-panel { display: none; }
.day-panel.is-active { display: block; }

/* groups the morning/evening slots apart within a day, aesthetic hairline + label */
.day-section-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin: 2rem 0 0.2rem;
}
.day-section-label:first-child { margin-top: 0; }
.day-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.time-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.2rem;
  align-items: stretch;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.time-row:first-child { border-top: none; }

.time-row-time {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  align-self: center;
}

/* holds one card (single class) or two side by side (simultaneous classes) */
.time-row-cards {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.time-row-card {
  flex: 1 1 220px;
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-row-card-name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.time-row-card-meta {
  font-size: 0.8rem;
  opacity: 0.8;
  white-space: nowrap;
}

.time-row-card--build { background: #6d5430; }
.time-row-card--move { background: #3a3835; }
.time-row-card--allsides { background: linear-gradient(135deg, #6d5430, #3a3835); }
.time-row-card--sidebyside { background: #141414; }
.time-row-card--outside { background: #8a7a5c; }
.time-row-card--inside { background: linear-gradient(135deg, #d6cdb3, #6d5430); color: var(--ink); }

@media (max-width: 560px) {
  .time-row { grid-template-columns: 56px 1fr; gap: 0.7rem; }
  .time-row-card { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
}

/* ---------- edge-to-edge photo blocks with bold overlaid labels ---------- */

.photo-block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.photo-block-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) { .photo-block-grid, .photo-block-grid--2 { grid-template-columns: 1fr; } }

.photo-strip-section { padding-top: 0; padding-bottom: 0; height: 100vh; }
.photo-strip-section .photo-block-grid { height: 100%; }
.photo-block-grid--6 { grid-template-rows: repeat(2, 1fr); }
.photo-strip-section .photo-block { aspect-ratio: auto; }
@media (max-width: 780px) {
  .photo-strip-section { height: auto; }
  .photo-strip-section .photo-block-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .photo-strip-section .photo-block { aspect-ratio: 3/4; }
}

.photo-block {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal);
}

.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-pos, center);
  filter: grayscale(1) contrast(1.16) brightness(0.8);
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1), filter 0.4s ease;
}

.photo-block:hover img {
  transform: scale(1.07);
  filter: grayscale(1) contrast(1.18) brightness(0.88);
}

/* "gouden randje" opt-in, same rule as .photo--gold above */
.photo-block--gold img {
  filter: grayscale(0.8) sepia(0.28) saturate(1.4) contrast(1.12) brightness(0.8);
}
.photo-block--gold:hover img {
  filter: grayscale(0.65) sepia(0.22) saturate(1.45) contrast(1.14) brightness(0.88);
}
.photo-block--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(198,186,159,0.16) 0%, rgba(37,32,25,0.2) 40%, rgba(28,27,25,0.82) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.photo-block-tag {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  z-index: 2;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.photo-block-label {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  right: 1.2rem;
  z-index: 2;
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  pointer-events: none;
}

/* ---------- modular bars motif (real logo mark, ascending bars) ---------- */

.box-motif--bars svg { width: 100%; height: 100%; }
.box-motif--bars { width: clamp(70px, 9vw, 130px); aspect-ratio: 1; }

/* ---------- lockup-crop: real brand lockups, cropped to just the grid (no text) ---------- */
/* Each lockup SVG mixes a slogan + wordmark with the grid mark in one flat file.
   The wrapper is sized to the grid's own aspect ratio and clips to it; the img
   inside is scaled/offset (plain % math, container-relative) so only the grid
   region is visible — no separate cropped image assets needed. */

.lockup-crop {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.07;
}
.lockup-crop--strong { opacity: 0.14; }
.lockup-crop img { position: absolute; max-width: none; }

.lockup-crop--corner-tr { top: -20px; right: -20px; }
.lockup-crop--corner-tl { top: -20px; left: -20px; }
.lockup-crop--corner-bl { bottom: -20px; left: -20px; }
.lockup-crop--corner-br { bottom: -20px; right: -20px; }
.lockup-crop--center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.lockup-crop--no-side { width: clamp(200px, 24vw, 340px); aspect-ratio: 0.964; }
.lockup-crop--no-side img { width: 100%; height: 144.93%; left: 0%; top: -26.09%; }

.lockup-crop--we-are-athletes { width: clamp(180px, 22vw, 320px); aspect-ratio: 0.9509; }
.lockup-crop--we-are-athletes img { width: 100%; height: 156.25%; left: 0%; top: -37.5%; }

.lockup-crop--heavy-lifting { width: clamp(200px, 24vw, 340px); aspect-ratio: 0.9428; }
.lockup-crop--heavy-lifting img { width: 100%; height: 147.06%; left: 0%; top: -29.41%; }

.lockup-crop--foundation { width: clamp(200px, 24vw, 360px); aspect-ratio: 0.6931; }
.lockup-crop--foundation img { width: 142.86%; height: 147.06%; left: -21.43%; top: -22.06%; }

.lockup-crop--inside-it { width: clamp(220px, 26vw, 400px); aspect-ratio: 0.9453; }
.lockup-crop--inside-it img { width: 270.27%; height: 100%; left: 0%; top: 0%; }

.lockup-crop--compact { width: clamp(220px, 26vw, 400px); aspect-ratio: 2.526; }
.lockup-crop--compact img { width: 312.5%; height: 100%; left: 0%; top: 0%; }

@media (max-width: 640px) {
  .lockup-crop { width: clamp(140px, 42vw, 220px) !important; }
}

/* ---------- CTA button rows: keep buttons inline, never stacked ---------- */

.btn-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
  margin-left: auto;
}

@media (max-width: 480px) {
  .btn-row { gap: 0.5rem; }
  .btn-row .btn { padding: 0.8em 1.1em; }
}

/* ==========================================================================
   BRAND EXPRESSIONS — straight from the branding revisie: the grid+wordmark
   lockup, big justified slogan typography, and the scrolling slogan ticker.
   ========================================================================== */

/* ---------- grid mark: small separator dot between ticker/marquee items ---------- */

.grid-mark {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

/* ---------- official brand lockups (grid + slogan + wordmark, from the brandbook) ---------- */

.lockup-graphic { display: block; max-width: 480px; width: 100%; height: auto; margin: 0 auto; }

/* ---------- ticker: the auto-scrolling slogan marquee (billboard device) ---------- */

.ticker {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
  padding: 1rem 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1.5rem;
}

.ticker-item .grid-mark { width: 7px; height: 7px; color: var(--gold-light); flex: none; opacity: 1; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* overlay variant: sits on the bottom edge of a photo/video section, like the
   brandbook's billboard-style application of the ticker directly over imagery */
.ticker--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(28, 27, 25, 0.82);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(252, 250, 240, 0.18);
  border-bottom: none;
}

/* on the flat-charcoal page-hero (no photo/video behind it) the semi-transparent
   overlay reads as a mismatched patch rather than a deliberate overlay — match
   the hero background exactly so the ticker sits flush as one clean surface */
.page-hero .ticker--overlay {
  background: var(--charcoal);
  backdrop-filter: none;
  border-top-color: var(--line-on-dark);
}

/* ---------- statement photo: full-bleed image with giant overlaid slogan ---------- */

.statement-photo {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--charcoal);
}
@media (max-width: 700px) { .statement-photo { aspect-ratio: 4 / 5; } }

.statement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* the statement photo is the site's flagship "gouden randje" moment */
  filter: grayscale(0.75) sepia(0.3) saturate(1.4) contrast(1.12) brightness(0.75);
}

.statement-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.05) 30%, rgba(20,20,20,0.88) 100%);
}

.statement-photo-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 3rem) var(--gutter) clamp(1.5rem, 4vw, 2.5rem);
}

.statement-photo-text span {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(1.9rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

@media (max-width: 700px) {
  .statement-photo-text { flex-direction: column; align-items: flex-start; gap: 0.15em; }
}

/* ---------- marquee wordmark: scrolling brand strip above the footer, uses the official tape.svg asset ---------- */

.marquee-wordmark {
  overflow: hidden;
  line-height: 0;
}

.marquee-wordmark-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
}

.marquee-wordmark-track img {
  height: clamp(2.4rem, 7vw, 4.5rem);
  width: auto;
  flex: none;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-wordmark-track { animation: none; }
}

/* ---------- FAQ accordion ---------- */

.faq-list { max-width: 44rem; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-mid);
  border-radius: 50%;
  color: var(--gold-mid);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: "–"; transform: rotate(180deg); }

.faq-item p {
  margin: 0.9rem 0 0;
  opacity: 0.8;
  max-width: 56ch;
}
