/* ==========================================================================
   ALLGÄU FILMS — Stylesheet
   ========================================================================== */

:root {
  --bg-main: #0B0C0E;
  --bg-card: #16181D;
  --text-primary: #F4F5F7;
  --text-muted: #94A3B8;
  --accent-orange: #F97316;
  --accent-orange-hover: #EA580C;
  --accent-orange-glow: rgba(249, 115, 22, 0.15);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(249, 115, 22, 0.4);
  --shadow-elevated: 0 24px 60px rgba(0,0,0,0.4);

  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-w: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 strong, h2 strong, h3 strong, h4 strong {
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.text-accent { color: var(--accent-orange); font-weight: 800; }

.hero-line.text-accent { font-weight: inherit; }

.text-pulse {
  display: inline-block;
  animation: text-pulse 2.4s ease-in-out infinite;
}

.text-pulse-alt {
  display: inline-block;
  animation: text-pulse 2.4s ease-in-out infinite;
  animation-delay: 1.2s;
}

.heading-pulse {
  display: inline-block;
  font-weight: 800;
}

@keyframes text-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-orange);
}

section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 720px;
  margin-bottom: 48px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: #fff;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

.btn-pulse {
  animation: btn-pulse-glow 2.4s ease-in-out infinite;
}

.btn-pulse:hover {
  animation-play-state: paused;
}

@keyframes btn-pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35), 0 0 0 rgba(249, 115, 22, 0); }
  50% { box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35), 0 0 22px 6px rgba(249, 115, 22, 0.45); }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--accent-orange);
  background: var(--accent-orange-glow);
  transform: translateY(-3px);
}

.about .btn-ghost {
  background: rgba(17, 24, 39, 0.04);
  border-color: rgba(17, 24, 39, 0.15);
}

.experience-details .btn-ghost,
.experience-channel-link,
.hiking-channel-link {
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.6);
  color: #F87171;
}

.experience-details .btn-ghost:hover,
.experience-channel-link:hover,
.hiking-channel-link:hover {
  border-color: #DC2626;
  background: rgba(220, 38, 38, 0.22);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}


.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 54px;
  height: calc(114px - 57px * var(--shrink, 0));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  transition: opacity 0.3s var(--ease);
}

.logo span { color: var(--accent-orange); }

.logo-img {
  height: auto;
  max-height: calc(80px - 40px * var(--shrink, 0));
  width: auto;
  display: block;
  position: relative;
  top: 0px;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 14px rgba(249, 115, 22, 0.45));
}

.footer-logo-img {
  height: auto;
  max-height: 40px;
  width: auto;
  display: block;
}

.main-nav {
  --panel-text-muted: #4B5563;
  position: fixed;
  top: 130px;
  right: 24px;
  width: min(320px, 80vw);
  max-height: calc(100vh - 160px);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(248, 249, 250, 0.94), rgba(248, 249, 250, 0.86) 60%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 32px;
  transform: translateY(-70px);
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
  transition: transform 0.55s var(--ease), opacity 0.4s var(--ease), filter 0.5s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow-y: auto;
  z-index: 999;
}

.main-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}

.main-nav.is-dark-panel {
  --panel-text-muted: #CBD5E1;
  background: linear-gradient(155deg, rgba(11, 12, 14, 0.92), rgba(11, 12, 14, 0.82) 60%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--panel-text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}

.nav-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent-orange);
  transition: width 0.3s var(--ease);
}

.nav-link:not(.nav-cta):hover {
  color: var(--accent-orange);
}

.nav-link:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}


.nav-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1001;
  transition: transform 0.3s var(--ease);
}

.nav-toggle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 8px;
  background-color: rgba(249, 115, 22, 0.15);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}

.nav-toggle:hover {
  transform: scale(1.08);
}

.nav-toggle:hover::before {
  opacity: 1;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-header.is-light-bg .nav-toggle span {
  background: #1F2937;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
  padding: 140px 32px 120px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050506;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11,12,14,0.04) 0%, rgba(11,12,14,0.44) 75%),
    linear-gradient(180deg, rgba(11,12,14,0.3) 0%, rgba(11,12,14,0.17) 55%, var(--bg-main) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(1.8rem, 7vw, 4.6rem);
  margin-bottom: 24px;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(0.7rem, 1.9vw, 1.2rem);
  color: var(--text-muted);
  white-space: nowrap;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}

.scroll-hint span {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-orange), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
}

/* ==========================================================================
   LEISTUNGEN & PORTFOLIO
   ========================================================================== */

.work { background: var(--bg-main); padding: 60px 0 60px; }

.work h2 { margin-bottom: 16px; max-width: none; white-space: nowrap; }

.work-subline {
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.format-card {
  scroll-margin-top: 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.format-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-elevated), 0 0 0 1px var(--accent-orange-glow), 0 0 40px var(--accent-orange-glow);
  transform: scale(1.02);
}

.format-video {
  display: flex;
  align-items: center;
}

.format-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-main);
}

.format-video-frame--portrait {
  aspect-ratio: 9 / 16;
  max-width: 220px;
  margin: 0 auto;
}

.format-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- YouTube 2-Klick-Consent ---------- */
.yt-consent {
  position: absolute;
  inset: 0;
  background: #000;
}

.yt-consent__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-consent__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.yt-consent__play:hover,
.yt-consent__play:focus-visible {
  transform: translate(-50%, -50%) scale(1.12);
}

.yt-consent__play-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.55));
}

.yt-consent__notice {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 16px;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.85) 100%);
}

.yt-consent__notice a {
  color: #fff;
  text-decoration: underline;
}

.format-details {
  display: flex;
  flex-direction: column;
}

.format-details h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.format-text .format-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent-orange);
  background: var(--accent-orange-glow);
  border: 1px solid var(--border-accent);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.format-text { margin-bottom: 20px; }

.format-text h4 {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.format-text p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.format-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ==========================================================================
   WORKFLOW
   ========================================================================== */

.workflow { background: #101215; padding: 60px 0 100px; }

.workflow h2 { margin-bottom: 16px; }

.workflow-subline {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
  font-size: 1.05rem;
}

.workflow-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.workflow-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 55px;
  width: 1px;
  background: var(--border-color);
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
}

.workflow-marker {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: marker-glow 6s ease-in-out infinite;
}

@keyframes marker-glow {
  0%, 20%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
  8% { box-shadow: 0 0 28px 8px rgba(249, 115, 22, 0.55); }
}

.workflow-timeline .workflow-step:nth-child(1) .workflow-marker { animation-delay: 0s; }
.workflow-timeline .workflow-step:nth-child(1) .workflow-content { animation-delay: 0s; }
.workflow-timeline .workflow-step:nth-child(2) .workflow-marker { animation-delay: 1.2s; }
.workflow-timeline .workflow-step:nth-child(2) .workflow-content { animation-delay: 1.2s; }
.workflow-timeline .workflow-step:nth-child(3) .workflow-marker { animation-delay: 2.4s; }
.workflow-timeline .workflow-step:nth-child(3) .workflow-content { animation-delay: 2.4s; }
.workflow-timeline .workflow-step:nth-child(4) .workflow-marker { animation-delay: 3.6s; }
.workflow-timeline .workflow-step:nth-child(4) .workflow-content { animation-delay: 3.6s; }
.workflow-timeline .workflow-step:nth-child(5) .workflow-marker { animation-delay: 4.8s; }
.workflow-timeline .workflow-step:nth-child(5) .workflow-content { animation-delay: 4.8s; }

.workflow-step:first-child::before,
.workflow-step:last-child::after {
  content: "";
  position: absolute;
  left: 55px;
  transform: translateX(-50%);
  width: 3px;
  height: calc(50% - 55px);
  background: #101215;
}

.workflow-step:first-child::before { top: 0; }
.workflow-step:last-child::after { bottom: 0; }

.workflow-marker svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  animation: content-glow 6s ease-in-out infinite;
}

.workflow-content:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-elevated), 0 0 0 1px var(--accent-orange-glow), 0 0 40px var(--accent-orange-glow) !important;
  transform: scale(1.02);
}

.workflow-step:has(.workflow-content:hover) .workflow-marker {
  box-shadow: 0 0 0 1px var(--accent-orange-glow), 0 0 40px var(--accent-orange-glow) !important;
}

@keyframes content-glow {
  0%, 20%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
  8% { box-shadow: 0 0 40px 2px rgba(249, 115, 22, 0.35); }
}

.workflow-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.workflow-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.workflow-content p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.workflow-timeline .workflow-step:nth-child(2) { transition-delay: 0.08s; }
.workflow-timeline .workflow-step:nth-child(3) { transition-delay: 0.16s; }
.workflow-timeline .workflow-step:nth-child(4) { transition-delay: 0.24s; }
.workflow-timeline .workflow-step:nth-child(5) { transition-delay: 0.32s; }

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about {
  --bg-main: #F8F9FA;
  --bg-card: #FFFFFF;
  --text-primary: #111827;
  --text-muted: #4B5563;
  --border-color: #E5E7EB;
  --shadow-elevated: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #EEF0F2;
  padding-top: 12px;
}

.about-highlight {
  color: #000;
}

.about-cta-text {
  display: inline-block;
  font-size: 1.15rem;
  color: var(--accent-orange);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "media heading"
    "media body";
  column-gap: 64px;
  row-gap: 26px;
  align-items: center;
  padding: 60px 0 64px;
}

.about-media { grid-area: media; }
.about-heading { grid-area: heading; }
.about-body { grid-area: body; }

.about-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #EEF0F2;
  pointer-events: none;
}

.about-media { position: relative; width: 100%; }

.about-image {
  width: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-color: var(--bg-main);
  background-size: cover;
  background-position: calc(50% + 19px) center;
  border: 1px solid var(--border-color);
  transition: transform 0.5s var(--ease);
}

.about-media:hover .about-image {
  transform: scale(1.06);
}

.about-heading h2 { margin-bottom: 24px; }

.about-body p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.about-body p.about-highlight-heading {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.about-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-orange);
}

.about-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hiking {
  position: relative;
  z-index: 0;
}

.hiking::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #D6DADF;
  pointer-events: none;
}

.experience {
  position: relative;
  z-index: 0;
  margin-top: 7px;
  padding: 40px 0 52px;
}

.experience::before {
  content: "";
  position: absolute;
  top: -42px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(180deg, #ffffff 0%, #D6DADF 100%);
  z-index: -1;
  pointer-events: none;
}

.experience h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 780px;
  margin-bottom: 20px;
}

.experience-intro {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 24px;
}

.experience-channel-link {
  margin-bottom: 24px;
}

.experience-intro-row {
  display: flex;
  align-items: flex-end;
  gap: 19px;
  margin-bottom: 40px;
}

.experience-intro-col {
  flex: 0 1 760px;
  max-width: 760px;
  min-width: 0;
}

.experience-note {
  max-width: 760px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--border-color);
}

.experience-note-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.experience-note p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.experience-note-photo-wrap {
  flex: 1;
  min-width: 0;
  height: 440px;
  border-radius: var(--radius-md);
}

.experience-note-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--ease);
}

.experience-note-photo-wrap:hover .experience-note-photo {
  transform: scale(1.06);
}

.format-note {
  max-width: 820px;
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--accent-orange);
  box-shadow: 0 0 0 1px var(--accent-orange-glow), 0 0 40px var(--accent-orange-glow);
}

.format-note-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.format-note p:not(.format-note-title) {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}


.experience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.experience-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-elevated), 0 0 0 1px var(--accent-orange-glow), 0 0 40px var(--accent-orange-glow);
  transform: scale(1.02);
}

.experience-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-main);
}

.experience-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.experience-details {
  display: flex;
  flex-direction: column;
}

.experience-details h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 18px;
}

.experience-text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.experience-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.experience-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.experience-points-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.experience-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.experience-badges li {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-orange-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experience-details .btn {
  align-self: flex-start;
}

.hiking {
  margin-top: 0px;
  padding-top: 24px;
  padding-bottom: 102px;
}

.hiking h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 780px;
  margin-bottom: 20px;
}

.hiking-intro {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 24px;
}

.hiking-channel-link {
  margin-bottom: 40px;
}

.hiking-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.hiking-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-elevated), 0 0 0 1px var(--accent-orange-glow), 0 0 40px var(--accent-orange-glow);
  transform: scale(1.02);
}

.hiking-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-main);
}

.hiking-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hiking-details {
  display: flex;
  flex-direction: column;
}

.hiking-details h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 18px;
}

.hiking-text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.hiking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hiking-badges li {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-orange-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hiking-details .btn {
  align-self: flex-start;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */

.kontakt {
  --bg-main: #F8F9FA;
  --bg-card: #FFFFFF;
  --text-primary: #111827;
  --text-muted: #4B5563;
  --border-color: #E5E7EB;
  --shadow-elevated: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: var(--bg-main);
  padding: 100px 0 160px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}

.kontakt-intro h2 { margin-bottom: 20px; }

.kontakt-intro p:not(.section-tag) {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 400px;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt-details a {
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.25s var(--ease);
}

.kontakt-details a:hover { color: var(--accent-orange); }

.kontakt-details span { color: var(--text-muted); font-size: 0.92rem; }

.kontakt-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.15), 0 0 120px rgba(249, 115, 22, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(75, 85, 99, 0.5); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-orange-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F97316' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.88rem;
  min-height: 1.2em;
  color: var(--accent-orange);
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a,
.footer-social a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover,
.footer-social a:hover { color: var(--accent-orange); }

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.5);
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--accent-orange); transform: scale(1.08); }

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.25s var(--ease);
  z-index: 900;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ==========================================================================
   LEGAL (Datenschutz / Impressum)
   ========================================================================== */

.legal {
  --bg-main: #F8F9FA;
  --bg-card: #FFFFFF;
  --text-primary: #111827;
  --text-muted: #4B5563;
  --border-color: #E5E7EB;
  background: #EEF0F2;
  padding: 160px 0 100px;
}

.legal-container {
  max-width: 820px;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.5rem;
  margin-top: 56px;
  margin-bottom: 16px;
}

.legal h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal h4 {
  font-size: 0.98rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-address {
  color: var(--text-muted);
}

.legal-list {
  margin: 0 0 16px 20px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.legal-list li {
  margin-bottom: 10px;
}

.legal a {
  color: var(--accent-orange);
}

.legal-source {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "body";
    gap: 20px;
  }

  .kontakt-grid { grid-template-columns: 1fr; }

  .about-media { max-width: 360px; margin: 8px auto; }

  .format-card { grid-template-columns: 1fr; scroll-margin-top: 80px; }

  .hiking-card { grid-template-columns: 1fr; }

  .experience-card { grid-template-columns: 1fr; }

  .experience { margin-top: 40px; padding: 56px 0; }

  .experience::before { top: -30px; }

  .hiking { padding-top: 40px; padding-bottom: 45px; }
}

@media (max-width: 760px) {
  .header-inner { height: 60px; }

  .work h2 { white-space: normal; }


  .main-nav {
    top: 76px;
    left: 50%;
    right: auto;
    width: min(320px, 85vw);
    max-height: calc(100vh - 100px);
    align-items: center;
    text-align: center;
    transform: translate(-50%, -40px);
    background: rgba(248, 249, 250, 1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav.is-open {
    transform: translate(-50%, 0);
  }

  .main-nav.is-dark-panel {
    background: rgba(11, 12, 14, 1);
  }

  .logo-img { max-height: 42px; }

  .workflow-step { grid-template-columns: 72px 1fr; gap: 18px; }
  .workflow-marker { width: 72px; height: 72px; }

  .experience-intro-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .experience-intro-col {
    flex: none;
    max-width: none;
  }

  .experience-note-photo-wrap {
    flex: none;
    width: 100%;
    height: 340px;
  }
  .workflow-marker svg { width: 30px; height: 30px; }
  .workflow-timeline::before { left: 36px; }
  .workflow-content { padding: 20px 20px; }

  .workflow-step:first-child::before,
  .workflow-step:last-child::after {
    left: 36px;
    height: calc(50% - 36px);
  }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: auto; max-width: 80%; }

  .hero-sub {
    white-space: normal;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-row { grid-template-columns: 1fr; }

  .kontakt-form { padding: 28px; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 50px; }
}
