/* ============================================================
   THE NORDIC CHALLENGE — Design System
   Palette: Black / Yellow #FFE234 / White
   Fonts: Anton (display) · Inter (body)
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --black-soft:  #141414;
  --black-card:  #1C1C1C;
  --yellow:      #FFE234;
  --yellow-dark: #E6CB00;
  --white:       #FFFFFF;
  --white-60:    rgba(255,255,255,0.6);
  --white-30:    rgba(255,255,255,0.3);
  --white-10:    rgba(255,255,255,0.08);

  --font-display: 'Anton', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w:    1200px;
  --sec-v:    clamp(80px, 10vw, 140px);
  --pad-h:    clamp(20px, 5vw, 80px);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h); }
.section { padding: var(--sec-v) 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-yellow { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn-outline-yellow:hover { background: var(--yellow); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--white-30); }
.btn-dark:hover { border-color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-h);
  height: 72px;
  background: var(--black);
  border-bottom: 1px solid var(--white-10);
}
.nav-logo img { height: 60px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--white-60); transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}
.nav-mobile a[aria-current="page"] { color: var(--yellow); }
.nav-links .nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
}
.nav-links .nav-cta:hover { background: var(--yellow-dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ──────────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 72px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: clamp(22px, 5vw, 34px); font-weight: 800; color: var(--white); transition: color 0.2s; }
.nav-mobile a:hover { color: var(--yellow); }

/* ── FADE IN ─────────────────────────────────────────────────── */
html.js .fade-in,
html.js .fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .fade-in.visible,
html.js .fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.1) 30%,
    rgba(10,10,10,0.75) 70%,
    rgba(10,10,10,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-h);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 160px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--white-60);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.hero-quote {
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 600;
  color: var(--yellow);
  font-style: italic;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.scroll-indicator { position: absolute; bottom: 32px; right: var(--pad-h); z-index: 2; }
.scroll-line { width: 1px; height: 48px; background: var(--yellow); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── NUMBERS ─────────────────────────────────────────────────── */
.numbers { background: var(--black-soft); padding: clamp(60px, 8vw, 100px) 0; }
.numbers-hero {
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.number-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}
.number-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.number-sub { font-size: 14px; color: var(--white-60); font-weight: 400; line-height: 1.6; margin-top: 16px; }

.numbers-invite {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.numbers-invite em {
  color: var(--yellow);
  font-style: normal;
  display: block;
}

/* ── NUMBERS CTA ─────────────────────────────────────────────── */
.numbers-cta {
  text-align: center;
  padding: clamp(40px, 5vw, 60px) var(--pad-h) clamp(60px, 8vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── NAV INSTAGRAM ICON ──────────────────────────────────────── */
.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--white-60);
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav-instagram:hover { color: var(--yellow); }
.nav-instagram svg { display: block; }

/* ── STORYTELLING ─────────────────────────────────────────────── */
.storytelling {
  background: var(--black);
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--white-10);
}
.storytelling .container { max-width: 760px; margin: 0 auto; padding: 0 var(--pad-h); }
.storytelling-header { margin-bottom: 52px; }
.storytelling-header .eyebrow { margin-bottom: 16px; }
.storytelling-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.storytelling-title em { color: var(--yellow); font-style: normal; }
.storytelling-text {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.85;
}
.storytelling-text p { margin-bottom: 28px; }
.storytelling-text p:last-child { margin-bottom: 0; }
.storytelling-text strong { color: var(--white); font-weight: 600; }
.storytelling-cta { margin-top: 52px; }

/* ── PHOTO BREAK ─────────────────────────────────────────────── */
/* ── Photo strip (full-width image, no text) ── */
.photo-strip { line-height: 0; padding: 0 var(--pad-h); }
.photo-strip-img { width: 100%; height: clamp(280px, 45vw, 600px); object-fit: cover; object-position: center; display: block; border-radius: 16px; }

.photo-break {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.photo-break-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.30) 0%,
    rgba(10,10,10,0.25) 50%,
    rgba(10,10,10,0.55) 100%
  );
}
.photo-break-content {
  position: relative;
  z-index: 2;
  padding: 80px var(--pad-h);
  max-width: 720px;
}
.photo-break-quote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
}
.photo-break-quote em { color: var(--yellow); font-style: normal; }
.photo-break-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
}

/* ── FLORIAN SECTION ─────────────────────────────────────────── */
.florian-section { background: var(--black); padding: var(--sec-v) 0; }
.florian-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.florian-text .eyebrow { margin-bottom: 24px; }
.florian-text h2 { font-size: clamp(30px, 4vw, 52px); color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.florian-text p { font-size: 16px; color: var(--white-60); line-height: 1.8; margin-bottom: 20px; }
.florian-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--yellow);
  line-height: 1.2;
  margin: 36px 0;
  padding-left: 24px;
  border-left: 3px solid var(--yellow);
}
.florian-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.florian-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--black-soft);
}
.florian-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

/* ── HOW TO JOIN ─────────────────────────────────────────────── */
.how-section { background: var(--black-soft); padding: var(--sec-v) 0; }
.how-section .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h); }
.how-header { margin-bottom: clamp(48px, 6vw, 80px); }
.how-header .eyebrow { margin-bottom: 20px; }
.how-header h2 { font-size: clamp(30px, 5vw, 60px); color: var(--white); max-width: 700px; line-height: 1.1; }
.how-header h2 em { color: var(--yellow); font-style: normal; }
.how-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.how-col { background: var(--black-card); padding: clamp(32px, 4vw, 52px); }
.how-col:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.how-col:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.how-col-num { font-family: var(--font-display); font-size: 52px; color: var(--yellow); opacity: 0.25; line-height: 1; margin-bottom: 20px; }
.how-col h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -0.01em; }
.how-col p { font-size: 15px; color: var(--white-60); line-height: 1.75; }

/* ── ROUTE ───────────────────────────────────────────────────── */
.route-section { background: var(--black); padding: var(--sec-v) 0; }
.route-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.route-discipline { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--white-10); }
.route-discipline:last-of-type { border-bottom: none; }
.route-dash { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.route-discipline-content { flex: 1; }
.route-distance { display: block; font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.route-desc { display: block; font-size: 14px; color: var(--white); line-height: 1.6; margin-bottom: 6px; }
.route-cities { display: block; font-size: 13px; color: var(--white-60); line-height: 1.7; }
.route-join {
  display: inline-block;
  color: var(--yellow);
  border: 1.5px solid currentColor;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 4px;
  transition: background 0.2s, color 0.2s;
}
.route-join:hover { background: currentColor; color: var(--black); }
.route-discipline--bike .route-join { color: #E84545; }

/* sport colours */
.route-discipline--swim .route-dash,
.route-discipline--swim .route-distance { color: #4EAED4; }
.route-discipline--bike .route-dash,
.route-discipline--bike .route-distance { color: #E84545; }
.route-discipline--run .route-dash,
.route-discipline--run .route-distance { color: var(--yellow); }

.route-links { display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.route-link { font-size: 13px; font-weight: 600; color: var(--yellow); text-decoration: underline; text-underline-offset: 4px; transition: opacity 0.2s; }
.route-link:hover { opacity: 0.7; }
.route-path { stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 2s ease; }
.route-path.drawn { stroke-dashoffset: 0; }

/* ── JOIN CARDS ──────────────────────────────────────────────── */
.join-section { background: var(--black-soft); padding: var(--sec-v) 0; }
.join-section .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h); }
.join-headline { font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: clamp(36px, 5vw, 60px); max-width: 600px; line-height: 1.15; }
.join-headline em { color: var(--yellow); font-style: normal; }
.join-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.join-card {
  position: relative;
  overflow: hidden;
  background-color: var(--black-card);
  background-size: cover;
  background-position: center;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s;
}
.join-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
  transition: background 0.3s;
}
.join-card:hover::before { background: rgba(10,10,10,0.65); }
.join-card:hover { transform: translateY(-2px); }
.join-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.join-card:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.join-card > * { position: relative; z-index: 1; }
.join-card-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); }
.join-card-title { font-size: clamp(17px, 1.8vw, 22px); font-weight: 700; color: var(--white); letter-spacing: -0.01em; line-height: 1.2; }
.join-card-body { font-size: 14px; color: var(--white-60); line-height: 1.7; flex: 1; }
.join-card-link { font-size: 13px; font-weight: 700; color: var(--yellow); margin-top: 8px; }

/* ── ROUTE IMAGE ─────────────────────────────────────────────── */
.route-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* ── PARTNERS ────────────────────────────────────────────────── */
.partners-section { background: var(--black); padding: var(--sec-v) 0; text-align: center; }
.partners-section .container { max-width: 800px; margin: 0 auto; padding: 0 var(--pad-h); }
.partners-section .eyebrow { margin-bottom: 40px; }
.partners-empty-headline { font-size: clamp(28px, 4vw, 52px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.1; }
.partners-empty-body { font-size: 17px; color: var(--white-60); line-height: 1.8; margin-bottom: 40px; }

/* ── JOURNAL ─────────────────────────────────────────────────── */
.journal { background: var(--black-soft); padding: var(--sec-v) 0; text-align: center; }
.journal .container { max-width: 680px; margin: 0 auto; padding: 0 var(--pad-h); }
.journal-date { margin-bottom: 20px; }
.journal-headline { font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.1; }
.journal-body { font-size: 16px; color: var(--white-60); line-height: 1.8; margin-bottom: 40px; }
.journal-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.journal-link { font-size: 14px; font-weight: 600; color: var(--yellow); text-decoration: underline; text-underline-offset: 4px; transition: opacity 0.2s; }
.journal-link:hover { opacity: 0.7; }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--black); }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.45); }
.final-cta-content { position: relative; z-index: 2; padding: 80px var(--pad-h); }
.final-cta-headline { font-family: var(--font-display); font-size: clamp(52px, 9vw, 110px); color: var(--yellow); line-height: 0.95; margin-bottom: 16px; }
.final-cta-sub { font-size: clamp(22px, 3vw, 40px); font-weight: 300; color: var(--white); margin-bottom: 52px; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #000; border-top: 1px solid var(--white-10); padding: clamp(60px, 8vw, 100px) 0 0; }
.footer .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 60px); padding-bottom: 60px; }
.footer-logo img { height: 52px; width: auto; opacity: 0.9; margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: var(--white-60); line-height: 1.7; max-width: 260px; }
.footer-col-title { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--white-60); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--white-10); padding: 24px var(--pad-h); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--white-30); }

/* ── ROUTE PREVIEW (below hero) ─────────────────────────────── */
.route-preview {
  background: var(--black);
  display: flex;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) var(--pad-h);
  border-bottom: 1px solid var(--white-10);
}
.route-preview-inner { display: flex; justify-content: center; width: 100%; }
.route-preview-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

/* ── SPORT SELECTOR ──────────────────────────────────────────── */
.sport-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.sport-option {
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 32px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.sport-option:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,226,52,0.08);
  transform: translateY(-1px);
}
.sport-option.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-1px);
}

/* ── JOIN FORM PAGE ──────────────────────────────────────────── */
.form-page { min-height: 100vh; padding-top: 72px; background: var(--black); }
.form-page-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 72px); }
.form-page-left { background: var(--black-soft); padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.form-page-left .eyebrow { margin-bottom: 24px; }
.form-page-left h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; }
.form-page-left h1 em { color: var(--yellow); font-style: normal; }
.form-page-left p { font-size: 16px; color: var(--white-60); line-height: 1.8; margin-bottom: 16px; max-width: 400px; }
.form-page-left .form-quote { font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px); color: var(--yellow); line-height: 1.2; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--white-10); }
.form-page-right { background: var(--black); padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.form-right-title { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 32px; }
.join-form { display: flex; flex-direction: column; gap: 20px; max-width: 420px; width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-60); }
.form-group input { background: var(--black-soft); border: 1px solid var(--white-10); border-radius: var(--radius-md); padding: 14px 16px; font-size: 15px; color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input:focus { border-color: var(--yellow); }
.form-group input::placeholder { color: var(--white-30); }
.form-group textarea { background: var(--black-soft); border: 1px solid var(--white-10); border-radius: var(--radius-md); padding: 14px 16px; font-size: 15px; color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; resize: vertical; min-height: 100px; }
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea::placeholder { color: var(--white-30); }
.form-group select { background: var(--black-soft); border: 1px solid var(--white-10); border-radius: var(--radius-md); padding: 14px 16px; font-size: 15px; color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select:focus { border-color: var(--yellow); }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group select optgroup { background: #1a1a1a; color: var(--white-60); font-size: 12px; }
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; padding: 18px; font-size: 16px; }
.form-note { font-size: 12px; color: var(--white-30); text-align: center; line-height: 1.5; }
.form-privacy { font-size: 11px; color: var(--white-30); text-align: center; line-height: 1.5; margin-top: 12px; }
.form-privacy a { color: var(--white-30); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: var(--white-60); }

/* ── THANK YOU PAGE ──────────────────────────────────────────── */
.thankyou { min-height: 100vh; padding-top: 72px; display: flex; align-items: center; justify-content: center; background: var(--black); text-align: center; }
.thankyou-content { padding: 60px var(--pad-h); max-width: 560px; }
.thankyou-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--yellow); margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; }
.thankyou-icon::after { content: '✓'; font-size: 28px; font-weight: 700; color: var(--black); }
.thankyou-content h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; }
.thankyou-content p { font-size: 16px; color: var(--white-60); line-height: 1.8; margin-bottom: 16px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero { padding-top: calc(72px + clamp(60px, 8vw, 100px)); padding-bottom: clamp(60px, 8vw, 100px); background: var(--black-soft); border-bottom: 1px solid var(--white-10); }
.page-hero .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h); }
.page-hero-eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.page-hero h1 em { color: var(--yellow); font-style: normal; }
.page-hero-sub { font-size: clamp(16px, 1.8vw, 20px); color: var(--white-60); max-width: 580px; line-height: 1.7; font-weight: 300; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.story-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-text { padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; background: var(--black-soft); }
.story-text .eyebrow { margin-bottom: 20px; }
.story-text h2 { font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; line-height: 1.1; }
.story-text p { font-size: 15px; color: var(--white-60); line-height: 1.8; margin-bottom: 16px; }
.story-image { background-size: cover; background-position: center; min-height: 400px; background-color: var(--black-card); }

/* ── FAQ PAGE ────────────────────────────────────────────────── */
.faqs-section { background: var(--black); padding: var(--sec-v) 0; }
.faqs-section .container { max-width: 800px; margin: 0 auto; padding: 0 var(--pad-h); }
.faq-group { margin-bottom: 64px; }
.faq-group-title { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--white-10); }
.faq-item { border-bottom: 1px solid var(--white-10); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 24px 0; font-size: 16px; font-weight: 600; color: var(--white); text-align: left; gap: 24px; transition: color 0.2s; }
.faq-question:hover { color: var(--yellow); }
.faq-question::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--yellow); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 0 0 28px; font-size: 15px; color: var(--white-60); line-height: 1.8; }
.faq-answer-inner a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* ── PARTNERS PAGE ───────────────────────────────────────────── */
.partners-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.partners-why-text .eyebrow { margin-bottom: 24px; }
.partners-why-text h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 24px; letter-spacing: -0.02em; line-height: 1.1; }
.partners-why-text p { font-size: 16px; color: var(--white-60); line-height: 1.8; margin-bottom: 20px; }
.partners-why-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.benefit-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--white-10); }
.benefit-item:first-child { border-top: 1px solid var(--white-10); }
.benefit-num { font-family: var(--font-display); font-size: 20px; color: var(--yellow); flex-shrink: 0; width: 32px; margin-top: 2px; }
.benefit-text h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.benefit-text p { font-size: 14px; color: var(--white-60); line-height: 1.7; }

/* ── MEDIA PAGE ──────────────────────────────────────────────── */
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.media-col h2 { font-size: clamp(22px, 3vw, 38px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; }
.media-col p { font-size: 15px; color: var(--white-60); line-height: 1.8; margin-bottom: 24px; }
.media-form .form-group { margin-bottom: 16px; }
.media-form input,
.media-form textarea {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.media-form textarea { resize: vertical; min-height: 120px; }
.media-form input:focus,
.media-form textarea:focus { border-color: var(--yellow); }
.media-form input::placeholder,
.media-form textarea::placeholder { color: var(--white-30); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .florian-grid { grid-template-columns: 1fr; }
  .florian-image { aspect-ratio: 4/3; max-height: 480px; }
  .florian-image-bg { background-position: center 10%; background-size: 340%; }
  .join-grid { grid-template-columns: repeat(2, 1fr); }
  .join-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .join-card:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .story-block { grid-template-columns: 1fr; min-height: auto; }
  .story-block.reverse { direction: ltr; }
  .partners-why-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid var(--white-10); text-align: left; padding: 28px var(--pad-h); }
  .number-item:last-child { border-bottom: none; }
  .how-cols { grid-template-columns: 1fr; }
  .how-col:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .how-col:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .route-grid { grid-template-columns: 1fr; }
  .route-map { display: flex; justify-content: center; margin-bottom: 48px; }
  .route-img { max-width: 280px; }
  .join-grid { grid-template-columns: 1fr; }
  .join-card { border-radius: 0 !important; }
  .join-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0 !important; }
  .join-card:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-page-grid { grid-template-columns: 1fr; }
  .form-page-left { display: none; }
  .join-form { max-width: 100%; }
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .florian-ctas { flex-direction: column; }
  .photo-break { min-height: 50vh; }
  .photo-break-quote { line-height: 1.05; }
  .storytelling-text { font-size: 18px; }
  .number-value { font-size: clamp(52px, 13vw, 72px); }
  .number-label { font-size: clamp(52px, 13vw, 72px); }
}

/* ── Privacy page ──────────────────────────────────────────────── */
.privacy-block { margin-bottom: 48px; }
.privacy-block h2 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.privacy-block p { color: var(--white-60); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.privacy-block ul { color: var(--white-60); font-size: 15px; line-height: 1.8; padding-left: 20px; margin-bottom: 12px; }
.privacy-block a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
