/* ════════════════════════════════════════════════════════════════
   Leon Luini — style.css
   Mobile-first responsive · Brand: #1c1c36 · #f08224 · #009eb0
   ════════════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --dark:         #1c1c36;
  --dark2:        #13132a;
  --dark3:        #22223e;
  --warm:         #f0ede8;
  --ink:          #e8e6e1;
  --orange:       #f08224;
  --teal:         #009eb0;
  --muted:        #8b8fa8;
  --section-blue: #2e2e52;
  --light-blue:   #ebebf2;
  --f-exo:  'Exo 2', sans-serif;
  --f-dm:   'DM Sans', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--light-blue); overflow-x: hidden; font-family: var(--f-dm); color: var(--ink); }
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); }
::selection { background: var(--orange); color: var(--dark); }

/* ── Visually hidden (screen readers only) ─────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Colour utilities ──────────────────────────────────────────── */
.c-orange { color: var(--orange); }
.c-teal   { color: var(--teal); }
.c-muted  { color: var(--muted); }
.c-dark   { color: var(--dark); }
.bg-orange { background: var(--orange); }
.bg-teal   { background: var(--teal); }

/* ── Animation delay utilities ─────────────────────────────────── */
.delay-1 { animation-delay: .3s; }
.delay-2 { animation-delay: .6s; }
.delay-3 { animation-delay: .9s; }

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes clipRevealLeft {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%       { opacity: .3; transform: scale(.65); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .4; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: .18; }
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10%  { transform: translate(-1%, -2%); }
  20%  { transform: translate(-2%,  1%); }
  30%  { transform: translate( 1%, -1%); }
  40%  { transform: translate(-1%,  2%); }
  50%  { transform: translate( 2%, -2%); }
  60%  { transform: translate(-2%,  2%); }
  70%  { transform: translate( 1%,  1%); }
  80%  { transform: translate(-1%, -2%); }
  90%  { transform: translate( 2%,  1%); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Grain overlay ─────────────────────────────────────────────── */
.grain-layer {
  position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: .26; animation: grain 10s steps(10) infinite;
}

/* ── Scroll progress bar ───────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--orange); z-index: 1000;
  width: 0%; transition: width .08s linear; pointer-events: none;
}

/* ── Fade-in sections ──────────────────────────────────────────── */
.fade-section {
  opacity: 0; transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(0.16,1,0.3,1);
}
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ── Photo placeholder ─────────────────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(145deg, #252545 0%, #1a1a38 60%, #1c1c36 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem;
}
.photo-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(240,130,36,.08) 0%, transparent 60%);
  pointer-events: none;
}
.photo-placeholder::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 60px; background: var(--orange);
}
.photo-icon    { width: 48px; height: 48px; opacity: .2; }
.photo-caption {
  font-family: var(--f-mono); font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(139,143,168,.5);
}

/* ── Real photo styles ─────────────────────────────────────────── */
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center center;
  background: var(--dark); display: block;
}
.journey-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.matthew-photo-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center center;
  background: var(--section-blue); display: block;
}

/* ════════════════════════════════════════════════════════════════
   NAV DOTS  (hidden on mobile, shown at 768 +)
   ════════════════════════════════════════════════════════════════ */
#nav-dots {
  display: none; /* mobile: hidden */
  position: fixed; left: clamp(.85rem,2.2vw,1.75rem); top: 50%;
  transform: translateY(-50%); flex-direction: column;
  align-items: center; gap: .6rem; z-index: 200;
  opacity: 0; transition: opacity .6s ease;
}
#nav-dots.visible { opacity: 1; }
.nav-dot {
  width: 5px; height: 5px; border-radius: 3px;
  background: rgba(240,130,36,.2); cursor: pointer; border: none; padding: 0;
  transition: all .35s cubic-bezier(0.16,1,0.3,1);
}
.nav-dot.active { height: 18px; background: var(--orange); }

/* ════════════════════════════════════════════════════════════════
   TOP NAV
   ════════════════════════════════════════════════════════════════ */
#top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem clamp(2rem,7vw,7rem);
  background: linear-gradient(to bottom, rgba(28,28,54,.95) 0%, transparent 100%);
  opacity: 0; transition: opacity .6s ease; pointer-events: none;
}
#top-nav.visible { opacity: 1; pointer-events: auto; }
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; padding: .15rem 0; }
.nav-logo img { height: 54px; width: auto; object-fit: contain; }
.nav-logo-fallback {
  display: none; /* shown by JS on img error */
  font-family: var(--f-exo); font-weight: 900; font-size: 1.2rem; letter-spacing: -.04em;
}
.nav-logo-fallback span { color: var(--orange); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-link {
  display: none; /* mobile: hidden */
  font-family: var(--f-dm); font-weight: 400; font-size: .8rem;
  color: rgba(232,230,225,.42); text-decoration: none; letter-spacing: .02em;
  transition: color .2s;
}
.nav-link:hover { color: var(--orange); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-orange {
  background: var(--orange); color: var(--dark); border: none;
  padding: .5rem 1.35rem; font-family: var(--f-exo); font-weight: 700;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s; text-decoration: none; display: inline-block;
}
.btn-orange:hover { background: #e07218; transform: translateY(-1px); }
.btn-teal-outline {
  background: transparent; color: var(--teal); border: 1px solid var(--teal);
  padding: .9rem 2.25rem; font-family: var(--f-exo); font-weight: 700;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-teal-outline:hover { background: rgba(0,158,176,.1); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════════
   01  HERO
   ════════════════════════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; overflow: hidden;
  background: var(--dark); display: flex; align-items: center;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .45; }
#hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; pointer-events: none; z-index: 1;
  background: linear-gradient(to left, rgba(240,130,36,.06) 0%, transparent 100%);
}
.hero-volleyball-svg {
  position: absolute; right: -8vw; top: 50%; transform: translateY(-52%);
  width: clamp(240px,42vw,580px); height: clamp(240px,42vw,580px);
  opacity: .045; pointer-events: none; z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 clamp(2rem,7vw,7rem); padding-top: 5rem;
  display: grid; grid-template-columns: 1fr; /* mobile: single col */
  gap: clamp(2rem,4vw,5rem); align-items: center;
  width: 100%; height: 100%;
}
.hero-left { display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .22em;
  color: var(--teal); text-transform: uppercase;
  margin-bottom: clamp(.8rem,2.5vh,1.5rem); opacity: 0;
}
.hero-eyebrow.in { animation: fadeUp .5s ease .25s forwards; }
.hero-name {
  display: block;
  font-family: var(--f-exo); font-weight: 900; line-height: .87; letter-spacing: -.05em;
}
.hero-name-leon {
  font-size: clamp(3.5rem,18vw,7rem); /* mobile base */
  color: var(--ink); display: block;
  clip-path: inset(0 100% 0 0);
}
.hero-name-leon.in { animation: clipRevealLeft 1s cubic-bezier(0.16,1,0.3,1) .35s forwards; }
.hero-name-luini {
  font-size: clamp(3.5rem,18vw,7rem); /* mobile base */
  color: var(--orange); display: block;
  clip-path: inset(0 100% 0 0);
}
.hero-name-luini.in { animation: clipRevealLeft 1s cubic-bezier(0.16,1,0.3,1) .6s forwards; }
.hero-tagline {
  font-family: var(--f-dm); font-weight: 300;
  font-size: clamp(.9rem,1.3vw,1.1rem); color: rgba(232,230,225,.65);
  line-height: 1.7; max-width: 44ch; margin-top: clamp(1rem,2.5vh,1.75rem); opacity: 0;
}
.hero-tagline.in { animation: fadeUp .6s ease .85s forwards; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem,3vw,2.5rem);
  margin-top: clamp(1.5rem,4vh,2.5rem); opacity: 0;
}
.hero-stats.in { animation: fadeUp .6s ease 1s forwards; }
.stat-item          { padding-left: .9rem; }
.stat-item.orange   { border-left: 2px solid var(--orange); }
.stat-item.teal     { border-left: 2px solid var(--teal); }
.stat-item.muted    { border-left: 2px solid rgba(240,130,36,.3); }
.stat-label { font-family: var(--f-mono); font-size: .57rem; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .28rem; }
.stat-val   { font-family: var(--f-exo); font-weight: 700; font-size: clamp(.8rem,1.2vw,.95rem); color: var(--ink); }
.hero-btns  { display: flex; gap: .875rem; margin-top: clamp(1.75rem,4.5vh,3rem); flex-wrap: wrap; opacity: 0; }
.hero-btns.in { animation: fadeUp .6s ease 1.2s forwards; }
.btn-hero-primary {
  background: var(--orange); color: var(--dark); border: none;
  padding: .9rem 2.25rem; font-family: var(--f-exo); font-weight: 700;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-hero-primary:hover { background: #e07218; transform: translateY(-2px); }

/* Hero photo — hidden on mobile, shown at 1024+ */
.hero-photo-wrap {
  display: none; /* mobile: hidden */
  position: relative; z-index: 3;
  height: clamp(380px,70vh,700px); border-left: 3px solid var(--orange); opacity: 0;
}
.hero-photo-wrap.in { animation: fadeUp .8s ease .7s forwards; }
.hero-photo-wrap .photo-placeholder { height: 100%; }
.hero-photo-wrap::after {
  content: ''; position: absolute; bottom: -20px; left: 20px; right: -20px; height: 40px;
  background: linear-gradient(to right, var(--orange), var(--teal));
  opacity: .15; filter: blur(20px); pointer-events: none;
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: scrollBounce 2.8s ease-in-out infinite 2.5s; pointer-events: none; opacity: 0;
}
.scroll-cue.in { opacity: .4; }
.scroll-cue-label {
  font-family: var(--f-mono); font-size: .57rem;
  color: var(--muted); letter-spacing: .18em; text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   SOCIAL PROOF STRIP
   ════════════════════════════════════════════════════════════════ */
#proof-strip {
  background: var(--orange); padding: .9rem clamp(2rem,7vw,7rem); overflow: hidden;
}
.proof-marquee-wrap { overflow: hidden; }
.proof-marquee {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 28s linear infinite; width: max-content;
}
.proof-item {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--f-exo); font-weight: 700; color: var(--dark);
}
.proof-item-num   { font-size: 1rem; letter-spacing: -.03em; }
.proof-item-sep   { font-size: .7rem; color: rgba(28,28,54,.35); }
.proof-item-label { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

/* ════════════════════════════════════════════════════════════════
   02  VERHAAL — sticky scrollytelling
   ════════════════════════════════════════════════════════════════ */
#verhaal { height: 125vh; position: relative; }
#journey-sticky {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden; background: var(--light-blue);
  display: flex; flex-direction: column; /* mobile: stacked */
}
.journey-bg-num {
  position: absolute; left: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--f-exo); font-weight: 900;
  font-size: clamp(12rem,24vw,30rem);
  color: rgba(28,28,54,.04); line-height: 1; letter-spacing: -.06em;
  pointer-events: none; user-select: none; transition: all .4s ease;
}
#journey-sticky::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--orange), var(--teal)); z-index: 10;
}
.journey-content {
  flex: 1; display: flex; align-items: flex-start; /* mobile */
  padding: 2.5rem 1.5rem; /* mobile */
  position: relative; z-index: 1;
  gap: clamp(2rem,4vw,4rem);
}
.journey-text    { flex: 0 0 auto; max-width: 520px; }
.chapter-meta    { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; }
.chapter-label   { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); transition: color .4s; }
.chapter-rule    { height: 1px; width: 32px; background: var(--orange); transition: background .4s; }
.chapter-year    { font-family: var(--f-mono); font-size: .65rem; color: rgba(28,28,54,.45); letter-spacing: .12em; }
.chapter-title   {
  font-family: var(--f-exo); font-weight: 900;
  font-size: clamp(2rem,4.5vw,4.5rem); color: var(--dark);
  line-height: .95; letter-spacing: -.04em; margin-bottom: 1.4rem;
  text-wrap: balance; transition: all .5s cubic-bezier(0.16,1,0.3,1);
}
.chapter-body    {
  font-family: var(--f-dm); font-weight: 300;
  font-size: clamp(.9rem,1.22vw,1.06rem); color: rgba(28,28,54,.68);
  line-height: 1.82; max-width: 50ch; transition: all .4s ease .1s;
}

/* Chapter photo — hidden on mobile */
.journey-photo {
  display: none; /* mobile: hidden */
  flex: 0 0 clamp(200px,28vw,380px); height: clamp(260px,50vh,520px);
  border-top: 3px solid var(--orange);
}
.journey-photo .photo-placeholder { height: 100%; }

/* Chapter index nav — stacked row on mobile */
.journey-index {
  width: 100%; flex-shrink: 0;
  border-left: none; border-top: 1px solid rgba(28,28,54,.1);
  display: flex; flex-direction: row; justify-content: center;
  flex-wrap: wrap; padding: 1.25rem 1.5rem; gap: 1.5rem;
}
.ch-nav-item  { cursor: pointer; transition: opacity .35s ease; }
.ch-nav-item.dimmed { opacity: .25; }
.ch-nav-num   { font-family: var(--f-mono); font-size: .57rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .22rem; transition: color .35s; }
.ch-nav-name  { font-family: var(--f-exo); font-size: .76rem; transition: all .35s; }
.ch-nav-name.active   { font-weight: 700; color: var(--dark); }
.ch-nav-name.inactive { font-weight: 400; color: rgba(28,28,54,.35); }
.ch-nav-line  { height: 1px; width: 20px; margin-top: .32rem; }
.progress-strip { display: none; margin-top: .75rem; } /* mobile: hidden */
.progress-pct   { font-family: var(--f-mono); font-size: .57rem; color: rgba(28,28,54,.4); letter-spacing: .1em; margin-bottom: .5rem; }
.progress-track { height: 70px; width: 2px; background: rgba(28,28,54,.1); position: relative; }
.progress-fill  { position: absolute; top: 0; left: 0; width: 2px; background: var(--orange); transition: height .08s linear; }

/* ════════════════════════════════════════════════════════════════
   03  PRESTATIES
   ════════════════════════════════════════════════════════════════ */
#prestaties {
  background: var(--warm);
  padding: clamp(5rem,11vh,9rem) clamp(2rem,7vw,7rem);
}
#prestaties::before { content: ''; display: block; height: 3px; background: var(--orange); margin-bottom: clamp(3rem,7vh,5rem); }
.prest-grid {
  display: grid; grid-template-columns: 1fr; /* mobile: single col */
  gap: clamp(3rem,6vw,6rem); align-items: start; margin-bottom: clamp(3rem,7vh,5rem);
}
.prest-heading {
  font-family: var(--f-exo); font-weight: 900;
  font-size: clamp(2.8rem,6.5vw,6.5rem); color: var(--dark);
  line-height: .92; letter-spacing: -.045em; text-wrap: balance;
}
.prest-heading .hl { color: var(--orange); }
.prest-intro {
  font-family: var(--f-dm); font-weight: 300;
  font-size: clamp(.9rem,1.25vw,1.05rem); color: rgba(28,28,54,.6);
  line-height: 1.8; max-width: 50ch;
}
.stats-row {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem,4vw,5rem);
  margin-bottom: clamp(2.5rem,6vh,4rem); padding-bottom: clamp(2rem,5vh,3rem);
  border-bottom: 1px solid rgba(28,28,54,.12);
}
.big-stat-val         { font-family: var(--f-exo); font-weight: 900; font-size: clamp(3rem,6.5vw,5.8rem); line-height: 1; letter-spacing: -.045em; }
.big-stat-val.orange  { color: var(--orange); }
.big-stat-val.teal    { color: var(--teal); }
.big-stat-val.dark    { color: var(--dark); }
.big-stat-label       { font-family: var(--f-mono); font-size: .6rem; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; margin-top: .38rem; }
.big-stat-sep         { border-left: 1px solid rgba(28,28,54,.12); padding-left: clamp(1.5rem,4vw,5rem); }
.ach-grid             { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(28,28,54,.1); }
.ach-card             { background: var(--warm); padding: clamp(1.4rem,3vw,2.5rem); cursor: default; border-top: 2px solid transparent; transition: background .22s, border-color .22s; }
.ach-card:hover       { background: #ece9e3; border-top-color: var(--orange); }
.ach-card.wide        { grid-column: span 1; } /* mobile: no span */
.ach-meta             { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .6rem; }
.ach-title            { font-family: var(--f-exo); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: .55rem; letter-spacing: -.02em; }
.ach-title.large      { font-size: clamp(1.3rem,2.3vw,1.9rem); }
.ach-title.small      { font-size: clamp(.92rem,1.5vw,1.25rem); }
.ach-desc             { font-family: var(--f-dm); font-weight: 300; font-size: .82rem; color: rgba(28,28,54,.52); line-height: 1.65; }
.ach-card.goal        { background: rgba(240,130,36,.04); border-top: 2px solid rgba(240,130,36,.35); }
.ach-card.goal:hover  { background: rgba(240,130,36,.08); border-top-color: var(--orange); }
.ach-goal-year        { font-family: var(--f-exo); font-weight: 900; font-size: 2.2rem; color: var(--orange); letter-spacing: -.05em; line-height: 1; margin-bottom: .3rem; opacity: .35; }

/* ════════════════════════════════════════════════════════════════
   04  MATTHEW
   ════════════════════════════════════════════════════════════════ */
#matthew {
  background: var(--section-blue);
  padding: clamp(5rem,11vh,9rem) clamp(2rem,7vw,7rem);
  position: relative; overflow: hidden;
}
#matthew::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--teal), var(--orange)); }
.matthew-bg {
  position: absolute; right: -2rem; bottom: -5rem;
  font-family: var(--f-exo); font-weight: 900;
  font-size: clamp(7rem,18vw,22rem);
  color: rgba(255,255,255,.022); line-height: .88; letter-spacing: -.06em;
  pointer-events: none; user-select: none; text-align: right;
}
.matthew-cols { display: flex; flex-direction: column; gap: clamp(2.5rem,6vw,6rem); position: relative; z-index: 1; }
.matthew-photo {
  width: 100%; flex: none; /* mobile */
  height: 280px;
  border-right: none; border-top: 3px solid var(--orange);
}
.matthew-photo .photo-placeholder { height: 100%; }
.matthew-text  { flex: 1; max-width: 520px; }
.matthew-section-eyebrow { font-family: var(--f-mono); font-size: .65rem; color: var(--teal); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem; }
.matthew-name {
  font-family: var(--f-exo); font-weight: 900;
  font-size: clamp(2.8rem,7vw,8rem); color: var(--ink);
  line-height: .87; letter-spacing: -.055em;
}
.matthew-name .orange { color: var(--orange); }
.paris-badge  { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; background: rgba(0,158,176,.1); border: 1px solid rgba(0,158,176,.25); padding: .45rem 1rem; }
.paris-dot    { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: pulseDot 2s ease infinite; }
.paris-label  { font-family: var(--f-mono); font-size: .62rem; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; }
.matthew-rule { height: 1px; width: clamp(40px,5vw,70px); background: rgba(240,130,36,.45); margin: 1.75rem 0; }
.matthew-body { font-family: var(--f-dm); font-weight: 300; font-size: clamp(.92rem,1.25vw,1.1rem); color: rgba(232,230,225,.62); line-height: 1.82; margin-bottom: 1.5rem; }
.matthew-quote {
  font-family: var(--f-exo); font-style: italic; font-weight: 300;
  font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--ink);
  line-height: 1.55; letter-spacing: -.01em;
  border-left: 3px solid var(--orange); padding-left: 1.25rem; margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   05  LA LANE
   ════════════════════════════════════════════════════════════════ */
#lalane {
  background: var(--section-blue);
  padding: clamp(5rem,11vh,9rem) clamp(2rem,7vw,7rem);
  border-top: 3px solid var(--orange);
  position: relative; overflow: hidden;
}
#lalane::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,130,36,.1) 0%, transparent 70%);
  pointer-events: none;
}
.lalane-grid {
  display: grid; grid-template-columns: 1fr; /* mobile: single col */
  gap: clamp(3rem,6vw,6rem); align-items: start; margin-bottom: clamp(3rem,7vh,5rem);
}
.lalane-eyebrow       { display: flex; align-items: center; gap: .85rem; margin-bottom: .9rem; }
.lalane-eyebrow-label { font-family: var(--f-mono); font-size: .65rem; color: var(--muted); letter-spacing: .22em; text-transform: uppercase; }
.lalane-logo-mark     { height: 32px; width: auto; object-fit: contain; opacity: .85; }
.lalane-heading       { font-family: var(--f-exo); font-weight: 900; font-size: clamp(2.5rem,5.5vw,5.5rem); color: var(--ink); line-height: .92; letter-spacing: -.045em; text-wrap: balance; }
.lalane-heading .hl   { color: var(--orange); }
.lalane-sub           { font-family: var(--f-dm); font-weight: 300; font-size: clamp(.88rem,1.22vw,1.02rem); color: rgba(232,230,225,.55); line-height: 1.82; max-width: 52ch; margin-top: 1.5rem; }
.lalane-grid-right    { display: flex; flex-direction: column; justify-content: flex-end; gap: 1rem; }

/* Values box */
.lalane-values-box    { background: rgba(240,130,36,.08); border: 1px solid rgba(240,130,36,.2); padding: 1.5rem; }
.lalane-values-label  { font-family: var(--f-mono); font-size: .6rem; color: var(--orange); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem; }
.lalane-values-list   { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.lalane-values-desc   { font-family: var(--f-dm); font-weight: 300; font-size: .84rem; color: rgba(232,230,225,.5); line-height: 1.65; }
.value-badge { font-family: var(--f-exo); font-weight: 700; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); border: 1px solid rgba(240,130,36,.35); padding: .38rem .85rem; }

/* Partnership rows */
.lalane-rows  { border-top: 1px solid rgba(255,255,255,.08); }
.partner-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.partner-row  {
  display: grid; grid-template-columns: 2.5rem 1fr 28px; /* mobile: no tag col */
  gap: 1.5rem; align-items: center;
  padding: clamp(1.4rem,3vh,2.25rem) 0;
  width: 100%; background: transparent; border: none; text-align: left; cursor: pointer;
  transition: background .22s;
}
.partner-row:hover { background: rgba(240,130,36,.05); }
.partner-row:hover .partner-expand-btn { border-color: rgba(240,130,36,.45); color: rgba(240,130,36,.55); }
.partner-num   { font-family: var(--f-mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em; }
.partner-title { font-family: var(--f-exo); font-weight: 700; font-size: clamp(.98rem,1.9vw,1.45rem); color: var(--ink); margin-bottom: .4rem; letter-spacing: -.025em; }
.partner-desc  { font-family: var(--f-dm); font-weight: 300; font-size: .86rem; color: rgba(232,230,225,.48); line-height: 1.62; }
.partner-tag   {
  display: none; /* mobile: hidden */
  font-family: var(--f-mono); font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; text-align: right; white-space: nowrap;
}
.partner-expand-btn {
  width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1; color: rgba(232,230,225,.3);
  transition: all .3s cubic-bezier(0.16,1,0.3,1); flex-shrink: 0; user-select: none;
  font-family: var(--f-exo); font-weight: 300;
}
.partner-item.open .partner-expand-btn { border-color: var(--orange); color: var(--orange); transform: rotate(45deg); }
.partner-detail { max-height: 0; overflow: hidden; transition: max-height .52s cubic-bezier(0.16,1,0.3,1), opacity .3s ease; opacity: 0; }
.partner-detail.open { max-height: 520px; opacity: 1; }
.partner-detail-inner { padding: .25rem 0 2rem 1.5rem; } /* mobile: less indent */
.partner-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.35rem; /* mobile: single col */
}
.partner-detail-col-label { font-family: var(--f-mono); font-size: .57rem; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; margin-bottom: .7rem; }
.partner-detail-item { font-family: var(--f-dm); font-weight: 300; font-size: .84rem; color: rgba(232,230,225,.52); line-height: 1.6; padding: .28rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.partner-detail-item::before { content: '— '; color: var(--orange); }
.partner-ideal { font-family: var(--f-dm); font-weight: 300; font-size: .8rem; color: rgba(232,230,225,.4); line-height: 1.6; }
.partner-detail-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.lalane-badge { display: flex; align-items: center; gap: .5rem; }
.lalane-badge-img   { height: 22px; width: auto; object-fit: contain; opacity: .5; }
.lalane-badge-label { font-family: var(--f-mono); font-size: .55rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.partner-cta-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--f-exo); font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
  text-decoration: none; border-bottom: 1px solid rgba(240,130,36,.35); padding-bottom: .15rem; transition: all .2s;
}
.partner-cta-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.lalane-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: clamp(2rem,5vh,3rem); flex-wrap: wrap; gap: 1.25rem; }
.values-row    { display: flex; gap: .65rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════
   06  CONTACT CTA
   ════════════════════════════════════════════════════════════════ */
#contact-cta {
  background: var(--orange);
  padding: clamp(4rem,9vh,7rem) clamp(2rem,7vw,7rem);
  display: flex; flex-direction: column; align-items: flex-start; /* mobile: column */
  gap: 3rem; position: relative; overflow: hidden;
}
#contact-cta::before {
  content: ''; position: absolute; right: -5rem; top: -5rem;
  width: 500px; height: 500px;
  background: rgba(28,28,54,.08); border-radius: 50%; pointer-events: none;
}
.cta-left    { position: relative; z-index: 1; }
.cta-pre     { font-family: var(--f-mono); font-size: .65rem; color: rgba(28,28,54,.55); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.cta-heading { font-family: var(--f-exo); font-weight: 900; font-size: clamp(2rem,4.5vw,4rem); color: var(--dark); line-height: .95; letter-spacing: -.04em; text-wrap: balance; }
.cta-sub     { font-family: var(--f-dm); font-weight: 300; font-size: clamp(.88rem,1.2vw,1rem); color: rgba(28,28,54,.65); line-height: 1.75; max-width: 50ch; margin-top: 1.25rem; }
.cta-right   { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; position: relative; z-index: 1; }
.btn-dark {
  background: var(--dark); color: var(--orange); border: none;
  padding: 1rem 2.5rem; font-family: var(--f-exo); font-weight: 700;
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s; text-decoration: none; display: inline-block;
}
.btn-dark:hover { background: #252545; transform: translateY(-2px); }
.btn-dark-outline {
  background: transparent; color: var(--dark); border: 2px solid var(--dark);
  padding: .75rem 2rem; font-family: var(--f-exo); font-weight: 700;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .2s; text-decoration: none; display: inline-block;
}
.btn-dark-outline:hover { background: rgba(28,28,54,.08); }
.cta-email { font-family: var(--f-mono); font-size: .7rem; color: rgba(28,28,54,.5); letter-spacing: .1em; }

/* ════════════════════════════════════════════════════════════════
   07  SCHEMA
   ════════════════════════════════════════════════════════════════ */
#schema { background: var(--light-blue); padding: clamp(5rem,11vh,9rem) clamp(2rem,7vw,7rem); }
#schema::before { content: ''; display: block; height: 3px; background: var(--teal); margin-bottom: clamp(2.5rem,6vh,4.5rem); }
.schema-eyebrow  { font-family: var(--f-mono); font-size: .65rem; color: var(--teal); letter-spacing: .22em; text-transform: uppercase; margin-bottom: .9rem; }
.schema-heading  { font-family: var(--f-exo); font-weight: 900; font-size: clamp(2.5rem,5.5vw,5.5rem); color: var(--dark); line-height: .92; letter-spacing: -.045em; margin-bottom: 1rem; }
.schema-live     { display: flex; align-items: center; gap: .5rem; margin-bottom: clamp(2rem,5vh,3.5rem); }
.live-dot        { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: pulseDot 2s ease infinite; flex-shrink: 0; }
.live-text       { font-family: var(--f-dm); font-weight: 300; font-size: .84rem; color: rgba(28,28,54,.55); }
.schema-header-row, .schema-row {
  display: grid; grid-template-columns: 90px 1fr 80px; /* mobile: 3 cols */
  gap: 1rem; padding: 1.1rem 1.25rem; border-bottom: 1px solid rgba(28,28,54,.1);
}
.schema-header-row { padding: .6rem 1.25rem; }
.schema-row:hover   { background: rgba(0,0,0,.04); }
.schema-th     { font-family: var(--f-mono); font-size: .57rem; color: rgba(28,28,54,.45); letter-spacing: .16em; text-transform: uppercase; }
.schema-date   { font-family: var(--f-mono); font-size: .72rem; color: var(--teal); }
.schema-name   { font-family: var(--f-exo); font-weight: 700; font-size: .9rem; color: var(--dark); letter-spacing: -.01em; }
.schema-loc    { font-family: var(--f-dm); font-weight: 300; font-size: .82rem; color: var(--muted); }
.schema-level  { display: none; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; } /* mobile: hidden */
.schema-status { display: none; align-items: center; gap: .38rem; } /* mobile: hidden */
.status-dot    { width: 5px; height: 5px; border-radius: 50%; animation: pulseDot 2s ease infinite; flex-shrink: 0; }
.status-text   { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .08em; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
footer { background: var(--section-blue); padding: clamp(3.5rem,8vh,5.5rem) clamp(2rem,7vw,7rem) clamp(1.5rem,4vh,2.5rem); }
.footer-top-bar   { height: 3px; background: linear-gradient(to right, var(--orange), var(--teal)); margin-bottom: clamp(3rem,7vh,5rem); }
.footer-grid      { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: clamp(2rem,5vh,3rem); border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 1.5rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.footer-logo-img  { height: 66px; width: auto; object-fit: contain; }
.footer-logo-text { display: none; } /* shown by JS on img error */
.footer-logo-text .l { color: var(--ink); }
.footer-logo-text .o { color: var(--orange); }
.footer-tagline   { font-family: var(--f-mono); font-size: .62rem; color: var(--muted); letter-spacing: .12em; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-sub       { font-family: var(--f-dm); font-weight: 300; font-size: .8rem; color: rgba(139,143,168,.62); line-height: 1.62; }
.footer-col-label { font-family: var(--f-mono); font-size: .57rem; color: var(--muted); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-nav-link  { display: block; font-family: var(--f-dm); font-weight: 300; font-size: .84rem; color: rgba(232,230,225,.38); text-decoration: none; margin-bottom: .5rem; transition: color .2s; }
.footer-nav-link:hover { color: var(--orange); }
.footer-social-row    { display: flex; justify-content: space-between; max-width: 210px; margin-bottom: .5rem; text-decoration: none; }
.footer-social-name   { font-family: var(--f-dm); font-weight: 300; font-size: .82rem; color: rgba(232,230,225,.38); }
.footer-social-handle { font-family: var(--f-mono); font-size: .68rem; color: var(--teal); }
.footer-contact-label { font-family: var(--f-mono); font-size: .57rem; color: var(--muted); letter-spacing: .14em; margin-bottom: .4rem; margin-top: 1.5rem; }
.footer-email         { font-family: var(--f-dm); font-weight: 400; font-size: .84rem; color: var(--orange); text-decoration: none; transition: opacity .2s; }
.footer-email:hover   { opacity: .7; }
.footer-bottom        { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-copy          { font-family: var(--f-mono); font-size: .57rem; color: var(--muted); letter-spacing: .1em; }
.footer-accent-bar    { height: 2px; width: 36px; background: var(--orange); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS — min-width: 768px
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  #nav-dots   { display: flex; }
  .nav-link   { display: inline-block; }

  .hero-name-leon,
  .hero-name-luini { font-size: clamp(4rem,10.5vw,12rem); }

  #journey-sticky   { flex-direction: row; }
  .journey-content  { padding: 0 clamp(2rem,5vw,5rem); align-items: center; }
  .journey-index    { width: clamp(140px,15vw,200px); flex-shrink: 0; flex-direction: column; border-left: 1px solid rgba(28,28,54,.1); border-top: none; padding: 0 1.5rem; gap: 1.4rem; justify-content: center; flex-wrap: nowrap; }
  .progress-strip   { display: block; }

  .ach-grid          { grid-template-columns: repeat(3,1fr); }
  .ach-card.wide     { grid-column: span 2; }

  .matthew-cols  { flex-direction: row; align-items: center; }
  .matthew-photo { flex: 0 0 clamp(200px,30vw,380px); height: clamp(300px,55vh,520px); border-right: 3px solid var(--orange); border-top: none; width: auto; }

  .partner-row              { grid-template-columns: 2.5rem 1fr auto 28px; }
  .partner-tag              { display: block; }
  .partner-detail-inner     { padding-left: 4rem; }
  .partner-detail-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }

  #contact-cta { flex-direction: row; justify-content: space-between; align-items: center; }

  .schema-header-row,
  .schema-row   { grid-template-columns: 110px 1fr 130px 90px 105px; }
  .schema-level { display: block; }
  .schema-status { display: flex; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS — min-width: 900px
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .journey-photo { display: block; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS — min-width: 1024px
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-content            { grid-template-columns: 1fr 1fr; }
  .hero-photo-wrap         { display: block; }
  .prest-grid              { grid-template-columns: 1fr 1fr; }
  .lalane-grid             { grid-template-columns: 1fr 1fr; }
}
