/* OUTDOOR Adventure TEAMS */

@font-face { font-family: "Rubik"; font-weight: 400; font-display: swap; src: url(../fonts/rubik-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Rubik"; font-weight: 500; font-display: swap; src: url(../fonts/rubik-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: "Rubik"; font-weight: 700; font-display: swap; src: url(../fonts/rubik-latin-700-normal.woff2) format("woff2"); }
@font-face { font-family: "Rubik Dirt"; font-weight: 400; font-display: swap; src: url(../fonts/rubik-dirt-latin-400-normal.woff2) format("woff2"); }

:root {
  --forest: #17291f;
  --forest-2: #1f3629;
  --forest-3: #2c4a39;
  --moss: #6f7d5c;
  --paper: #f3eee4;
  --paper-2: #e9e1d2;
  --bark: #8a6a4a;
  --ink: #1a1f1b;
  --ink-soft: #4a524b;
  --orange: #ff7a1a;
  --orange-hot: #ff8f3a;
  --orange-deep: #b84a00;
  --line: rgba(26, 31, 27, .14);
  --line-light: rgba(243, 238, 228, .18);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --f-body: "Rubik", system-ui, sans-serif;
  --f-head: "Rubik", system-ui, sans-serif;
  --f-dirt: "Rubik Dirt", "Rubik", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.12; margin: 0; letter-spacing: -.015em; text-wrap: balance; }
::selection { background: var(--orange); color: var(--forest); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--orange); color: var(--forest); padding: 10px 16px; font-weight: 500; transition: transform 200ms var(--ease-out); }
.skip:focus { transform: translateY(72px); }

/* ---------- Typo helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font: 500 15px/1.2 var(--f-body); letter-spacing: 0;
  color: var(--orange-deep);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.on-dark .kicker, .kicker--light { color: var(--orange); }
.h-xl { font-size: clamp(34px, 6vw, 84px); font-weight: 700; line-height: 1.04; letter-spacing: -.025em; }
.h-l { font-size: clamp(30px, 4vw, 52px); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
.h-m { font-size: clamp(28px, 3vw, 40px); }
.h-s { font-size: 24px; letter-spacing: 0; }
.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.6; color: var(--ink-soft); max-width: 62ch; }
.on-dark .lead { color: rgba(243, 238, 228, .82); }
.hl { color: var(--orange-deep); }
.on-dark .hl { color: var(--orange); }
.dirt { font-family: var(--f-dirt); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--orange); --fg: var(--forest);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  background: var(--bg); color: var(--fg);
  font: 500 16px/1 var(--f-body); letter-spacing: 0;
  text-decoration: none; border: 0; border-radius: 999px; cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 200ms var(--ease-out); }
.btn:active { transform: scale(0.97); }
.btn--ghost { --bg: transparent; --fg: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn--dark { --bg: var(--forest); --fg: var(--paper); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { --bg: var(--orange-hot); }
  .btn:hover svg { transform: translateX(3px); }
  .btn--ghost:hover { --bg: rgba(255, 255, 255, .08); }
  .btn--dark:hover { --bg: var(--forest-3); }
}
.textlink {
  font-weight: 500; text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1.5px no-repeat;
  padding-bottom: 2px;
  transition: background-size 250ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .textlink:hover { background-size: 0 1.5px; background-position: 100% 100%; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  color: var(--paper);
  transition: transform 280ms var(--ease-out), background-color 250ms ease, box-shadow 250ms ease;
}
.site-header.is-solid { background: rgba(23, 41, 31, .96); box-shadow: 0 1px 0 var(--line-light); }
@supports (backdrop-filter: blur(1px)) { .site-header.is-solid { background: rgba(23, 41, 31, .86); backdrop-filter: blur(12px) saturate(1.2); } }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 28px; max-width: 1400px; }
.brand { display: block; flex: none; line-height: 0; }
.brand img { width: 184px; height: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav a:not(.btn) {
  position: relative; padding: 10px 14px;
  font: 500 15.5px/1 var(--f-body); letter-spacing: 0; text-decoration: none;
  color: rgba(243, 238, 228, .86);
  transition: color 200ms ease;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 250ms var(--ease-out);
}
.nav a[aria-current="page"] { color: var(--paper); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) {
  .nav a:not(.btn):hover { color: var(--paper); }
  .nav a:not(.btn):hover::after { transform: scaleX(1); }
}
.nav .btn { margin-left: 10px; padding: 13px 20px; font-size: 15px; }
.menu-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(243, 238, 228, .5); background: transparent; color: var(--paper); cursor: pointer;
  align-items: center; justify-content: center;
  transition: transform 160ms var(--ease-out);
}
.menu-toggle:active { transform: scale(0.95); }
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; position: relative; transition: background-color 150ms ease; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform 250ms var(--ease-out); }
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(6px); }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: rotate(45deg); }
.menu-open .menu-toggle span::after { transform: rotate(-45deg); }

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .brand img { width: 140px; }
  .menu-toggle { display: inline-flex; position: relative; z-index: 2; }
  .brand { position: relative; z-index: 2; }
  .nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px;
    padding: 100px var(--gutter) 40px;
    background: var(--forest);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 420ms var(--ease-drawer), visibility 0s linear 420ms;
    visibility: hidden;
  }
  .menu-open .nav { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path 480ms var(--ease-drawer), visibility 0s; }
  .nav a:not(.btn) { font: 700 clamp(30px, 8vw, 42px)/1.2 var(--f-head); letter-spacing: -.02em; padding: 6px 0; color: var(--paper); opacity: 0; transform: translateY(14px); transition: opacity 300ms ease, transform 400ms var(--ease-out); }
  .nav a:not(.btn)::after { display: none; }
  .nav a[aria-current="page"] { color: var(--orange); }
  .nav .btn { margin: 28px 0 0; opacity: 0; transform: translateY(14px); transition: opacity 300ms ease, transform 400ms var(--ease-out); }
  .menu-open .nav a { opacity: 1; transform: none; }
  .menu-open .nav a:nth-child(1) { transition-delay: 120ms; }
  .menu-open .nav a:nth-child(2) { transition-delay: 165ms; }
  .menu-open .nav a:nth-child(3) { transition-delay: 210ms; }
  .menu-open .nav a:nth-child(4) { transition-delay: 255ms; }
  .menu-open .nav a:nth-child(5) { transition-delay: 300ms; }
  .menu-open { overflow: hidden; }
}

/* ---------- Torn edges (Verbindung zur Kids-Seite) ---------- */
.edge { position: relative; }
.edge::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(40px, 6vw, 94px);
  background: var(--edge-color, var(--paper));
  -webkit-mask: url(../img/edge-a.webp) center bottom / 100% 100% no-repeat;
          mask: url(../img/edge-a.webp) center bottom / 100% 100% no-repeat;
  pointer-events: none; z-index: 3;
}
.edge--b::after { transform: scaleX(-1); }
.edge--top::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: clamp(40px, 6vw, 94px);
  background: var(--edge-top-color, var(--paper));
  -webkit-mask: url(../img/edge-a.webp) center bottom / 100% 100% no-repeat;
          mask: url(../img/edge-a.webp) center bottom / 100% 100% no-repeat;
  transform: scale(-1, -1);
  pointer-events: none; z-index: 3;
}

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section--tight { padding: clamp(60px, 7vw, 96px) 0; }
.on-dark { background: var(--forest); color: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.grain { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 180px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 980px);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--paper); background: var(--forest); overflow: hidden;
  --edge-color: var(--paper);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transform: scale(1.06); animation: heroSettle 2200ms var(--ease-out) 80ms forwards; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,41,31,.55) 0%, rgba(23,41,31,.05) 30%, rgba(23,41,31,.2) 55%, rgba(23,41,31,.92) 100%),
    linear-gradient(90deg, rgba(23,41,31,.6) 0%, rgba(23,41,31,0) 60%);
}
@keyframes heroSettle { to { transform: scale(1); } }
.hero__img--feuer { object-position: 100% 35% !important; }
.hero:has(.hero__img--feuer) .hero__media::after {
  background:
    linear-gradient(180deg, rgba(23,41,31,.55) 0%, rgba(23,41,31,0) 25%, rgba(23,41,31,.15) 60%, rgba(23,41,31,.95) 100%),
    linear-gradient(90deg, rgba(23,41,31,.85) 0%, rgba(23,41,31,.55) 40%, rgba(23,41,31,0) 70%);
}
@media (max-width: 760px) {
  .hero__img--feuer { object-position: 12% 35% !important; }
  .hero:has(.hero__img--feuer) .hero__media::after { background: linear-gradient(180deg, rgba(23,41,31,.6) 0%, rgba(23,41,31,.55) 50%, rgba(23,41,31,.95) 100%); }
}
.hero__content { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 60px); padding-bottom: clamp(120px, 14vw, 190px); }
.hero:has(+ .split) .hero__content { padding-bottom: clamp(200px, 22vw, 330px); }
.hero:has(+ .split) .hero__meta { bottom: clamp(200px, 22vw, 330px); }
.hero__title { font-size: clamp(32px, 6vw, 84px); }
.hero__title .line { display: block; overflow: hidden; white-space: nowrap; padding-bottom: .04em; margin-bottom: -.04em; }
.hero .hl, .page-top .hl { color: var(--orange); }
.hero__title .line > span { display: inline-block; transform: translateY(105%); animation: lineUp 900ms var(--ease-out) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: 90ms; }
.hero__title .line:nth-child(3) > span { animation-delay: 180ms; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero .lead { margin-top: 26px; max-width: 54ch; color: rgba(243, 238, 228, .88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.fade-in { opacity: 0; animation: fadeUp 800ms var(--ease-out) forwards; }
.fade-in.d1 { animation-delay: 380ms; } .fade-in.d2 { animation-delay: 480ms; } .fade-in.d3 { animation-delay: 580ms; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero__meta {
  position: absolute; right: var(--gutter); bottom: clamp(120px, 14vw, 190px); z-index: 2;
  display: grid; gap: 8px; text-align: right;
  font: 500 14px/1.2 var(--f-body); letter-spacing: 0; color: rgba(243,238,228,.7);
}
.hero__meta strong { color: var(--paper); font-weight: 700; }
@media (max-width: 860px) { .hero__meta { display: none; } }

.hero--sub { min-height: min(78svh, 760px); }
.hero--sub .hero__media::after { background: linear-gradient(180deg, rgba(23,41,31,.6) 0%, rgba(23,41,31,.3) 40%, rgba(23,41,31,.92) 100%), linear-gradient(90deg, rgba(23,41,31,.75) 0%, rgba(23,41,31,.15) 70%); }


/* ---------- Zielgruppen-Weiche ---------- */
.split { position: relative; z-index: 4; margin-top: calc(-1 * clamp(90px, 11vw, 170px)); padding-top: 0 !important; padding-bottom: 0 !important; }
.split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); }
.path {
  position: relative; display: flex; flex-direction: column; min-height: 520px;
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--paper);
  background: var(--forest); isolation: isolate;
  transition: transform 160ms var(--ease-out);
}
.path:active { transform: scale(0.99); }
.path__img { position: absolute; inset: 0; z-index: -1; }
.path__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.path__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,41,31,.1) 20%, rgba(23,41,31,.9) 85%); transition: opacity 400ms ease; }
.path__body { margin-top: auto; padding: clamp(24px, 3vw, 40px); }
.path__tag { display: inline-block; font: 500 13px/1 var(--f-body); letter-spacing: 0; color: var(--forest); background: var(--orange); padding: 8px 14px; border-radius: 999px; margin-bottom: 18px; }
.path h2 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 700; }
.path p { margin: 14px 0 22px; color: rgba(243,238,228,.86); max-width: 42ch; }
.path__more { display: inline-flex; align-items: center; gap: 10px; font: 500 16px/1 var(--f-body); letter-spacing: 0; }
.path__more i { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: var(--forest); transition: transform 250ms var(--ease-out); }
.path__more svg { width: 18px; height: 18px; }
@media (hover: hover) and (pointer: fine) {
  .path:hover .path__img img { transform: scale(1.04); }
  .path:hover .path__more i { transform: translateX(4px); }
}
@media (max-width: 760px) { .split__grid { grid-template-columns: 1fr; } .path { min-height: 440px; } }

/* ---------- Intro statement ---------- */
.statement { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.statement__big { font: 700 clamp(26px, 3.2vw, 44px)/1.15 var(--f-head); letter-spacing: -.02em; }
.statement__text p { color: var(--ink-soft); }
.statement__text p:first-child { font-size: 20px; color: var(--ink); }
@media (max-width: 860px) { .statement { grid-template-columns: 1fr; } }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: clamp(56px, 7vw, 90px); }
.facts > div { padding: 24px 20px 0 0; }
.facts dt { font: 500 13px/1.2 var(--f-body); letter-spacing: 0; color: var(--ink-soft); }
.facts dd { margin: 8px 0 0; font: 700 clamp(20px, 1.9vw, 26px)/1.15 var(--f-head); }
.on-dark .facts { border-color: var(--line-light); }
.on-dark .facts dt { color: rgba(243,238,228,.66); }
@media (max-width: 760px) { .facts { grid-template-columns: 1fr 1fr; row-gap: 12px; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--orange); color: var(--forest); padding: 18px 0; border-block: 1px solid rgba(0,0,0,.08); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee ul { display: flex; margin: 0; padding: 0; list-style: none; }
.marquee li { display: flex; align-items: center; gap: 28px; padding-right: 28px; font: 500 clamp(19px, 1.9vw, 25px)/1 var(--f-head); white-space: nowrap; }
.marquee li::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--forest); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (hover: hover) and (pointer: fine) { .marquee:hover .marquee__track { animation-play-state: paused; } }

/* ---------- Werkstatt / Module ---------- */
.werkstatt__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
@media (max-width: 860px) { .werkstatt__head { grid-template-columns: 1fr; } }

.lens { display: inline-block; }
.lens__label { display: block; font: 500 13px/1 var(--f-body); letter-spacing: 0; color: var(--ink-soft); margin-bottom: 10px; }
.on-dark .lens__label { color: rgba(243,238,228,.6); }
.seg { position: relative; display: inline-flex; padding: 5px; border-radius: 999px; background: rgba(243,238,228,.08); box-shadow: inset 0 0 0 1px var(--line-light); }
.seg__list { display: flex; margin: 0; padding: 0; list-style: none; }
.seg button {
  appearance: none; border: 0; background: none; cursor: pointer; color: inherit;
  padding: 13px 22px; border-radius: 999px;
  font: 500 15px/1 var(--f-body); letter-spacing: 0; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.seg__list--base button { color: rgba(243,238,228,.78); }
.seg__list--active { position: absolute; inset: 5px; pointer-events: none; color: var(--forest); }
.seg__list--active button { background: var(--orange); }
.seg__list--active { clip-path: inset(0 50% 0 0 round 999px); }
.seg.is-ready .seg__list--active { transition: clip-path 380ms var(--ease-in-out); }
@media (max-width: 520px) { .seg button { padding: 12px 14px; font-size: 13px; letter-spacing: 0; } }

.modules { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 24px); }
.module { grid-column: span 4; display: flex; flex-direction: column; background: var(--forest-2); border-radius: var(--radius); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line-light); }
.module--wide { grid-column: span 8; }
.module--wide .module__img { aspect-ratio: 16 / 8.2; }
.module__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--forest-3); }
.module__img img { width: 100%; height: 100%; object-fit: cover; }
.module__no { position: absolute; left: 14px; top: 14px; padding: 8px 12px 7px; border-radius: 999px; background: rgba(23,41,31,.82); font: 400 20px/1 var(--f-dirt); color: var(--orange); }
.module__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.module h3 { font-size: 23px; margin-bottom: 10px; }
.module__text { position: relative; display: grid; }
.module__text > p { grid-area: 1 / 1; margin: 0; color: rgba(243,238,228,.8); transition: opacity 260ms ease, filter 260ms ease, transform 260ms var(--ease-out); }
.module__text > p[aria-hidden="true"] { opacity: 0; filter: blur(4px); transform: translateY(4px); pointer-events: none; }
.module__tag > p { color: var(--orange) !important; }
.module__tag { margin-top: auto; padding-top: 18px; font: 500 13px/1.3 var(--f-body); letter-spacing: 0; color: var(--orange); }
@media (max-width: 1020px) { .module, .module--wide { grid-column: span 6; } .module--wide .module__img { aspect-ratio: 4 / 3; } }
@media (max-width: 640px) { .module, .module--wide { grid-column: 1 / -1; } }

/* ---------- Media split ---------- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.media-split--rev > :first-child { order: 2; }
.media-split__img { position: relative; border-radius: var(--radius); overflow: hidden; }
.media-split__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.media-split__img.is-land img { aspect-ratio: 4 / 3; }
.media-split__img.is-square img { aspect-ratio: 1; }
.caption { position: absolute; left: 14px; bottom: 14px; background: rgba(23,41,31,.8); color: var(--paper); padding: 7px 13px; border-radius: 999px; font: 500 13px/1.2 var(--f-body); }
@media (max-width: 860px) { .media-split { grid-template-columns: 1fr; } .media-split--rev > :first-child { order: 0; } }

/* ---------- Ablauf / timeline ---------- */
.day { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.day__video { position: sticky; top: calc(var(--header-h) + 24px); border-radius: var(--radius); overflow: hidden; background: #000; aspect-ratio: 9 / 16; max-height: 78vh; }
.day__video video { width: 100%; height: 100%; object-fit: cover; }
.day__video .caption { left: 14px; bottom: 14px; }
.steps { list-style: none; margin: 40px 0 0; padding: 0; counter-reset: s; }
.steps li { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line-light); }
.steps li:last-child { border-bottom: 1px solid var(--line-light); }
.steps time { font: 500 15px/1.3 var(--f-body); letter-spacing: 0; color: var(--orange); padding-top: 4px; }
.steps h3 { font-size: 21px; margin-bottom: 6px; }
.steps p { margin: 0; color: rgba(243,238,228,.78); }
@media (max-width: 860px) {
  .day { grid-template-columns: 1fr; }
  .day__video { position: relative; top: 0; max-width: 300px; max-height: none; }
  .steps li { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Person ---------- */
.person { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.person__imgs { position: relative; }
.person__imgs img { border-radius: var(--radius); }
.person__main { width: 78%; border-radius: var(--radius); overflow: hidden; }
.person__main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.person__sub { position: absolute; right: 0; bottom: -40px; width: 52%; aspect-ratio: 1; object-fit: cover; box-shadow: 0 0 0 8px var(--paper); }
.bg-paper-2 .person__sub { box-shadow: 0 0 0 8px var(--paper-2); }
.sig { font: 400 34px/1 var(--f-dirt); color: var(--orange-deep); margin-top: 12px; }
.creds { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.creds li { padding: 8px 14px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); font: 500 14px/1 var(--f-body); }
@media (max-width: 860px) { .person { grid-template-columns: 1fr; } .person__imgs { margin-bottom: 40px; } }

/* ---------- Kids-Verbindung ---------- */
.family { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); background: var(--forest); color: var(--paper); position: relative; overflow: hidden; }
.family__logo { width: clamp(150px, 16vw, 210px); }
.family p { margin: 0; color: rgba(243,238,228,.82); max-width: 60ch; }
.family h2 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 8px; }
.family .kids-green { color: #53dd6c; }
@media (max-width: 860px) { .family { grid-template-columns: 1fr; } }

/* ---------- Cards / lists ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.card { padding: 30px 28px 32px; border-radius: var(--radius); background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; }
.bg-paper-2 .card { background: var(--paper); }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.card__dur { font: 500 13px/1 var(--f-body); letter-spacing: 0; color: var(--orange-deep); }
.card h3 { font-size: 24px; }
.card p { color: var(--ink-soft); }
.card ul { margin: 6px 0 0; padding: 0; list-style: none; }
.card li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line); font-size: 15.5px; }
.card li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 12px; height: 2px; background: var(--orange); }
.card--accent { background: var(--forest) !important; color: var(--paper); box-shadow: none; }
.card--accent p { color: rgba(243,238,228,.8); }
.card--accent li { border-color: var(--line-light); }
.card--accent .card__dur { color: var(--orange); }
@media (max-width: 960px) { .cards { grid-template-columns: 1fr; } }

.checklist { columns: 2; column-gap: 48px; margin: 0; padding: 0; list-style: none; }
.checklist li { break-inside: avoid; position: relative; padding: 14px 0 14px 40px; border-top: 1px solid var(--line); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 16px; width: 22px; height: 22px; border-radius: 50%; background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317291f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 14px no-repeat; }
.checklist strong { display: block; font: 500 18px/1.25 var(--f-head); margin-bottom: 4px; }
.checklist span { color: var(--ink-soft); font-size: 16px; }
.on-dark .checklist li { border-color: var(--line-light); }
.on-dark .checklist span { color: rgba(243,238,228,.75); }
@media (max-width: 760px) { .checklist { columns: 1; } }

.quote { font: 500 clamp(24px, 2.6vw, 36px)/1.25 var(--f-head); max-width: 24ch; letter-spacing: -.015em; }
.quote::before { content: "„"; color: var(--orange); }
.quote::after { content: "“"; color: var(--orange); }

.pull { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); counter-reset: p; }
.pull > div { counter-increment: p; padding-top: 22px; border-top: 2px solid var(--forest); }
.on-dark .pull > div { border-color: var(--orange); }
.pull > div::before { content: counter(p); display: block; font: 400 26px/1 var(--f-dirt); color: var(--orange-deep); margin-bottom: 14px; }
.on-dark .pull > div::before { color: var(--orange); }
.pull h3 { font-size: 21px; margin-bottom: 8px; }
.pull p { color: var(--ink-soft); margin: 0; }
.on-dark .pull p { color: rgba(243,238,228,.78); }
@media (max-width: 860px) { .pull { grid-template-columns: 1fr; } }

/* ---------- Photo band ---------- */
.band { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(10px, 1.4vw, 18px); }
.band > div { border-radius: var(--radius); overflow: hidden; }
.band img { width: 100%; height: clamp(220px, 30vw, 420px); object-fit: cover; border-radius: var(--radius); }
@media (max-width: 760px) { .band { grid-template-columns: 1fr 1fr; } .band > div:first-child { grid-column: 1 / -1; } .band img { height: 220px; } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 6vw, 96px); }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 24px 0; font: 500 19px/1.3 var(--f-head); -webkit-tap-highlight-color: transparent; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; position: relative; width: 34px; height: 34px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line); transition: background-color 200ms ease, transform 250ms var(--ease-out); }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: currentColor; transition: transform 250ms var(--ease-out); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i { background: var(--orange); box-shadow: none; }
.faq details[open] summary i::after { transform: rotate(0deg); }
.faq summary:active i { transform: scale(0.94); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease-out); }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--ink-soft); padding-bottom: 24px; margin: 0; max-width: 64ch; }
.faq details.is-open .faq__a { grid-template-rows: 1fr; }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; color: var(--paper); background: var(--forest); --edge-top-color: var(--paper); }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,41,31,.95) 0%, rgba(23,41,31,.55) 100%); }
.cta .wrap { position: relative; z-index: 2; }
.cta .lead { color: rgba(243,238,228,.84); }
.cta .kicker { color: var(--orange); }
.cta__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end; }
.cta__contact { display: grid; gap: 16px; }
.cta__contact a { display: flex; align-items: center; gap: 14px; text-decoration: none; font: 500 clamp(19px, 1.8vw, 23px)/1.2 var(--f-head); letter-spacing: 0; }
.cta__contact a span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line-light); flex: none; transition: background-color 200ms ease, color 200ms ease; }
.cta__contact svg { width: 20px; height: 20px; }
@media (hover: hover) and (pointer: fine) { .cta__contact a:hover span { background: var(--orange); color: var(--forest); box-shadow: none; } }
@media (max-width: 860px) { .cta__grid { grid-template-columns: 1fr; } }

/* ---------- Form ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font: 500 14px/1 var(--f-body); letter-spacing: 0; margin-bottom: 9px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: 400 17px/1.4 var(--f-body); color: var(--ink);
  background: #fbf9f4; border: 1.5px solid rgba(26,31,27,.18); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(255,122,26,.25); }
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice label { position: relative; cursor: pointer; display: block; padding: 18px 18px 18px 50px; border-radius: var(--radius); background: #fbf9f4; box-shadow: inset 0 0 0 1.5px rgba(26,31,27,.18); transition: box-shadow 200ms ease, background-color 200ms ease, transform 160ms var(--ease-out); }
.choice label:active { transform: scale(0.98); }
.choice input { position: absolute; opacity: 0; }
.choice label::before { content: ""; position: absolute; left: 18px; top: 50%; width: 20px; height: 20px; margin-top: -10px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(26,31,27,.35); background: #fff; transition: box-shadow 200ms var(--ease-out); }
.choice label:has(input:checked) { box-shadow: inset 0 0 0 2px var(--forest); background: #fff; }
.choice label:has(input:checked)::before { box-shadow: inset 0 0 0 6px var(--orange); }
.choice label:has(input:focus-visible) { outline: 2px solid var(--orange); outline-offset: 2px; }
.choice strong { display: block; font: 500 17px/1.2 var(--f-head); }
.choice small { color: var(--ink-soft); font-size: 14px; }
.hp { position: absolute !important; left: -9999px !important; }
.form__note { font-size: 14px; color: var(--ink-soft); margin: 4px 0 0; }
.form__status { grid-column: 1 / -1; padding: 16px 18px; border-radius: var(--radius); display: none; }
.form__status.is-ok { display: block; background: #e3eddc; color: #1c4424; }
.form__status.is-err { display: block; background: #fbe3d3; color: #7a2e00; }
@media (max-width: 640px) { .form, .choice { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-card { padding: 32px; border-radius: var(--radius); background: var(--forest); color: var(--paper); }
.contact-card dl { margin: 0; display: grid; gap: 18px; }
.contact-card dt { font: 500 13px/1 var(--f-body); letter-spacing: 0; color: rgba(243,238,228,.6); margin-bottom: 6px; }
.contact-card dd { margin: 0; font: 500 19px/1.3 var(--f-head); }
.contact-card a { text-decoration: none; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Legal ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 24px; margin: 44px 0 12px; }
.legal h3 { font-size: 19px; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); }
.page-top { padding-top: calc(var(--header-h) + clamp(60px, 8vw, 110px)); padding-bottom: clamp(70px, 8vw, 110px); --edge-color: var(--paper); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: rgba(243,238,228,.78); padding: clamp(64px, 8vw, 100px) 0 36px; font-size: 16px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__grid h3 { font-size: 16px; letter-spacing: 0; color: var(--paper); margin-bottom: 16px; font-weight: 600; }
.footer__grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__grid a { text-decoration: none; transition: color 200ms ease; }
@media (hover: hover) and (pointer: fine) { .footer__grid a:hover { color: var(--orange); } }
.footer__brand img { width: 190px; margin-bottom: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line-light); font-size: 14px; color: rgba(243,238,228,.55); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ---------- Scroll reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); filter: blur(4px); transition: opacity 700ms var(--ease-out), transform 800ms var(--ease-out), filter 700ms var(--ease-out); transition-delay: var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; filter: none; }
.js [data-reveal="clip"] { opacity: 1; filter: none; transform: none; }
.js [data-reveal="clip"] img { clip-path: inset(0 0 100% 0); transform: scale(1.08); transition: clip-path 1100ms var(--ease-in-out), transform 1400ms var(--ease-out); transition-delay: var(--d, 0ms); }
.js [data-reveal="clip"].is-in img { clip-path: inset(0 0 0 0); transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; }
  .hero__media img { transform: none; }
  .hero__title .line > span { transform: none; }
  .js [data-reveal] { transform: none; filter: none; transition: opacity 300ms ease; }
  .js [data-reveal="clip"] img { clip-path: none; transform: none; }
  .marquee__track { animation: none; }
  .module__text > p { transform: none !important; filter: none !important; }
  .seg__list--active { transition: none; }
}
