/* ============================================================
   Klaus Zettler — Onepage
   Highlight #f08600 · Marineblau · Weiß/Grau · animierte Linien
   ============================================================ */

:root {
  --orange: #f08600;
  --orange-d: #cf7300;
  --navy: #163a5e;
  --navy-d: #0e2740;
  --ink: #1c2733;
  --muted: #5c6675;
  --grey-1: #f4f6f9;
  --grey-2: #e9edf2;
  --line: rgba(22, 39, 51, 0.10);
  --white: #ffffff;
  --radius: 18px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1200px 600px at 80% -10%, #eef2f7, transparent),
    linear-gradient(180deg, #eef1f5 0%, #e7ebf1 100%);
  background-attachment: fixed;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
h1, h2, h3, h4 { font-family: "Sora", sans-serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
picture { display: contents; }
strong { font-weight: 600; }

/* animierter Linien-Hintergrund */
.net-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--navy)); z-index: 300; transition: width 0.1s linear;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 18px 0;
  background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(12px) saturate(140%);
  transition: background 0.4s var(--ease), box-shadow 0.4s, padding 0.4s var(--ease);
}
.nav.is-scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: 0 6px 26px rgba(22, 39, 51, 0.08); padding: 10px 0; }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { height: 70px; width: auto; transition: height 0.4s var(--ease); will-change: height; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 0.95rem; font-weight: 500; color: var(--ink); position: relative; transition: color 0.3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--orange); transition: width 0.3s var(--ease); }
.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--orange); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; z-index: 210; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-family: "Sora", sans-serif; font-weight: 500; font-size: 0.98rem; cursor: pointer; border: 1px solid transparent; transition: transform 0.25s var(--ease), box-shadow 0.3s, background 0.3s; }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-d); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(240, 134, 0, 0.32); }
.btn--full { width: 100%; text-align: center; }

/* ---------- Sections & Panels ---------- */
.section { padding: 110px 0; position: relative; }
.panel {
  background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 44px;
  box-shadow: 0 14px 40px rgba(22, 39, 51, 0.06);
}
.panel + .panel, .panel + .photo-grid, .photo-grid + .panel, .panel + .sub-title { margin-top: 26px; }
.panel--text p { color: var(--muted); }
.panel--text p + p { margin-top: 16px; }
.section__title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-top: 10px; }
.lead { margin-top: 18px; font-size: 1.1rem; color: var(--muted); max-width: 760px; }
.lead + .btn { margin-top: 24px; }
.lead a { color: var(--orange); font-weight: 500; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.75rem; font-weight: 600; color: var(--orange); font-family: "Sora", sans-serif; }
.sub-title { font-size: clamp(1.4rem, 3vw, 2rem); margin: 60px 0 24px; padding-left: 18px; border-left: 4px solid var(--orange); }
.sub-title--flush { margin: 0 0 18px; }

/* dropcap */
.dropcap::first-letter { font-family: "Sora", sans-serif; font-size: 3.4em; line-height: 0.8; float: left; padding: 6px 12px 0 0; color: var(--orange); font-weight: 700; }

/* striped lists */
.ul-striped { list-style: none; display: grid; gap: 2px; }
.ul-striped li { position: relative; padding: 12px 14px 12px 40px; border-radius: 8px; }
.ul-striped li:nth-child(odd) { background: var(--grey-1); }
.ul-striped li::before { content: ""; position: absolute; left: 14px; top: 18px; width: 14px; height: 8px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg); }

/* ============================================================
   HERO (80vh)
   ============================================================ */
.hero { position: relative; height: 80vh; min-height: 560px; overflow: hidden; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.06); transition: opacity 1.3s var(--ease), transform 7s var(--ease); }
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 22, 33, 0.86) 0%, rgba(14, 22, 33, 0.55) 45%, rgba(14, 22, 33, 0.25) 100%),
    linear-gradient(0deg, rgba(14, 22, 33, 0.55), transparent 45%);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; width: 100%; color: #fff; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.8rem; font-weight: 600; color: var(--orange); }
.hero__title { font-size: clamp(2.6rem, 7vw, 5.4rem); letter-spacing: -0.03em; margin-top: 14px; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero__title span { display: block; }
.hero__accent { color: var(--orange); }
.hero__claim { margin-top: 18px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,0.94); text-shadow: 0 2px 16px rgba(0,0,0,0.5); }

.hero__contact { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.cbtn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.02rem; transition: transform 0.25s var(--ease), background 0.3s, box-shadow 0.3s; }
.cbtn__ic { font-size: 1.05em; }
.cbtn--solid { background: var(--orange); color: #fff; box-shadow: 0 12px 28px rgba(240,134,0,0.35); }
.cbtn--solid:hover { background: var(--orange-d); transform: translateY(-3px); }
.cbtn--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.55); backdrop-filter: blur(6px); }
.cbtn--ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.hero__shop { display: inline-block; margin-top: 18px; font-weight: 500; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
.hero__shop:hover { color: var(--orange); border-color: var(--orange); }

.hero__dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero__dots button { width: 34px; height: 4px; border: 0; border-radius: 2px; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s; }
.hero__dots button.is-active { background: var(--orange); }
.hero__scroll { position: absolute; bottom: 24px; right: 30px; z-index: 3; }
.hero__scroll-line { display: block; width: 1px; height: 46px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--orange); animation: scrollDown 2s var(--ease) infinite; }
@keyframes scrollDown { 0% { top: -50%; } 100% { top: 100%; } }

/* ============================================================
   ANGEBOTE — Carousel
   ============================================================ */
.carousel { position: relative; margin: 40px 0 48px; }
.carousel__viewport {
  overflow: hidden; padding: 30px 6px 60px; cursor: grab;
  /* seitliche Karten weich auf 0 % Transparenz auslaufen lassen */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.carousel__viewport:active { cursor: grabbing; }
.carousel__track { display: flex; align-items: stretch; gap: 28px; transition: transform 0.6s var(--ease); will-change: transform; }
.carousel__track.no-anim { transition: none; }
.carousel__slide {
  flex: 0 0 62%; max-width: 540px;
  opacity: 0.35; transform: scale(0.86); filter: saturate(0.8);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.carousel__slide.is-current { opacity: 1; transform: scale(1); filter: none; }
.offer-card { height: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 14px 34px rgba(22,39,51,0.12); }
.offer-card__media { height: 250px; background: #ffffff; display: grid; place-items: center; padding: 24px; }
.offer-card__media img { max-height: 100%; max-width: 82%; width: auto; object-fit: contain; }
.offer-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.offer-card__price { display: inline-block; align-self: flex-start; background: var(--navy); color: #fff; font-family: "Sora", sans-serif; font-size: 0.85rem; font-weight: 600; padding: 6px 16px; border-radius: 999px; }
.offer-card h3 { font-size: 1.3rem; font-family: "Inter", system-ui, sans-serif; font-weight: 700; letter-spacing: -0.01em; }
.offer-card ul { list-style: none; display: grid; gap: 7px; margin-top: 4px; }
.offer-card li { position: relative; padding-left: 22px; color: var(--muted); font-size: 0.95rem; }
.offer-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
/* Referenz-Karten (Webdesign-Carousel) als Links mit Screenshot */
.offer-card--link { text-decoration: none; color: inherit; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.offer-card--link:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(22,39,51,0.20); }
.offer-card--link .offer-card__media { padding: 0; background: var(--grey-1); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.offer-card--link .offer-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: top center; }
.offer-card--link .offer-card__body { padding-top: 24px; }
.offer-card--link .offer-card__body p { color: var(--muted); font-size: 0.95rem; }
/* dezentes Label statt dunkler Pille, damit es nicht ins Bild ragt */
.offer-card--link .offer-card__price { background: none; color: var(--orange); padding: 0; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; }
.offer-card__go { margin-top: auto; padding-top: 6px; font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--orange); transition: transform 0.3s var(--ease); }
.offer-card--link:hover .offer-card__go { transform: translateX(6px); }
.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.95); color: var(--navy); font-size: 1.7rem; line-height: 1; cursor: pointer; box-shadow: 0 10px 26px rgba(22,39,51,0.16); transition: background 0.3s, color 0.3s, transform 0.3s; }
.carousel__arrow:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.08); }
.carousel__arrow--prev { left: 4px; }
.carousel__arrow--next { right: 4px; }
.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.carousel__dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.carousel__dots button.is-active { background: var(--orange); transform: scale(1.4); }

/* ============================================================
   FOTOGRAFIE / Galerien
   ============================================================ */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; box-shadow: 0 10px 28px rgba(22,39,51,0.08); }
.photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.8s var(--ease); }
.photo:hover img { transform: scale(1.08); }
.photo figcaption { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 16px; color: #fff; font-family: "Sora", sans-serif; font-weight: 500; font-size: 0.95rem; background: linear-gradient(to top, rgba(14,22,33,0.85), transparent); transform: translateY(8px); opacity: 0; transition: 0.4s var(--ease); }
.photo:hover figcaption { transform: none; opacity: 1; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 26px; }
.feature h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature h3::before { content: ""; display: block; width: 40px; height: 4px; background: var(--navy); border-radius: 2px; margin-bottom: 14px; }
.feature p { color: var(--muted); }
.pano { margin-top: 26px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 44px rgba(22,39,51,0.12); }
.pano img { width: 100%; height: auto; }

/* ---------- Hochzeitsfotografie — editorial Mosaik ---------- */
.wedding { margin-top: 60px; display: flex; flex-direction: column; gap: 18px; }
.wedding--top { margin-top: 0; }
.w-row { display: grid; gap: 18px; }
.w-row--feature { grid-template-columns: 1.05fr 0.95fr; min-height: 440px; }
.w-row--triA { grid-template-columns: 1.5fr 1fr 1fr; min-height: 300px; }
.w-row--triB { grid-template-columns: 1fr 1.3fr 1fr; min-height: 320px; }
.w-row--triC { grid-template-columns: 1fr 1fr 1.4fr; min-height: 300px; }
.w-row--split { grid-template-columns: 0.92fr 1.08fr; min-height: 360px; }
.w-row--duo { grid-template-columns: 1fr 1fr; min-height: 300px; }

.w-tile { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 32px rgba(22,39,51,0.10); }
.w-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.8s var(--ease); }
.w-tile:hover img { transform: scale(1.07); }
.w-tile figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 16px 18px; color: #fff;
  font-family: "Sora", sans-serif; font-weight: 500; font-size: 0.95rem;
  background: linear-gradient(to top, rgba(14,22,33,0.85), transparent);
  transform: translateY(8px); opacity: 0; transition: 0.4s var(--ease);
}
.w-tile:hover figcaption { transform: none; opacity: 1; }

.w-note {
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 40px;
  box-shadow: 0 14px 40px rgba(22,39,51,0.06);
}
.w-note h2, .w-note h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.12; }
.w-note p { margin-top: 14px; color: var(--muted); }
.w-note .eyebrow { margin-bottom: 12px; }
.w-note__btn { align-self: flex-start; margin-top: 22px; }
.w-note--accent { background: rgba(255,255,255,0.9); border-left: 4px solid var(--orange); }
.w-note--accent h3 { color: var(--navy); }
.w-note a:not(.btn) { color: var(--orange); font-weight: 500; }
.note-list { list-style: none; display: grid; gap: 10px; margin-top: 16px; }
.note-list li { position: relative; padding-left: 26px; color: var(--muted); }
.note-list li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg); }

/* Fakten-Chips (Über mich) */
.facts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.fact { background: var(--grey-1); border: 1px solid var(--line); border-radius: 14px; padding: 12px 18px; min-width: 120px; }
.fact__num { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--orange); line-height: 1.1; }
.fact__label { font-size: 0.8rem; color: var(--muted); }
.hobbies { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hobbies li { font-family: "Sora", sans-serif; font-size: 0.88rem; padding: 8px 16px; border-radius: 999px; background: var(--grey-1); border: 1px solid var(--line); transition: background 0.3s, color 0.3s, transform 0.3s var(--ease); }
.hobbies li:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }

.w-contact {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 34px 40px;
  box-shadow: 0 18px 44px rgba(14,39,64,0.22); position: relative; overflow: hidden;
}
.w-contact::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); }
.w-contact__text h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: #fff; }
.w-contact__text p { margin-top: 8px; color: rgba(234,240,246,0.82); max-width: 460px; }
.w-contact__btns { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .w-row, .w-row--feature, .w-row--triA, .w-row--triB, .w-row--triC, .w-row--split { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .w-tile { height: 240px; }
  .w-note { padding: 30px 28px; }
  .w-contact { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   WEBDESIGN — Hover Cards
   ============================================================ */
.web-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 26px 0; }
.web-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; box-shadow: 0 12px 32px rgba(22,39,51,0.10); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.web-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.web-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(22,39,51,0.2); }
.web-card:hover img { transform: scale(1.1); }
.web-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: 24px; color: #fff; background: linear-gradient(to top, rgba(14,39,64,0.92) 0%, rgba(22,58,94,0.45) 50%, rgba(22,58,94,0) 100%); opacity: 0; transition: opacity 0.4s var(--ease); }
.web-card:hover .web-card__overlay { opacity: 1; }
.web-card__title { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.05rem; line-height: 1.25; transform: translateY(10px); transition: transform 0.45s var(--ease); }
.web-card:hover .web-card__title { transform: none; }
.web-card__go { font-size: 0.85rem; color: var(--orange); font-weight: 600; transform: translateY(10px); transition: transform 0.5s var(--ease); }
.web-card:hover .web-card__go { transform: none; }

/* Text-Überschriften innerhalb von Panels */
.panel-h { font-size: 1.45rem; margin: 0 0 8px; }
.panel--text p + .panel-h { margin-top: 26px; }
.svc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; margin-top: 8px; }
.svc-list li { position: relative; padding-left: 30px; color: var(--muted); }
.svc-list li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 16px; height: 9px; border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(-45deg); }

/* ============================================================
   SCHULUNGEN — Kurs-Cards (Navy)
   ============================================================ */
.course-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.course-card { background: var(--navy); color: #eaf0f6; border-radius: var(--radius); padding: 28px 26px; box-shadow: 0 16px 40px rgba(14,39,64,0.22); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease); position: relative; overflow: hidden; isolation: isolate; }
/* obere Akzentleiste — wächst beim Hover von links */
.course-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); transform: scaleX(0.18); transform-origin: left; transition: transform 0.5s var(--ease); }
/* weicher Orange-Schein, der von oben aufzieht */
.course-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(130% 90% at 50% 0%, rgba(240,134,0,0.22), transparent 62%); opacity: 0; transition: opacity 0.45s var(--ease); }
.course-card:hover { transform: translateY(-10px); background: var(--navy-d); box-shadow: 0 30px 60px rgba(14,39,64,0.38); }
.course-card:hover::before { transform: scaleX(1); }
.course-card:hover::after { opacity: 1; }
.course-card h4 { font-size: 1.25rem; color: #fff; margin-bottom: 12px; transition: color 0.45s var(--ease); }
.course-card:hover h4 { color: var(--orange); }
.course-card p { color: rgba(234,240,246,0.8); font-size: 0.95rem; margin-bottom: 12px; }
.course-card ul { list-style: none; display: grid; gap: 6px; }
.course-card li { position: relative; padding-left: 20px; font-size: 0.92rem; color: rgba(234,240,246,0.9); }
.course-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: start; }
.about__portrait { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(22,39,51,0.16); }
.about__portrait img { width: 100%; height: auto; }
.about__shots { margin-top: 16px; }
.about__shots .photo { aspect-ratio: 3 / 2; }
.about__text p { margin-top: 16px; color: var(--muted); }
.about__text a { color: var(--orange); font-weight: 500; }
.about__links { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.about__links span { color: var(--muted); font-size: 0.9rem; }
.about__links a { font-family: "Sora", sans-serif; font-size: 0.88rem; padding: 7px 14px; border-radius: 999px; background: var(--grey-1); border: 1px solid var(--line); color: var(--ink); transition: background 0.3s, color 0.3s; }
.about__links a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.about__links a.about__links-all { background: var(--orange); color: #fff; border-color: var(--orange); }
.about__links a.about__links-all:hover { background: var(--orange-d); border-color: var(--orange-d); }

/* ============================================================
   LAUFSPORT
   ============================================================ */
.page-top { padding-top: 140px; }

/* Sticky Lauf-Leiste (rechts) */
.run-rail {
  position: fixed; top: 50%; right: 18px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px; padding: 10px;
  max-height: calc(100vh - 120px); overflow-y: auto; overscroll-behavior: contain;
  background: rgba(255,255,255,0.72); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 16px 40px rgba(22,39,51,0.14);
  opacity: 0; pointer-events: none; transform: translate(140%, -50%);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  scrollbar-width: thin;
}
.run-rail.is-visible { opacity: 1; pointer-events: auto; transform: translate(0, -50%); }
.run-rail__item { position: relative; flex: 0 0 auto; display: block; width: 100px; height: 100px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(22,39,51,0.12); outline: 2px solid transparent; outline-offset: 0; transition: outline-color 0.3s, transform 0.3s var(--ease); }
.run-rail__item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s var(--ease); }
.run-rail__item:hover { transform: scale(1.04); }
.run-rail__item:hover img { transform: scale(1.1); }
.run-rail__label { position: absolute; inset: auto 0 0 0; padding: 16px 6px 6px; color: #fff; text-align: center;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.72rem; line-height: 1.1;
  background: linear-gradient(to top, rgba(14,22,33,0.92), transparent); }
.run-rail__item.is-active { outline-color: var(--orange); }
.run-rail__item.is-active .run-rail__label { background: linear-gradient(to top, rgba(240,134,0,0.94), transparent); }
@media (max-width: 1400px) { .run-rail { display: none; } }
@media (prefers-reduced-motion: reduce) { .run-rail { transition: opacity 0.3s; } }

/* Kopf: Textblock + Klamm-Run-Card nebeneinander */
.head-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; align-items: stretch; }
.klamm-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.klamm-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(22,39,51,0.14); }
.klamm-card__logo { width: 190px; max-width: 70%; height: auto; margin-bottom: 6px; }
.klamm-card__lead { color: var(--muted); font-size: 0.95rem; }
.klamm-card__runs { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.klamm-card__runs li { position: relative; padding-left: 18px; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }
.klamm-card__runs li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.klamm-card__runs strong { color: var(--ink); font-weight: 600; }
.klamm-card__go { margin-top: auto; padding-top: 16px; font-family: "Sora", sans-serif; font-weight: 600; color: var(--orange);
  transition: transform 0.3s var(--ease); }
.klamm-card:hover .klamm-card__go { transform: translateX(5px); }
@media (max-width: 860px) {
  .head-grid { grid-template-columns: 1fr; }
}

/* Impressum */
.imp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.imp-card { position: relative; overflow: hidden; transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s; }
.imp-card--wide { grid-column: 1 / -1; }
.imp-card--accent { border-top: 4px solid var(--orange); }
/* dem Cursor folgender Orange-Schein (per JS über --mx/--my) */
.imp-card::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity 0.45s var(--ease);
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(240,134,0,0.16), transparent 60%); }
.imp-card:hover::before { opacity: 1; }
.imp-card:hover { border-color: rgba(240,134,0,0.45); transform: translateY(-4px); box-shadow: 0 22px 48px rgba(22,39,51,0.12); }
.imp-card > * { position: relative; z-index: 1; }
.imp-card__title { font-size: 1.2rem; margin-bottom: 12px; padding-left: 14px; border-left: 3px solid var(--orange); }
.imp-card__name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.3rem; }
.imp-card__text { color: var(--muted); line-height: 1.7; }
.imp-card__text a, .imp-contact a { color: var(--orange); font-weight: 500; }
.imp-contact { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.imp-contact li { display: flex; gap: 14px; align-items: baseline; }
.imp-contact__label { flex: 0 0 86px; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; color: var(--navy); font-family: "Sora", sans-serif; }
@media (max-width: 720px) {
  .imp-grid { grid-template-columns: 1fr; }
}

/* Übersichts-Mosaik */
.run-overview { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; margin-top: 30px; grid-auto-flow: dense; }
.run-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 32px rgba(22,39,51,0.12); }
.run-card--big { grid-column: span 2; }
.run-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.7s var(--ease); }
.run-card:hover img { transform: scale(1.06); }
.run-card__cap { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; padding: 20px; color: #fff;
  background: linear-gradient(to top, rgba(14,22,33,0.88) 0%, rgba(14,22,33,0.25) 45%, transparent 75%); }
.run-card__meta { font-family: "Sora", sans-serif; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.run-card__title { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.1rem; line-height: 1.15; }
.run-card--big .run-card__title { font-size: 1.5rem; }
.run-card__sub { font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-top: 2px; }

/* Detail-Sektionen */
.run-section { padding-top: 40px; padding-bottom: 40px; }
.run-meta { margin-top: 8px; font-family: "Sora", sans-serif; font-weight: 600; color: var(--orange); }
.run-teaser { margin-top: 14px; color: var(--muted); }
.run-full { display: none; }
.run-full.is-open { display: block; }
.run-full p { margin-top: 14px; color: var(--muted); }
.readmore { align-self: flex-start; margin-top: 16px; padding: 0; background: none; border: 0; cursor: pointer;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--orange);
  border-bottom: 2px solid transparent; transition: border-color 0.3s; }
.readmore:hover { border-color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-d); color: #cdd8e4; padding: 70px 0 28px; margin-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.footer__logo { height: 70px; width: auto; background: #fff; padding: 10px 14px; border-radius: 12px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.95rem; opacity: 0.8; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__big { font-family: "Sora", sans-serif; font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 600; color: #fff; transition: color 0.3s; }
.footer__big:hover { color: var(--orange); }
.footer__row { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.footer__row a { opacity: 0.85; transition: opacity 0.3s, color 0.3s; }
.footer__row a:not(.footer__social):hover { opacity: 1; color: var(--orange); }
.footer__social { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; font-family: "Sora", sans-serif; font-weight: 700; }
.footer__social:hover { background: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; opacity: 0.8; }
.footer__top:hover { color: var(--orange); }

/* ============================================================
   REVEAL (lazy fade-in)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-hero] { opacity: 0; transform: translateY(30px); }
.is-loaded [data-hero] { animation: heroUp 0.9s var(--ease) forwards; }
.is-loaded .hero__eyebrow { animation-delay: 0.1s; }
.is-loaded .hero__title span:nth-child(1) { animation-delay: 0.2s; }
.is-loaded .hero__title span:nth-child(2) { animation-delay: 0.32s; }
.is-loaded .hero__title span:nth-child(3) { animation-delay: 0.44s; }
.is-loaded .hero__claim { animation-delay: 0.56s; }
.is-loaded .hero__contact { animation-delay: 0.68s; }
.is-loaded .hero__shop { animation-delay: 0.8s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-hero] { opacity: 1; transform: none; transition: none; animation: none !important; }
  .hero__slide { transition: opacity 0.4s; }
  .hero__scroll-line::after, .net-canvas { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .carousel__slide { flex-basis: 74%; }
  .web-cards, .course-cards, .photo-grid, .photo-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .run-overview { grid-template-columns: repeat(2, 1fr); }
  .run-card--big { grid-column: span 2; grid-row: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .panel { padding: 32px 28px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav__logo { height: 50px; }
  .nav.is-scrolled .nav__logo { height: 40px; }
  /* backdrop-filter erzeugt einen Containing-Block -> fixiertes Menü würde sonst auf Navhöhe begrenzt */
  .nav, .nav.is-scrolled { background: rgba(255,255,255,0.97); backdrop-filter: none; box-shadow: 0 2px 14px rgba(22,39,51,0.08); }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(84vw, 340px);
    flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 6px;
    padding: 88px 22px 32px; overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: #ffffff; border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(22,39,51,0.25);
    transform: translateX(100%); transition: transform 0.38s var(--ease); z-index: 205;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.18rem; font-weight: 500; padding: 14px 12px; border-radius: 12px; color: var(--ink); }
  .nav__links a::after { display: none; }
  .nav__links a:hover, .nav__links a:active, .nav__links a.is-active { background: var(--grey-1); color: var(--orange); }
  .nav__toggle { display: flex; position: relative; z-index: 210; }
  /* Hintergrund-Abdunklung */
  .nav__scrim { position: fixed; inset: 0; z-index: 150; background: rgba(14,22,33,0.5); opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
  .nav__scrim.is-visible { opacity: 1; pointer-events: auto; }
  .carousel__slide { flex-basis: 86%; }
  .web-cards, .course-cards, .photo-grid, .photo-grid--3 { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .carousel__arrow { width: 44px; height: 44px; font-size: 1.4rem; }
  .run-overview { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .run-card--big { grid-column: span 1; grid-row: span 1; }
  .run-card--big .run-card__title { font-size: 1.25rem; }
  .hero__contact { flex-direction: column; align-items: flex-start; }
  .cbtn { width: auto; }
}

/* ============================================================
   LIGHTBOX (Laufsport)
   ============================================================ */
body.nav-open, body.lb-open { overflow: hidden; }
.run-section .w-tile { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(10, 14, 20, 0.93); }
.lightbox.is-open { display: flex; }
.lightbox__stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 94vw; }
.lightbox__stage img { max-width: 94vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: 10px; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55); background: #0a0e14; }
.lightbox__stage figcaption { color: #fff; font-family: "Sora", sans-serif; font-weight: 500; font-size: 0.95rem; text-align: center; }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; transition: background 0.3s; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; transition: background 0.3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--orange); }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
@media (max-width: 640px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
}
