/* ============================================================
   EEMS — Design System
   Training · Herstel · Massage · Clash Control
   Fonts: Clash Display (display) + General Sans (body), Fontshare
   Theme: dark cinematic base. Massage page uses the light theme
   (page-level, deliberate "ademruimte" contrast).
   Radius system: 2px on interactive elements, 0 on media/sections.
   Accent: ember (#d9502c) — locked across the whole site.
   ============================================================ */

:root {
  /* color tokens (dark base) */
  --ink: #101113;
  --ink-2: #16181b;
  --ink-3: #1d2024;
  --line: rgba(233, 231, 226, 0.12);
  --line-strong: rgba(233, 231, 226, 0.24);
  --text: #edeae4;
  --text-soft: #b5b2ab;
  --muted: #8b8880;
  --accent: #d9502c;
  --accent-soft: rgba(217, 80, 44, 0.14);
  --accent-ink: #1c120d;

  /* type */
  --font-display: "Clash Display", "Arial Narrow", sans-serif;
  --font-body: "General Sans", "Segoe UI", sans-serif;

  /* scale */
  --step-hero: clamp(3.4rem, 9.5vw, 8.2rem);
  --step-1: clamp(2.2rem, 5vw, 4.2rem);
  --step-2: clamp(1.6rem, 3vw, 2.6rem);
  --step-3: clamp(1.2rem, 1.8vw, 1.5rem);

  /* rhythm */
  --space-section: clamp(5.5rem, 11vw, 10rem);
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 2px;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

/* light theme (massage page + recovery transition blocks) */
.theme-light {
  --ink: #f5f2ec;
  --ink-2: #efeae2;
  --ink-3: #e6e0d6;
  --line: rgba(28, 25, 20, 0.12);
  --line-strong: rgba(28, 25, 20, 0.26);
  --text: #211d18;
  --text-soft: #55504a;
  --muted: #7d776e;
  --accent: #c14524;
  --accent-soft: rgba(193, 69, 36, 0.1);
  --accent-ink: #f8f4ee;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

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

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ---------- layout primitives ---------- */
.wrap { max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); position: relative; }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.h-hero { font-size: var(--step-hero); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.h-1 { font-size: var(--step-1); }
.h-2 { font-size: var(--step-2); }
.h-3 { font-size: var(--step-3); font-weight: 600; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text-soft); max-width: 34em; }
.body-copy { color: var(--text-soft); max-width: 62ch; }
.text-accent { color: var(--accent); }
.kicker {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1.05rem 1.7rem; border-radius: var(--radius);
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap; position: relative;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary { background: var(--accent); color: #16100c; }
.btn-primary:hover { background: #e85f38; }
.theme-light .btn-primary { color: #fff7f2; }
.theme-light .btn-primary:hover { background: #d0512c; }
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--text); }
.btn-lg { padding: 1.25rem 2.2rem; font-size: 1.08rem; }
.btn .btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1560px;
  transition: height 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(16, 17, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line);
}
.site-header.is-scrolled .wrap { height: 62px; }
.theme-light .site-header.is-scrolled {
  background: rgba(245, 242, 236, 0.85);
}

.brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  display: inline-flex; align-items: baseline; gap: 0.5rem;
}
.brand small {
  font-family: var(--font-body); font-weight: 500; font-size: 0.62rem;
  letter-spacing: 0.22em; color: var(--muted);
}

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a:not(.btn) {
  font-size: 0.95rem; font-weight: 500; color: var(--text-soft);
  transition: color 0.2s; position: relative; padding-block: 0.35rem;
}
.nav-desktop a:not(.btn):hover,
.nav-desktop a[aria-current="page"] { color: var(--text); }
.nav-desktop a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-desktop a:not(.btn):hover::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop .btn { padding: 0.75rem 1.3rem; font-size: 0.92rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile a:not(.btn) {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 8vw, 3rem); line-height: 1.35;
  color: var(--text); display: block;
  transition: color 0.2s;
}
.nav-mobile a:not(.btn):hover, .nav-mobile a[aria-current="page"] { color: var(--accent); }
.nav-mobile .btn { margin-top: 2rem; align-self: flex-start; }

/* ---------- hero (home) ---------- */
.hero {
  min-height: 100dvh;
  display: grid; align-items: end;
  position: relative; overflow: clip;
  padding-bottom: clamp(2.5rem, 6vh, 5rem);
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(16, 17, 19, 0.96) 6%, rgba(16, 17, 19, 0.45) 45%, rgba(16, 17, 19, 0.35) 100%),
    linear-gradient(100deg, rgba(16, 17, 19, 0.75) 0%, transparent 60%);
}
.hero-inner { width: 100%; }
.hero-words { display: block; }
.hero-words .word {
  display: block; overflow: hidden;
}
.hero-words .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: hero-rise 0.9s var(--ease-out) forwards;
}
.hero-words .word:nth-child(2) > span { animation-delay: 0.12s; }
.hero-words .word:nth-child(3) > span { animation-delay: 0.24s; color: var(--accent); }
@keyframes hero-rise { to { transform: translateY(0); } }

.hero-sub {
  margin-top: 1.6rem; max-width: 33em;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-soft);
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 0.5s forwards;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 0.65s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* subtle hero parallax via scroll-driven animation (progressive enhancement) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-media img {
      animation: hero-parallax linear both;
      animation-timeline: view(block);
      animation-range: exit 0% exit 100%;
      scale: 1.08;
    }
    @keyframes hero-parallax {
      to { transform: translateY(9%); }
    }
  }
}

/* light-theme hero scrim (massage) */
.theme-light .hero-scrim {
  background:
    linear-gradient(to top, rgba(245, 242, 236, 0.97) 8%, rgba(245, 242, 236, 0.55) 48%, rgba(245, 242, 236, 0.25) 100%),
    linear-gradient(100deg, rgba(245, 242, 236, 0.8) 0%, transparent 60%);
}
.theme-light .marquee span { color: var(--muted); }
.theme-light .goal { background: var(--ink-2); }
.theme-light .funnel { background: #fdfbf7; }
.theme-light .option:hover { border-color: var(--text); }
.theme-light .expect { background: var(--ink); }
.theme-light .wa-band { background: #fdfbf7; }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  min-height: 78dvh; display: grid; align-items: end;
  position: relative; overflow: clip; padding-bottom: clamp(2.5rem, 5vh, 4rem);
}
.page-hero .hero-media img { object-position: center 35%; }
.page-hero .h-hero { font-size: clamp(2.6rem, 7vw, 6rem); }

/* ---------- service routes (home) ---------- */
.routes { border-top: 1px solid var(--line); }
.routes-intro { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 40ch; }
.routes-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(180px, 24vw, 320px);
}
.route-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  isolation: isolate; background: var(--ink-2);
}
.route-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(13, 13, 15, 0.92) 8%, rgba(13, 13, 15, 0.2) 55%, rgba(13, 13, 15, 0.05));
}
.route-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter 1s var(--ease-out);
  filter: saturate(0.85);
}
.route-card:hover img, .route-card:focus-visible img { transform: scale(1.05); filter: saturate(1); }
.route-card--train { grid-column: 1 / 6; grid-row: span 2; }
.route-card--recover { grid-column: 6 / 13; }
.route-card--clash { grid-column: 6 / 13; }
.route-tag {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.2em;
  font-size: 0.8rem; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem;
}
.route-card h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 0.35rem; }
.route-card p { color: var(--text-soft); font-size: 0.98rem; max-width: 44ch; }
.route-cta {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem;
}
.route-cta svg { transition: transform 0.3s var(--ease-out); }
.route-card:hover .route-cta svg { transform: translateX(5px); }
.route-cta span { border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.route-card:hover .route-cta span { border-color: var(--accent); }

/* ---------- goal selector ---------- */
.goal { background: var(--ink-2); border-block: 1px solid var(--line); }
.goal-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.goal-chip {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.8rem 1.3rem; font-weight: 500; font-size: 1rem;
  color: var(--text-soft);
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}
.goal-chip:hover { border-color: var(--text); color: var(--text); transform: translateY(-2px); }
.goal-chip.is-active {
  background: var(--accent); border-color: var(--accent);
  color: var(--accent-ink); font-weight: 600;
}
.goal-result {
  margin-top: 2.5rem; display: none;
  grid-template-columns: minmax(0, 1.1fr) auto; gap: 2rem; align-items: center;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--radius);
  background: var(--ink);
}
.goal-result.is-visible { display: grid; animation: fade-up 0.5s var(--ease-out); }
.goal-result h3 { margin-bottom: 0.5rem; }
.goal-result p { color: var(--text-soft); max-width: 52ch; }

/* ---------- coach section ---------- */
.coach-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.coach-photo { position: relative; }
.coach-photo img { border-radius: var(--radius); width: 100%; }
.coach-photo::before {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 45%; height: 45%; border: 1px solid var(--accent);
  border-radius: var(--radius); z-index: -1;
}
.coach-quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.3;
  margin-block: 1.6rem;
}
.coach-quote em { color: var(--accent); font-style: normal; }

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line); overflow: hidden;
  padding-block: 1.1rem; user-select: none;
}
.marquee-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap;
}
.marquee i {
  font-style: normal; color: var(--accent); font-size: 0.7rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- why / proof ---------- */
.why-list { margin-top: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.why-item {
  display: grid; grid-template-columns: 70px minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(1rem, 3vw, 2.5rem); align-items: baseline;
  padding-block: clamp(1.4rem, 2.6vw, 2.2rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.why-item:hover { background: var(--ink-2); }
.why-num {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--muted);
}
.why-item h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
.why-item p { color: var(--text-soft); }

/* ---------- testimonials ---------- */
.reviews-feature {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.review-big blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.25;
}
.review-big blockquote::before { content: "\201C"; color: var(--accent); }
.review-big blockquote::after { content: "\201D"; color: var(--accent); }
.review-meta { margin-top: 1.6rem; display: flex; align-items: center; gap: 0.9rem; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em;
}
.review-meta strong { display: block; font-size: 0.98rem; }
.review-meta span { font-size: 0.85rem; color: var(--muted); }
.review-side { display: grid; gap: 1rem; align-content: center; }
.review-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; background: var(--ink-2);
}
.review-card p { font-size: 0.98rem; color: var(--text-soft); }
.review-card .review-meta { margin-top: 1rem; }
.review-card .review-avatar { width: 38px; height: 38px; font-size: 0.8rem; }
.reviews-note { margin-top: 2rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.stat {
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
  text-align: left;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1;
}
.stat-num sup { font-size: 0.45em; color: var(--accent); }
.stat p { color: var(--muted); margin-top: 0.5rem; font-size: 0.95rem; }

/* ---------- journey (train / herstel) ---------- */
.journey { counter-reset: step; }
.journey-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.journey-track::before {
  content: ""; position: absolute; top: 0.6rem; left: 0; right: 0;
  height: 1px; background: var(--line);
}
.journey-step { position: relative; padding-top: 2.2rem; }
.journey-step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--accent);
}
.journey-step h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.6rem;
}
.journey-step p { color: var(--text-soft); font-size: 0.98rem; }
.journey-track--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- audience / list chips ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.tag {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.55rem 1rem; font-size: 0.92rem; color: var(--text-soft);
}

/* ---------- split media section ---------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.split img { border-radius: var(--radius); width: 100%; }
.split--flip > *:first-child { order: 2; }

/* ---------- benefits (massage) ---------- */
.benefit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.benefit {
  background: var(--ink); padding: clamp(1.5rem, 3vw, 2.4rem);
}
.benefit h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.benefit p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- clash control ---------- */
.clash-hero {
  min-height: 100dvh; display: grid; align-items: center;
  position: relative; overflow: clip; text-align: left;
}
.clash-hero .h-hero { line-height: 0.98; }
.clash-hero .h-hero .line { display: block; }
.clash-hero .h-hero .line.accent { color: var(--accent); }

.clash-phases { position: relative; }
.clash-phase {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
  align-items: center;
}
.clash-phase:nth-child(even) { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
.clash-phase:nth-child(even) .clash-phase-copy { order: 2; }
.clash-phase-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong);
}
.clash-phase.is-inview .clash-phase-num { color: var(--accent); -webkit-text-stroke: 0; transition: color 0.6s; }
.clash-phase h3 {
  font-size: clamp(1.6rem, 3vw, 2.6rem); text-transform: uppercase;
  letter-spacing: 0.04em; margin-block: 0.6rem 0.8rem;
}
.clash-phase p { color: var(--text-soft); max-width: 52ch; }
.clash-phase img { border-radius: var(--radius); width: 100%; }

/* ---------- funnel ---------- */
.funnel {
  max-width: 760px; margin-inline: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ink-2); padding: clamp(1.75rem, 4vw, 3rem);
}
.funnel-progress {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; gap: 1rem;
}
.funnel-progress .funnel-count {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--muted);
}
.funnel-bar { flex: 1; height: 2px; background: var(--line); position: relative; }
.funnel-bar span {
  position: absolute; inset-block: 0; left: 0; background: var(--accent);
  transition: width 0.5s var(--ease-out);
}
.funnel-step { display: none; }
.funnel-step.is-active { display: block; animation: fade-up 0.45s var(--ease-out); }
.funnel-step h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 1.5rem; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.option {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; text-align: left; font-weight: 500; font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--text-soft);
}
.option:hover { border-color: var(--text); color: var(--text); }
.option.is-selected {
  border-color: var(--accent); background: var(--accent-soft); color: var(--text);
}
.funnel-nav { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.funnel-back { color: var(--muted); font-weight: 500; }
.funnel-back:hover { color: var(--text); }
.funnel-note { margin-top: 1.4rem; font-size: 0.88rem; color: var(--muted); }
.funnel-done { display: none; text-align: center; padding-block: 2rem; }
.funnel-done h3 { margin-bottom: 0.8rem; }
.funnel-done p { color: var(--text-soft); max-width: 40ch; margin-inline: auto; }

/* ---------- forms ---------- */
.field { display: grid; gap: 0.45rem; margin-bottom: 1.2rem; text-align: left; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  background: var(--ink); border: 1px solid var(--line-strong);
  border-radius: var(--radius); color: var(--text);
  padding: 0.9rem 1rem; font: inherit; width: 100%;
  transition: border-color 0.2s;
}
.theme-light .field input, .theme-light .field select, .theme-light .field textarea {
  background: #fffdf9;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.field .field-error { display: none; color: #e2694a; font-size: 0.85rem; }
.field.has-error input { border-color: #e2694a; }
.field.has-error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- faq ---------- */
.faq-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-block: 2rem; }
.faq-tab {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.65rem 1.2rem; font-weight: 500; color: var(--text-soft);
  transition: all 0.2s;
}
.faq-tab.is-active { background: var(--text); color: var(--ink); border-color: var(--text); }
.faq-group { display: none; }
.faq-group.is-active { display: block; animation: fade-up 0.4s var(--ease-out); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-block: 1.3rem; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.08rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: none; width: 12px; height: 12px; position: relative;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: ""; position: absolute; background: var(--accent); inset: 0; margin: auto;
  transition: transform 0.3s var(--ease-out);
}
.faq-item summary .faq-icon::before { width: 12px; height: 2px; }
.faq-item summary .faq-icon::after { width: 2px; height: 12px; }
.faq-item[open] summary .faq-icon::after { transform: rotate(90deg); }
.faq-item .faq-body { padding-bottom: 1.4rem; color: var(--text-soft); max-width: 62ch; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}
.contact-channels { display: grid; gap: 0.9rem; margin-top: 2rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.contact-channel:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-channel svg { flex: none; color: var(--accent); }
.contact-channel strong { display: block; font-size: 1rem; }
.contact-channel span { font-size: 0.88rem; color: var(--muted); }

/* ---------- pre-footer CTA ---------- */
.cta-final {
  text-align: center; position: relative; overflow: clip;
  padding-block: clamp(6rem, 14vw, 11rem);
}
.cta-final .h-1 {
  font-size: clamp(2.6rem, 7vw, 6rem); text-transform: uppercase; font-weight: 700;
}
.cta-final p { margin: 1.2rem auto 2.4rem; color: var(--text-soft); max-width: 34em; }
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 70% at 50% 100%, var(--accent-soft), transparent 70%);
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 3rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 2rem; margin-bottom: 3rem;
}
.footer-grid h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 1rem; font-weight: 600;
}
.footer-grid a {
  display: block; padding-block: 0.3rem; color: var(--text-soft);
  font-size: 0.96rem; transition: color 0.2s;
}
.footer-grid a:hover { color: var(--text); }
.footer-brand p { color: var(--muted); max-width: 30ch; margin-top: 1rem; font-size: 0.95rem; }
.footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.85rem;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 80;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(100%); transition: transform 0.4s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  flex: 1; text-align: center; padding: 1rem;
  font-weight: 600; font-size: 0.95rem;
  background: var(--ink-2);
}
.sticky-cta a.primary { background: var(--accent); color: var(--accent-ink); }
.theme-light .sticky-cta a.primary { color: #fff7f2; }

/* ---------- whatsapp ---------- */
.btn-wa { background: #1faf5a; color: #fff; }
.btn-wa:hover { background: #17994d; }
.wa-band {
  border: 1px solid var(--line); border-left: 3px solid #1faf5a;
  border-radius: var(--radius); background: var(--ink-2);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
  justify-content: space-between;
}
.wa-band h3 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); margin-bottom: 0.25rem; }
.wa-band p { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- intent routing (home) ---------- */
.intent-list { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.intent-item {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr) auto;
  align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.3rem, 2.4vw, 1.9rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.3s var(--ease-out);
}
.intent-item:hover, .intent-item:focus-visible { background: var(--ink-2); padding-left: 1rem; }
.intent-item h3 { font-size: clamp(1.25rem, 2.2vw, 1.9rem); transition: color 0.25s; }
.intent-item:hover h3 { color: var(--accent); }
.intent-item .intent-service { color: var(--muted); font-size: 0.95rem; }
.intent-item .intent-service strong { color: var(--text-soft); font-weight: 600; display: block; }
.intent-item svg { color: var(--muted); transition: transform 0.3s var(--ease-out), color 0.25s; }
.intent-item:hover svg { transform: translateX(6px); color: var(--accent); }

/* ---------- trust microcopy ---------- */
.trust-line {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--muted); margin-top: 1rem;
}
.trust-line svg { color: var(--accent); flex: none; }

/* ---------- audience toggle (clash B2B/B2C) ---------- */
.audience-toggle {
  display: inline-flex; border: 1px solid var(--line-strong);
  border-radius: var(--radius); overflow: hidden; margin-top: 2rem;
}
.audience-toggle button {
  padding: 0.85rem 1.6rem; font-weight: 600; font-size: 0.98rem;
  color: var(--text-soft); transition: background 0.25s, color 0.25s;
}
.audience-toggle button.is-active { background: var(--accent); color: var(--accent-ink); }
.audience-pane { display: none; }
.audience-pane.is-active { display: block; animation: fade-up 0.45s var(--ease-out); }

/* ---------- expectation steps ---------- */
.expect-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.expect { background: var(--ink); padding: clamp(1.4rem, 2.6vw, 2.2rem); }
.expect .expect-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--accent); display: block; margin-bottom: 0.8rem;
}
.expect h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.expect p { color: var(--text-soft); font-size: 0.93rem; }

/* ---------- matcher ---------- */
.matcher {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  padding: clamp(1.75rem, 4vw, 3rem);
  max-width: 860px; margin-inline: auto;
}
.matcher-result { display: none; }
.matcher-result.is-visible { display: block; animation: fade-up 0.5s var(--ease-out); }
.matcher-result .kicker { color: var(--accent); }
.matcher-result h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-block: 0.5rem 0.8rem; }
.matcher-result p { color: var(--text-soft); max-width: 56ch; }
.matcher-restart { margin-top: 1.4rem; color: var(--muted); font-weight: 500; font-size: 0.92rem; }
.matcher-restart:hover { color: var(--text); }

/* ---------- review filter ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-block: 2rem; }
.review-item { transition: opacity 0.3s; }
.review-item.is-hidden { display: none; }
.reviews-columns {
  columns: 2; column-gap: 1rem; margin-top: 1rem;
}
.reviews-columns .review-card { break-inside: avoid; margin-bottom: 1rem; }

/* ---------- video placeholder ---------- */
.video-ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9; display: grid; place-items: center; isolation: isolate;
}
.video-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.55); }
.video-ph .video-btn {
  display: grid; place-items: center; width: 78px; height: 78px; border-radius: 50%;
  background: rgba(237, 234, 228, 0.12); border: 1px solid rgba(237, 234, 228, 0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.video-ph:hover .video-btn { transform: scale(1.08); background: var(--accent); }
.video-ph .video-note {
  position: absolute; bottom: 1.2rem; left: 1.4rem; color: var(--text-soft); font-size: 0.88rem;
}

/* ---------- reveal system ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(26px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: calc(var(--i, 0) * 90ms);
  }
  .reveal.is-inview { opacity: 1; transform: none; }
  .reveal-img { overflow: hidden; }
  .reveal-img img {
    transform: scale(1.08); transition: transform 1.2s var(--ease-out);
  }
  .reveal-img.is-inview img { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-words .word > span { transform: none; animation: none; }
  .hero-sub, .hero-ctas { opacity: 1; animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 1024px) {
  .nav-mobile { display: none !important; }
}

@media (max-width: 900px) {
  .routes-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(240px, 42vw); }
  .route-card--train, .route-card--recover, .route-card--clash { grid-column: 1 / -1; grid-row: auto; }
  .route-card--train { min-height: 320px; }
  .coach-grid, .split, .contact-grid, .reviews-feature { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
  .journey-track, .journey-track--4 { grid-template-columns: 1fr; gap: 2rem; }
  .journey-track::before { top: 0; bottom: 0; left: 0.55rem; right: auto; width: 1px; height: auto; }
  .journey-step { padding-top: 0; padding-left: 2.4rem; }
  .journey-step::before { left: 0; top: 0.2rem; }
  .clash-phase, .clash-phase:nth-child(even) { grid-template-columns: 1fr; gap: 1.5rem; }
  .clash-phase:nth-child(even) .clash-phase-copy { order: 0; }
  .why-item { grid-template-columns: 44px 1fr; }
  .why-item p { grid-column: 2; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .goal-result { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 56px; }
  .intent-item { grid-template-columns: 1fr auto; }
  .intent-item .intent-service { grid-column: 1; }
  .intent-item svg { grid-row: 1; grid-column: 2; }
  .expect-grid { grid-template-columns: 1fr; }
  .reviews-columns { columns: 1; }
  .wa-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
