
/* ================================================
   BROBBEY ACADEMY — Premium Football Academy
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap');

:root {
  /* Brand colors from logo */
  --bg-black: #0a0a0a;
  --bg-dark: #121212;
  --bg-card: #1a1a1a;
  --bg-soft: #f5f2ea;
  --bg-cream: #faf8f3;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --ink-muted: #6a6a6a;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(0,0,0,0.08);

  /* The gold from the logo */
  --gold: #c8a75b;
  --gold-light: #d9bc74;
  --gold-dark: #a3863f;

  --white: #ffffff;
  --off-white: #e8e5dc;

  /* Typography */
  --font-display: 'Montserrat', 'Arial Black', sans-serif;
  --font-serif: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1360px;
  --radius: 4px;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================================================
   TYPOGRAPHY
   ================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  line-height: 1.02;
  font-weight: 700;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.display .italic {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.01em;
  display: inline-block;
  color: var(--gold);
}

[style*="font-family:var(--font-serif)"] {
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(2rem, 4.8vw, 3.8rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.75rem); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ================================================
   TOP BAR — Ticker
   ================================================ */
.ticker {
  background: var(--bg-black);
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 167, 91, 0.2);
  overflow: hidden;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scrollX 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-track span::after {
  content: '★';
  color: var(--gold);
  opacity: 0.5;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-logo-text .sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--bg-black);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid var(--gold);
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold);
}
.nav-cta svg { width: 14px; height: 14px; }

.nav-cta-mobile { display: none; }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 960px) {
  .nav-links { display: none; position: fixed; top: 78px; left: 0; right: 0; background: var(--bg-black); flex-direction: column; gap: 0; padding: 24px 32px 32px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .burger { display: flex; }
  .nav-cta { display: none; }

  .nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 18px 24px;
    background: var(--gold);
    color: var(--bg-black) !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold) !important;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-cta-mobile:hover {
    background: transparent;
    color: var(--gold) !important;
  }
  .nav-cta-mobile svg { width: 16px; height: 16px; }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--bg-black);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.48) contrast(1.1) saturate(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.95) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 35%, rgba(10,10,10,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 32px 110px;
  width: 100%;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-meta .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.5vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0.012em;
  max-width: 900px;
  margin-bottom: 32px;
}
.hero-title .line2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.hero-subtitle {
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 42px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,0.25);
}
.btn-ghost-dark:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.btn svg { width: 14px; height: 14px; }

/* Hero stats grid — sits BELOW the hero, not overlapping */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-black);
  border-top: 1px solid rgba(200,167,91,0.25);
  border-bottom: 1px solid rgba(200,167,91,0.1);
}
.hero-stat {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  position: relative;
  transition: background 0.3s;
}
.hero-stat:hover { background: rgba(255,255,255,0.03); }
.hero-stat:last-child { border-right: none; }
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.hero-stat:hover::before { width: 100%; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  display: block;
}
.hero-stat .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  font-weight: 500;
}

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 28px 24px; }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-inner { padding: 80px 24px 80px; }
}

/* ================================================
   SECTION BASICS
   ================================================ */
section { position: relative; }
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section-dark {
  background: var(--bg-black);
  color: var(--white);
}
.section-dark .lead { color: rgba(255,255,255,0.75); }
.section-dark .eyebrow { color: var(--gold); }

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

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.section-head .title h2 { margin-top: 20px; }
.section-head .description { padding-bottom: 10px; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .description { padding-bottom: 0; }
}

/* ================================================
   INTRO / ABOUT SPLIT
   ================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-split.reverse { grid-template-columns: 1fr 1.1fr; }
.intro-split.reverse .intro-split-img .corner {
  left: auto;
  right: -20px;
  border-left: none;
  border-right: 1px solid var(--gold);
}
.intro-split.reverse .intro-split-img .badge {
  right: auto;
  left: -28px;
}
.intro-split-content h2 { margin: 20px 0 32px; }
.intro-split-content p { margin-bottom: 20px; color: var(--ink-soft); font-size: 1.02rem; }
.intro-split-content p:last-child { margin-bottom: 0; }

.about-extra {
  max-width: 820px;
  margin: 64px auto 0;
}
.about-extra h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  letter-spacing: 0.012em;
  line-height: 1.1;
}
.about-extra p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-extra strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.intro-split-img {
  position: relative;
}
.intro-split-img .frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.intro-split-img .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.intro-split-img:hover .frame img { transform: scale(1.04); }
.intro-split-img .badge {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 150px;
  height: 150px;
  background: var(--bg-black);
  border: 1px solid var(--gold);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  z-index: 2;
}
.intro-split-img .badge .num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.intro-split-img .badge .txt {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.intro-split-img .corner {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  z-index: 1;
}

@media (max-width: 900px) {
  .intro-split,
  .intro-split.reverse { grid-template-columns: 1fr; gap: 50px; }
  .intro-split-img .badge { width: 110px; height: 110px; top: -15px; right: -15px; padding: 14px; }
  .intro-split.reverse .intro-split-img .badge { right: auto; left: -15px; }
  .intro-split-img .badge .num { font-size: 36px; }
}

/* ================================================
   PILLARS — 4 cards
   ================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
}
.pillar {
  background: var(--bg-black);
  padding: 0 32px 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { background: var(--bg-card); }

.pillar-img {
  margin: 0 -32px 32px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-card);
}
.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.9);
  transition: filter 0.6s ease, transform 0.7s ease;
}
.pillar:hover .pillar-img img {
  filter: none;
  transform: scale(1.04);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: rgba(200,167,91,0.12);
  margin-bottom: 16px;
}
.pillar h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 26px;
}
.pillar p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.65;
}
.pillar .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}
.pillar > .icon:first-child { margin-top: 50px; }

@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ================================================
   FOCUS AREAS - training components
   ================================================ */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-dark);
}
.focus-item {
  background: var(--bg-cream);
  padding: 48px 44px;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.focus-item:nth-child(3n) { border-right: none; }
.focus-item:nth-child(4),
.focus-item:nth-child(5),
.focus-item:nth-child(6) { border-bottom: none; }
.focus-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-black);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.focus-item:hover::after { transform: translateY(0); }
.focus-item > * { position: relative; z-index: 1; }
.focus-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.25em;
  margin-bottom: 48px;
  display: block;
  transition: color 0.3s;
  text-transform: uppercase;
}
.focus-item:hover .focus-num { color: var(--gold); }
.focus-item h4 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  color: var(--ink);
}
.focus-item:hover h4 { color: var(--white); }
.focus-item p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  transition: color 0.3s;
  max-width: 28ch;
}
.focus-item:hover p { color: rgba(255,255,255,0.65); }

@media (max-width: 820px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-item:nth-child(3n) { border-right: 1px solid var(--line-dark); }
  .focus-item:nth-child(2n) { border-right: none; }
  .focus-item:nth-child(4),
  .focus-item:nth-child(5),
  .focus-item:nth-child(6) { border-bottom: 1px solid var(--line-dark); }
  .focus-item:nth-child(5),
  .focus-item:nth-child(6) { border-bottom: none; }
}
@media (max-width: 540px) {
  .focus-grid { grid-template-columns: 1fr; }
  .focus-item { border-right: none !important; }
  .focus-item:last-child { border-bottom: none; }
}

.focus-outro {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ================================================
   QUOTE / BANNER
   ================================================ */
.quote-banner {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg-black);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.quote-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}
.quote-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1);
}
.quote-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 80%);
}
.quote-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.7;
}
.quote-text {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 32px;
}
.quote-attr {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================================================
   GALLERY MARQUEE
   ================================================ */
.gallery-strip {
  overflow: hidden;
  background: var(--bg-black);
  padding: 40px 0;
}
.gallery-track {
  display: flex;
  gap: 24px;
  animation: scrollX 60s linear infinite;
  width: max-content;
}
.gallery-track img {
  height: 340px;
  width: auto;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.4s;
}
.gallery-track img:hover { filter: brightness(1); }
@media (max-width: 720px) {
  .gallery-track img { height: 220px; }
}

/* ================================================
   CTA BIG
   ================================================ */
.cta-big {
  background: var(--gold);
  color: var(--bg-black);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-big-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-big h2 {
  font-size: clamp(2.1rem, 5.8vw, 4.4rem);
  line-height: 1;
}
.cta-big h2 .italic {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  color: var(--bg-black);
}
.cta-big p {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.75);
  margin-top: 24px;
  max-width: 420px;
}
.cta-big-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-big .btn-dark {
  background: var(--bg-black);
  color: var(--gold);
  border-color: var(--bg-black);
  padding: 22px 36px;
  justify-content: space-between;
  width: 100%;
}
.cta-big .btn-dark:hover {
  background: transparent;
  color: var(--bg-black);
  border-color: var(--bg-black);
}
.cta-big .btn-dark-outline {
  background: transparent;
  color: var(--bg-black);
  border-color: var(--bg-black);
  padding: 22px 36px;
  justify-content: space-between;
  width: 100%;
}
.cta-big .btn-dark-outline:hover {
  background: var(--bg-black);
  color: var(--gold);
}
@media (max-width: 820px) {
  .cta-big-inner { grid-template-columns: 1fr; }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg-black);
  color: var(--white);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: 'BROBBEY';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.footer-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.25s;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--bg-black);
  border-color: var(--gold);
}
.footer-socials svg { width: 14px; height: 14px; }

.footer-trust-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 18px;
  transition: background 0.3s, color 0.3s;
  align-self: flex-start;
}
.footer-trust-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-trust-btn:hover {
  background: var(--gold);
  color: var(--bg-black) !important;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-credit {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit:hover,
.footer-credit:focus-visible {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ================================================
   PAGE HEADER (for sub-pages)
   ================================================ */
.page-header {
  background: var(--bg-black);
  color: var(--white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4), rgba(10,10,10,0.95));
}
.page-header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 10px; color: rgba(255,255,255,0.3); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0.012em;
  max-width: 900px;
}
.page-header h1 .italic {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.page-header .lead {
  color: rgba(255,255,255,0.8);
  margin-top: 28px;
  max-width: 620px;
}

/* ================================================
   PROGRAM CARDS (Aanbod)
   ================================================ */
.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program {
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.program:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}
.program-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  margin-bottom: 32px;
}
.program h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.program .age {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 26px;
  font-size: 15px;
}
.program .details {
  list-style: none;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  margin-top: auto;
}
.program .details li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--line-dark);
}
.program .details li:last-child { border-bottom: none; }
.program .details .k {
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
}
.program .details .v {
  color: var(--ink);
  font-weight: 600;
}

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

/* Training cards (aanbod page) */
.training-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-top: 40px;
}
.training-cards-2 { grid-template-columns: repeat(2, 1fr); }

.training-schedule-note {
  margin: 56px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-style: italic;
  letter-spacing: 0.01em;
}
.training-card {
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}
.training-card:hover { background: var(--white); }
.training-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--line-dark);
}
.training-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) brightness(0.96);
  transition: transform 0.7s ease, filter 0.6s ease;
}
.training-card:hover .training-card-img img {
  transform: scale(1.04);
  filter: none;
}
.training-card-body {
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.training-card-body .eyebrow { margin-bottom: 14px; }
.training-card-body h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  margin-bottom: 18px;
  color: var(--ink);
}
.training-card-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.training-card-body strong {
  color: var(--gold-dark);
  font-weight: 700;
}
.training-card-meta {
  margin-top: auto;
  padding-top: 20px;
}

.training-days-label {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-weight: 600;
  color: var(--ink) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em;
}
.training-days {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px !important;
  padding: 0;
}
.training-card-meta ul.training-days:last-child { margin-bottom: 0 !important; }
.training-days li {
  padding: 8px 14px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.training-note {
  font-size: 0.85rem !important;
  color: var(--ink-muted) !important;
  margin-top: 2px !important;
  font-style: italic;
}

@media (max-width: 1000px) {
  .training-cards { grid-template-columns: 1fr; }
}

/* ================================================
   FORM (aanmelden / contact)
   ================================================ */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-wrap .info h2 { margin-bottom: 20px; }
.form-wrap .info p { color: var(--ink-soft); margin-bottom: 14px; }
.info-cards {
  margin-top: 40px;
  border-top: 1px solid var(--line-dark);
}
.info-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: flex-start;
}
.info-card .ic {
  width: 36px;
  height: 36px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 4px;
}
.info-card h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.info-card p { font-size: 16px; color: var(--ink); font-weight: 500; margin: 0; }

.trust-block {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 32px 0 8px;
  padding: 26px 28px;
  background: var(--bg-black);
  color: var(--white);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s ease, background 0.3s ease, border-left-width 0.3s ease;
}
.trust-block:hover {
  background: #1a1a1a;
  transform: translateX(2px);
  border-left-width: 4px;
}
.trust-block-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.trust-block-icon svg { width: 24px; height: 24px; }
.trust-block:hover .trust-block-icon {
  background: var(--gold);
  color: var(--bg-black);
}
.trust-block-text { flex: 1; min-width: 0; }
.trust-block-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.trust-block h4 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.trust-block p {
  font-size: 13px !important;
  color: rgba(255,255,255,0.7) !important;
  margin: 0 !important;
  font-weight: 400 !important;
  line-height: 1.55;
}
.trust-block-arrow {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.trust-block:hover .trust-block-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .trust-block { flex-wrap: wrap; padding: 20px; }
  .trust-block-arrow { display: none; }
}

form.contact-form {
  background: var(--bg-black);
  color: var(--white);
  padding: 48px;
  position: relative;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.contact-form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.contact-form-header h3 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.1;
}
.form-trust-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(200, 167, 91, 0.55);
  color: var(--gold) !important;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.form-trust-link svg { width: 12px; height: 12px; }
.form-trust-link:hover {
  background: var(--gold);
  color: var(--bg-black) !important;
  border-color: var(--gold);
}
.contact-form .form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .contact-form-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .form-trust-link { align-self: stretch; justify-content: center; margin-top: 0; }
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 0;
}
.field label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}
.field textarea {
  min-height: 90px;
  resize: vertical;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8a75b' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
.field select option { background: var(--bg-black); color: var(--white); }

.contact-form .btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.form-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

.form-section { margin-top: 28px; }
.form-section:first-of-type { margin-top: 8px; }
.form-section h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-section .field:last-child { margin-bottom: 0; }

.form-consent {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Radio-card choices (aanmelden proeftraining) */
.choice-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}
.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.choice-card input[type="radio"],
.choice-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  margin: 0;
}
.choice-card:hover { border-color: rgba(200, 167, 91, 0.5); }
.choice-card--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.choice-badge-vol {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  vertical-align: middle;
}
.choice-card:has(input:checked) {
  border-color: var(--gold);
  background: rgba(200, 167, 91, 0.08);
}
.choice-title {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.choice-sub {
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  margin-top: 6px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; gap: 50px; }
  form.contact-form { padding: 36px 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .field-row .field { margin-bottom: 18px; }
}
@media (max-width: 600px) {
  .choice-row { grid-template-columns: 1fr; }
}

/* ================================================
   PHOTO GRID / STORY
   ================================================ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 60px;
}
.story-grid > div {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.story-grid > div.tall { grid-row: span 2; aspect-ratio: 1 / 2.02; }
.story-grid > div.wide { grid-column: span 2; aspect-ratio: 2.02 / 1; }
.story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.story-grid > div:hover img { transform: scale(1.05); }

@media (max-width: 820px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid > div.wide { grid-column: span 2; }
  .story-grid > div.tall { grid-row: auto; aspect-ratio: 1; }
}

/* ================================================
   PROCESS / STEPS
   ================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.step {
  background: var(--bg-cream);
  padding: 40px 28px;
  position: relative;
  transition: background 0.3s;
}
.step:hover { background: var(--white); }
.step-num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
  margin-bottom: 24px;
}
.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.step p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.section-dark .steps {
  background: var(--line);
  border-color: var(--line);
}
.section-dark .step { background: var(--bg-black); }
.section-dark .step:hover { background: var(--bg-card); }
.section-dark .step h4 { color: var(--white); }
.section-dark .step p { color: rgba(255,255,255,0.65); }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .steps { grid-template-columns: 1fr; }
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  gap: 20px;
}
.faq-q .plus {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s;
}
.faq-q .plus::before { width: 10px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 10px; }
.faq-item.open .faq-q .plus { background: var(--ink); }
.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after { background: var(--white); }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}

/* ================================================
   GALLERY PAGE
   ================================================ */
.masonry {
  column-count: 3;
  column-gap: 8px;
}
.masonry img {
  width: 100%;
  margin-bottom: 8px;
  break-inside: avoid;
  transition: opacity 0.3s;
  cursor: pointer;
}
.masonry img:hover { opacity: 0.88; }
@media (max-width: 820px) { .masonry { column-count: 2; } }
@media (max-width: 500px) { .masonry { column-count: 1; } }

/* ================================================
   SUCCESS STATE (form)
   ================================================ */
.form-success {
  background: var(--bg-black);
  color: var(--white);
  padding: 60px 48px;
  text-align: center;
  display: none;
}
.form-success.visible { display: block; }
.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--bg-black);
}
.form-success h3 { color: var(--white); margin-bottom: 12px; font-size: 28px; }
.form-success p { color: rgba(255,255,255,0.7); max-width: 400px; margin: 0 auto; }

/* ================================================
   FADE-IN on scroll
   Only hide content IF the browser supports JS-driven reveal.
   The .js class is added by script.js before paint.
   Without JS → content just shows normally. No white boxes.
   ================================================ */
.js .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.js .fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ================================================
   BLUR PLACEHOLDERS — tiny inlined WebP thumbs
   ================================================ */
.blur-9195{background:url('data:image/webp;base64,UklGRl4BAABXRUJQVlA4IFIBAABQBwCdASogACgAPu1kqk2ppaQiMBqqqTAdiWwAqSeBB01fIHiaRJ8EFg5PpknK2tGXhZbcZiom5rZhQ/1sxPMj4x4AANxW92Z61HDM6Kwg12RtG71NQSFpSayCXYQxrp6jm2CZbEp50e33CP7R0ianac1ToVQRbJIpdRY/ZLX6NT4/imyrGLGECeTL11lriV5LUu4xO60VBL46w+ec8rQF64pU1Acp53Vb0VYxzCPNcHLHZbSA/1ZQgt8YzHs72nvZW6AnBP/2OglP2PW187QD7kn8eb68JnDPZbgufn1WTT22D9NTBGTO56xxriznIKHjwF2zBtBOX+BYpUI9agu2XMDJ4FfS81cyaDYwt9ybbpkQ1Zy/ZNx/nFbBs/moHIm+PdQaR+1kgdpWUIt2XQscjHpcrSM+zDrM1gItVJ/HG5SpLYj+snwoYOk6CPuBX8AAAA==') center/cover no-repeat;filter:none;}
.blur-9352{background:url('data:image/webp;base64,UklGRtAAAABXRUJQVlA4IMQAAACwBQCdASogACgAPu1kqk6ppaOiKqwBMB2JQBhBMYx5iJAveCGXXEY29TtEJeL6UwBTTsot0IAA/voUAcZjf+pE0lsV4jq4rdERgq8XHv0n7YlQ78RDGh8kBJVauO3AliCcPuycG72XPWP6q8WoVKaxd47lTqJL9Q7GiE5mQJEwDOmK5FXDWqDvqPgXkFYaxu+zW+QG7hb80gdfYrO+D0tR/HGpBui+Z5ZTdiJ6/aNzBAfvGITz7ptPShU3CsynRKWqjIAA') center/cover no-repeat;filter:none;}
.blur-9548{background:url('data:image/webp;base64,UklGRkwBAABXRUJQVlA4IEABAAAQBwCdASogADAAPulgpE2pJaMiNVQMASAdCWgAqSe+jm6R4eokIgvmbCuVddIWutGtRvz3DRqFIxdZTMKChTeOAAD8j+Al1C2zQF8nqwa/8DDKqZHiFtmVhYQTspyAzLhZ3pQJSdwDpfr4D6GtOEgyf/0IRh6dEl/U9ihNpgGpbpSrVVBiEubjJuf2eV7JjYm1h+i+vJDNMrFKT6Mu9xuA3IkDIKot4XWdc5P57lLwJnXgPeQbfKEQoyG8TtppZMrZw7yP1DObwY/bBiJkX0cKNRMHCdeNV9wS+Bpd7b1UfBiU7PEBlNzrWTvBCWqULZdlRV29ypssi8Ev8w0vHBF/CeiUxahtpAo3zLRdsgkWQPl0qw/hWaP7C4+a7F1m5MRUgBuK0KT0To9W536uRfL71lH2aIFrC5Dd8sT88a4AAA==') center/cover no-repeat;filter:none;}
.blur-9553{background:url('data:image/webp;base64,UklGRmABAABXRUJQVlA4IFQBAAAwBwCdASogACgAPuFeo02opSMiNVgMARAcCWIAvkswUGCaTMVhdTumjeSXyweTZE90xts2Wj/8xfFH40+ywhaGOIAA4DQUCqANV+pCRm1/tgSnxxC587j8bhtmuqA4D0aSts3H6CVldQ3uuRuV9NhCes1p0h7LV8Ki4EDm6zAfPCm7uQD61mSE8M3MpVn+LEunBlT1jaEufZrATX8KHiv/eqHbLjo2CYd6tqRA/QCnn8Vw+pmF/QcTFXU6l0kJNC2k+j+lPXYQMIKcSVqiHNVWRJnVbUDLeGjnv14LaVrFriXdwW+xgrgvCCNqNNYwijJ2k6m06XeEcaL1nxp8yzBikUJgiCWziv8NipNkmb9kEp7w/qWn0Y/1MyTb6y7APqHLTagTJ7HT1d6PF6vr6qYrKP8gv5dB0obmBAV8DM0X7yYOEbyoBpR4e4W3BRVJ6AWyAAAA') center/cover no-repeat;filter:none;}
.blur-9569{background:url('data:image/webp;base64,UklGRjoBAABXRUJQVlA4IC4BAAAQBwCdASogADAAPu1mrlKppKQiqrgIATAdiWoArDN2v/pID3t2hgPnyAc0sSM1tPjCfvMRnNUEoxlwqzvsJZCeAAD+FCBl2tv9Ha1kxhlYFtuc2Wad6D+Ckdv9fIyTnaBQga53apkS+Q8OpWLePPdcfBWthTdjXpuhAMMFHioAQY909y5VprP0rNF3DTI44yRJyQnnf0cDySyBIq10QL2AsTx+9oUM3PrTu87vQRMZ1u+lpc/5R95iizph6cLeRGUDbpsdHQPOE7llaD5A1uotpje7h3Rx1ie9xeSGh33C3NJzpTtEQu7WAtfJIYmp1IejMsLgCMczOR8evi2ksRV8LEMxYrNI0lpMBXDeqH/9/Fy7BfIPuS/JNRdxD3Y5k2QjHwlzWaQyyA7wH8tgAA==') center/cover no-repeat;filter:none;}
.blur-9581{background:url('data:image/webp;base64,UklGRuwAAABXRUJQVlA4IOAAAABwBQCdASogACgAPuVcpE2pJSOiNVv4ASAciWQAgyVFIF4RkNVzDiwKlPFhP1KSVDtbOJ2gAP7XLTSYjGfBXH0bx1zdN7B4fN0Age0HCQCJINHLNCztOvwsA2k8L/DMNjuRkM55Z0ZDmuT62Zv87JC/5eQQlHsbZ223gYDAtBOmgdWbHKnuQP9A3MKswZ9pk5k8s6a8+260rUw2VZl5TIUDlnfBMexhQePbh7btSZ0FaEm2Gg4RyFq1qDvuhiSbzEMa0V2U/w8haRJpwL+iDXsjSZjjPhvGOUZgLS1ZAAAAAA==') center/cover no-repeat;filter:none;}
.blur-9655{background:url('data:image/webp;base64,UklGRg4BAABXRUJQVlA4IAIBAAAwBgCdASogACgAPu1mqU8ppaOiMBVaqTAdiWJnNVjz381RDlEkYvgFdRCa/JUi0gOhxBRm/6t2FvlsAP45YrRhTDm2Ewnk/a4q+djAjwRb8vQDoL9ipvChA0SQKHFeF1YQ8krdJdDOamkGOOoXJENh37ypQeyg5Zzt1PyzMagoIHx6mNxsxZlt4NqipF59OY8YSO86A5byYptFURGRB8f7ETEBkStgCA3OtePqKRdexSguQr5VDl6WIsy0Z/eNxKy2i8mSjrwcUb0ilEd8qoM5A53ctS3BwoKR6op9Hr/QINB6nARZOfwpqky9SafqymEZ0gbFSX/TsAlM7mFA1vAkAAA=') center/cover no-repeat;filter:none;}
.blur-9666{background:url('data:image/webp;base64,UklGRmwBAABXRUJQVlA4IGABAAAwCACdASogACgAPuFgo02opaMiNVv4ARAcCWoAs4WzcYFcGhKt9p2WWnY9O9JQiPXbbCsAamltOUXwy+jgaAbOci15N/E/QOoPAAD9V38drfydNKpj8/K1xMcoS4KHe/86odgG5qqBspadlGmOolMBxY0ab7M0DxPCh63Q5V4J36YFqKxHRYAjaiCmQYW5vFLOEzBb4g0ch4bVTIscT92hPLNk/cgZUTMZpmlPAeZC3Y1RDgbUjh3B0AnPFWGT4MX/NY0LWgQaQvWOBfCqm1BEKWQMxoFHGcrK91mJOKEnkRvFzXJt8uSUeRgLjjIkYQpyov9XTsvEZfoy+xF/u2rzdENqpunKwc+86v0rq1MNntZULgCTXZ0rXG7D1UwKy5guLocCLw5NZSc5txjVoffZ2jPY1u6H1utcT2EO0uX6Z+ns1b9+8lMxa/wOvTdQaUSD6XFIRYQYTWZitZSGPAAA') center/cover no-repeat;filter:none;}
.blur-9692{background:url('data:image/webp;base64,UklGRuABAABXRUJQVlA4INQBAADQCACdASogADAAPu1gpE4ppSMiMBqqqTAdiWQAtRsYqUuNeXLwN0nbPilGl7fadWcyktJ098OyMwjUe2KpjML1lfkgQHcUeYUU6TzrKdQgAP79zWhorSUum2F1gbGcO5lIpNGEXRoyUd2obYuaG5z3+BBeUrUHji37hweY1HddAe2JcWwoXakxppctuTdmV46ITHOzQMJvX4yUH/pYSo0a9kz/5vrYbyEckDsWp1SpL7U3lrULWxeFjEF+c8gCIAmP26FpE5KrFMYZ967yLlTBidOgdZrMGCALJcYVW2bJ+sheYzje8jcI4qiWLfEUyjqHrZey+BEHGNNl+3XZq1qKl5S1MfpYqJlxoKuHNVi9ieCoO9iUvQCtVpa4/mMn0/SR80RmXIp3FO30wl/nYSoHoIDJyfbXLRQoPEcnGvbu2xMwzrudXCaETY6ehEiOrUgQ4I4xa5PKpn2VWMz+PNHlmmM4c0xTH7DWi5Fm299msFTku6pARjaQOU7KcoVoWHPlkTx8GEfFDOSjDGZv7hXj50tK/4z0yZ8dsIHSdDhT50YF+yoy5EYD1BZtnYqu3UbVqyxGneyzCVTtZ5VzHvJBbuvyP5ZOL+/QfqN38Qw+zGom+AA=') center/cover no-repeat;filter:none;}
.blur-9830{background:url('data:image/webp;base64,UklGRiwBAABXRUJQVlA4ICABAADwBgCdASogADAAPu1mq0+ppSOiKqoBMB2JagC29/AFobelBrk0rVefbGiqcXVNIiZZxm12+BLKuirFMD7E3w4AAP763M5GRFZGtJPq7vFoj/ASIDm2Gmo6/FTXUrqEg9FiulbW3KX9Rzr0d+T5ljFw7xvB6qgWQDEZyvunCNN4/uvIRk4ldwQhXVnZXYD0RN4tPbNl6BEYveaZ+pFtiV+E+XMN9iVt7JrHE3V2TAoPRBnd6jcZcQ3gDNiENzzoavnGi2GEaUQcwSMNyeOEX1TG7nV70elgESES/o9Oczgx8sk8ZG0Bw9iI2LbE1wo9gHeMoZt96jUi3lWESorHlmofZER6vnNpz2vsgLpmYEeX3QDzz7cuatEPjZngasVg8AA=') center/cover no-repeat;filter:none;}
.blur-9851{background:url('data:image/webp;base64,UklGRtwAAABXRUJQVlA4INAAAABwBQCdASogACgAPulgp02pJaOiNVgIASAdCUAZQAitreayNAdsXCp/tvikEIFxAnxgLwdgAP735BhraYNYiGKbdkxbQir+leXLRONELU3oW7NeKcRw45mXwCbDmT5D9miKTxtrUs1+953z+XDhLDjExjIje759A4ey8yBtnY+yXIaPy29m6vK93WJTUeynVxPuTBvAP2AY5sjrTL8cXw4DzbCjLVkwAQ1TBacud+fwIV4l8HmHZ7ZatKx4sDA0jBcOlrq5yymNOCLTy7NgAAAA') center/cover no-repeat;filter:none;}
.blur-9966{background:url('data:image/webp;base64,UklGRk4BAABXRUJQVlA4IEIBAACwBgCdASogACgAPu1gqE6ppSOiNVQIATAdiUAZx2YyDstElFpFCOFJY0vX0CPdGupMOkthqXcSBpepEhCWoAD+9xgLlKUbyKazAZtNB83H1zf/yaUYPXczExitmLsFLxxqUy1fo36i3rgf5zdyGNYb2kVppEpUASO34M5nNMmCjGD2MoOl3ZWoKThW7jjNmLoMV6ZNaPRqYN+xubRXupQfMMK9XcEWpOtOs5nM8tGA4QIMIi4b++4bJAhhWFIk3n+M2qfreBbOyh+ndHzbk35BQgZVPRtSX0sjvlHS+zRTGIamT/Xi32NbWYykAHHNfRYwfG+eKvzf/6smv0Uy1+i0klehIMYABS0TJaDyx5DlnOTy7HTTGOfD7kOU3Ovq/M9HgEaD408CPBONCcrEOf0S2HMtknyu7CcOX0OfwBrywAAA') center/cover no-repeat;filter:none;}
.blur-9975{background:url('data:image/webp;base64,UklGRhwBAABXRUJQVlA4IBABAABwBgCdASogACgAPu1oqk6ppiOiKqwBMB2JYwC2ymwBYrHP1W+QmYWkvXJ3VAbL9DLrBzmf0UMWgWZV0AAA/vlr+GKlYFevG7TxuVAKiAHl0UuPJqe9ciX7HS13WFX3/53poLffDS3IJfpxOWF2z2kW9MNRBBz225fF8BXbjDyPrV0fe4zmp2LenxLoOS0VE1rj1uMh1lONoGFtW+nwcwtU64KKs1K9h3i09478p03+Y5Jt0WvEBH4BRpXQGU//2ra2Cvne3pWHb+nWVF0F8zacqE+JapoGpIjFCihfI9wt/O3z10gZRdZSHM5mAGgmSay/IiM942xYec3rpd98Ye0D9qthiTumFOvo/iWddu7AAA==') center/cover no-repeat;filter:none;}
.blur-9995{background:url('data:image/webp;base64,UklGRhgBAABXRUJQVlA4IAwBAAAwBwCdASogACgAPu1mqE8ppaOiKqwBMB2JYwDLpd3Lh9giYxa0qKmEYc32UcUrPQsd0j06MOSkXS6jCwk1ko3lBAAA/v2iHDXWiPD8xQv4Tf2Qpb9/JzptAjkbshFNxvFGagWX1m4hRrx3If5rCj/WiUnu/+jCMDhFQlXiBdERbbWJ/t4z/sfEqVCO6K2yLpeUDl/NNnzRNlt5w1y+1IUbpdbG13oim4ZC7pacBwcXxArO1NkeYeyFCshq3R9F8sJzciOkZ7pdqeMuc53R974HDwu03H6mn8/8PVCUxueqR69pe1h8XNrNFQ+OABZyHQCOlDPgkMfb3PmDm+EsP5PzJ+y7CO+J5C3aSAAA') center/cover no-repeat;filter:none;}
.blur-9996{background:url('data:image/webp;base64,UklGRtYBAABXRUJQVlA4IMoBAAAwCQCdASogACgAPuVWpU2pJCOiNVv4ASAciWIArDOrBmkK1ud5TwNnDmONwqNtJJNQNrtfvFujuxaaokMTD8e/Xox9JnZh+yWdCo/mxpwwEU0gAP7oOfebsHGa9Mlcnm7Puwg1HwTW0hy4rQMU3a4zFIGCGa3sZbxF7XgCfcvvJPv+zazgnMRoUd/Fv2+6GOyWI8tVmpxFT/wOGrcHNcHADk7aEfKXGOsTcg+emtwpi5UcRl46ggCCsafvD0zWUGjdt5OofrfdMrC7hnPR+iSVEug1/wXZV48To1jQQuvG3pc6TM0k6STuqQnIIr8bH73NKWYgvQc/dVs9+TC01nPKUa9Lyq1rnu+wWRFNOHFw54WUjFE+EUpmQliiTtvy7A/hbkZ4kXp6UiWb6YqizG8Akl5Lw2cKMzvfIlukT4TmLT8LNerIGMW5P6MZcc9AVLpe//6mr/pdpf7EI/3Ea9gZUEl8FOpDDcbPzDE3ynnxyqtHSUNdoddCJvHaTv4Aqr3BBGtKu+XeOu939vJECbvP/vxSpwBb91FHJhILAee13AXggb3677O+hNLmKSCGto+ecruLWhMaWWdk4oNNwxHZtDfWBjns2usgAA==') center/cover no-repeat;filter:none;}
