:root {
  --bg: #0a0d10;
  --bg-alt: #10151a;
  --surface: #171e26;
  --surface-hover: #1c252f;
  --text: #f3f6f9;
  --text-muted: #94a3b3;
  --accent: #38bdf8;
  --accent-bright: #7dd3fc;
  --accent-dim: #0284c7;
  --accent-glow: rgba(56, 189, 248, 0.22);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 12px;
  --radius-lg: 22px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
  --duration-fast: 0.3s;
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
  transition: color var(--duration-normal) var(--ease-smooth);
}

a:hover {
  color: #93c5fd;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.container-narrow {
  width: min(720px, calc(100% - 2rem));
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 13, 16, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition:
    background var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  flex-shrink: 0;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.logo-img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.logo:hover .logo-img,
.logo:focus-visible .logo-img {
  transform: scale(1.03);
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.15;
  white-space: nowrap;
}

.logo-amp {
  letter-spacing: 0.04em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
}

.logo-text em {
  font-style: normal;
  color: var(--accent);
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: calc(100% - 22rem);
  pointer-events: none;
}

.site-nav a {
  pointer-events: auto;
}

.site-nav a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.site-nav a:not(.btn):hover {
  color: var(--text);
}

.nav-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-bright) !important;
  text-decoration: none;
}

.nav-phone:hover {
  color: var(--text) !important;
}

.header-end {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-toggle {
  z-index: 101;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform var(--duration-fast) var(--ease-smooth),
    opacity var(--duration-fast) var(--ease-smooth);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform var(--duration-normal) var(--ease-smooth),
    background var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth),
    color var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dim));
  color: #0f172a;
  box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #bae6fd, var(--accent));
  color: #0f172a;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.nav-cta-mobile {
  display: none;
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  background:
    radial-gradient(ellipse 90% 60% at 85% 0%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(2, 132, 199, 0.08), transparent),
    var(--bg);
}

/* Startseite: Slogan mittig */
.hero-summit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding: clamp(2rem, 5vh, 3.5rem) 0 clamp(3rem, 7vh, 5rem);
  overflow-x: hidden;
  overflow-y: visible;
  background:
    radial-gradient(ellipse 70% 45% at 50% 18%, rgba(56, 189, 248, 0.14), transparent 60%),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(2, 132, 199, 0.12), transparent 50%),
    var(--bg);
}

.hero-mountains-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-mountains-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(10, 13, 16, 0.5) 22%,
    transparent 46%,
    rgba(10, 13, 16, 0.25) 100%
  );
}

.hero-mountains-svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 152%;
  max-width: 2100px;
  height: min(70vh, 500px);
  transform: translateX(-50%);
  z-index: 1;
}

.hero-mountains__ridge {
  fill: none;
  stroke: #fff;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 10;
}

.hero-mountains__ridge--far {
  opacity: 0.2;
  stroke-width: 1.35px;
}

.hero-mountains__ridge--mid {
  opacity: 0.34;
  stroke-width: 1.7px;
}

.hero-mountains__ridge--near {
  opacity: 0.5;
  stroke-width: 2.1px;
}

.hero-summit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(3rem, 10vw, 5.5rem);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(16, 21, 26, 0.35) 45%,
    var(--bg-alt) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-summit__glow {
  display: none;
}

.hero-summit__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-slogan {
  margin: 0;
  padding: 0;
  width: min(92vw, 40rem);
  border: none;
}

.hero-slogan p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15em;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero-slogan__line {
  display: block;
  font-size: clamp(1.35rem, 5.2vw, 2.75rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-summit__title {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.hero-summit__brand {
  margin: 0.65rem 0 0;
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.hero-summit__brand em {
  font-style: normal;
  opacity: 0.85;
}

.hero-summit__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1rem;
  margin-top: clamp(2rem, 5vh, 3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 .accent {
  color: var(--accent);
}

.lead {
  margin: 0 0 2rem;
  max-width: 32rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-stats strong {
  display: block;
  color: var(--text);
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    border-color var(--duration-normal) var(--ease-smooth),
    background var(--duration-normal) var(--ease-smooth),
    color var(--duration-normal) var(--ease-smooth);
}

.contact-quick a:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: var(--surface-hover);
  color: var(--accent-bright);
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.hero-image-wrap:has(.hero-image:not([hidden])) .hero-image-fallback {
  display: none;
}

.hero-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(160deg, var(--surface) 0%, #0d1218 50%, rgba(2, 132, 199, 0.15) 100%);
}

.hero-image-badge {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.hero-image-tagline {
  font-size: 0.9rem;
  color: var(--accent-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-image-hint {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-image-hint code {
  font-size: 0.7rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Weiche Übergänge & Abrundungen zwischen Abschnitten */
main {
  overflow-x: hidden;
}

main > .section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  overflow-x: hidden;
  overflow-y: visible;
}

main > .section:not(.hero-summit):not(.section-alt) {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--bg) 70%,
    #0d1116 100%
  );
}

main > .section.section-alt {
  background: var(--bg-alt);
  border-radius: clamp(1.25rem, 4vw, 2.25rem);
  margin: clamp(0.65rem, 2.5vw, 1.35rem) clamp(0.5rem, 2.5vw, 1.25rem);
  padding: clamp(4.75rem, 9vw, 6.75rem) 0;
  box-shadow:
    0 24px 56px -28px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    box-shadow var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth);
}

main > .section.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: clamp(2rem, 5vw, 3.25rem);
  transform: translateY(-55%);
  background: radial-gradient(
    85% 100% at 50% 100%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 68%
  );
  pointer-events: none;
}

main > .section.section-alt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.14));
  pointer-events: none;
  border-radius: 0 0 clamp(1.25rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2.25rem);
}

main > .section:not(.section-alt) + .section.section-alt,
.hero-summit + .section.section-alt {
  margin-top: clamp(0.25rem, 1.5vw, 0.75rem);
}

main > .section.section-alt + .section:not(.section-alt) {
  padding-top: clamp(5rem, 10vw, 7rem);
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    main > .section.section-alt {
      animation: section-panel-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 30%;
    }
  }
}

@keyframes section-panel-in {
  from {
    opacity: 0.92;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Über mich */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
  min-width: 0;
}

.about-grid > * {
  min-width: 0;
}

.about-content p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.about-content p strong {
  color: var(--cream);
  font-weight: 600;
}

.about-content .btn {
  margin-top: 0.5rem;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 5 / 6;
  max-width: 360px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-surface);
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.about-image-wrap:has(.about-image:not([hidden])) .about-image-fallback {
  display: none;
}

.about-image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-muted);
  background: linear-gradient(160deg, var(--surface), rgba(2, 132, 199, 0.12));
}

.credentials {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 360px;
  margin-left: auto;
  width: 100%;
}

.credentials li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 0;
}

.credentials-link {
  flex-shrink: 1;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.credentials-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  font-weight: 600;
}

.credentials-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: right;
}

.section-header {
  max-width: 36rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header.align-left {
  margin-left: 0;
  text-align: left;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition:
    transform var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.card > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-top: 3rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
}

.steps h3 {
  margin: 0 0 0.5rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    border-color var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
}

.faq-item[open] {
  border-color: rgba(56, 189, 248, 0.25);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--accent-bright);
  line-height: 1;
  transition:
    transform var(--duration-normal) var(--ease-smooth),
    color var(--duration-normal) var(--ease-smooth);
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--accent-bright);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.35rem;
  transition: grid-template-rows var(--duration-normal) var(--ease-smooth);
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 1.25rem;
}

.faq-answer > * {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

.faq-cta {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-cta a {
  font-weight: 600;
  text-decoration: none;
}

.faq-cta a:hover {
  text-decoration: underline;
}

.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1fr 1.1fr;
}

.booking-embed-wrap {
  min-height: 630px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.booking-embed-wrap iframe {
  width: 100%;
  height: 630px;
  border: 0;
  display: none;
}

.booking-embed-wrap iframe.is-active {
  display: block;
}

.booking-embed-wrap:has(#booking-panel:not([hidden])) {
  min-height: auto;
  display: flex;
  align-items: stretch;
}

.booking-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: left;
}

.booking-panel__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.booking-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.booking-panel__text {
  margin: 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.booking-panel__cta {
  margin-top: 0.5rem;
}

.booking-hint {
  margin: 0;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-hint code {
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-details {
  font-style: normal;
  color: var(--text-muted);
}

.contact-details p {
  margin: 0 0 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-sizing: border-box;
}

.contact-form .field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 8rem;
  resize: vertical;
  box-sizing: border-box;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form .field label {
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: #111;
  font: inherit;
  transition:
    border-color var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6b7280;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.contact-grid > * {
  min-width: 0;
}

.form-note {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-feedback {
  margin: 1rem 0 0;
  min-height: 1.4em;
}

.form-feedback.success {
  color: var(--accent);
}

.form-feedback.error {
  color: #f87171;
}

.site-footer {
  position: relative;
  padding: clamp(3rem, 6vw, 3.5rem) 0 2.5rem;
  margin: clamp(0.5rem, 2vw, 1rem) clamp(0.5rem, 2.5vw, 1.25rem) 0;
  border-top: none;
  border-radius: clamp(1.25rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2.25rem) 0 0;
  background: linear-gradient(180deg, #0e1218 0%, var(--bg-alt) 35%, var(--bg-alt) 100%);
  box-shadow: 0 -20px 48px -24px rgba(0, 0, 0, 0.45);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3rem;
  transform: translateY(-50%);
  background: radial-gradient(70% 100% at 50% 100%, rgba(56, 189, 248, 0.08), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-contact {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact__name {
  display: inline-block;
  margin-right: 1.25rem;
}

.footer-contact a {
  margin-right: 1.25rem;
  text-decoration: none;
  color: var(--accent-bright);
}

.footer-contact a:hover {
  color: var(--text);
}

.footer-brand,
.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.page-legal {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.page-legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
}

.page-legal__meta {
  margin: -0.5rem 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-legal h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.page-legal h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.page-legal p,
.page-legal li {
  color: var(--text-muted);
  line-height: 1.6;
}

.page-legal ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.page-legal li {
  margin-bottom: 0.35rem;
}

.page-legal a {
  color: var(--accent-bright);
  text-decoration: none;
}

.page-legal a:hover {
  color: var(--text);
}

.page-legal .back {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--accent-bright);
}

.page-legal .back:hover {
  color: var(--text);
}

.page-blank {
  min-height: 50vh;
}

.license-certificate {
  margin: 2rem auto 0;
  max-width: min(520px, 100%);
  padding: 12px;
  border: 6px solid #000;
  border-radius: 2px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  background: #fff;
  overflow: hidden;
}

.license-certificate img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.placeholder {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(56, 189, 248, 0.08);
  border: 1px dashed rgba(56, 189, 248, 0.35);
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  @supports (animation-timeline: view()) {
    main > .section.section-alt {
      animation: none !important;
    }
  }

  .hero-grid,
  .about-grid,
  .card-grid,
  .steps,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-slogan__line {
    font-size: clamp(1.05rem, 4.8vw, 1.65rem);
    letter-spacing: 0.05em;
  }

  .hero-mountains-svg {
    width: 170%;
    height: min(58vh, 440px);
  }

  .hero-mountains__ridge--far {
    opacity: 0.18;
    stroke-width: 1.2px;
  }

  .hero-mountains__ridge--mid {
    opacity: 0.3;
    stroke-width: 1.5px;
  }

  .hero-mountains__ridge--near {
    opacity: 0.46;
    stroke-width: 1.85px;
  }

  .hero-summit__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
  }

  main > .section.section-alt {
    margin-inline: 0.35rem;
    border-radius: 1.1rem;
  }

  main > .section.section-alt::after {
    border-radius: 0 0 1.1rem 1.1rem;
  }

  .site-footer {
    margin-inline: 0.35rem;
    border-radius: 1.1rem 1.1rem 0 0;
  }

  .hero-image-wrap,
  .about-image-wrap,
  .credentials {
    margin-left: 0;
    max-width: 100%;
  }

}



@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .container,
  .container-narrow {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .header-inner {
    justify-content: space-between;
    gap: 0.5rem;
  }

  .logo {
    gap: 0.5rem;
    min-width: 0;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-wordmark {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    z-index: 99;
    bottom: auto;
    left: 0;
    max-width: none;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--duration-normal) var(--ease-out),
      opacity var(--duration-normal) var(--ease-smooth);
  }

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

  .site-nav a:not(.btn) {
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-summit {
    min-height: auto;
    padding: 1.75rem 0 2.5rem;
  }

  .hero-slogan {
    width: 100%;
  }

  .hero-slogan__line {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(1.15rem, 6.5vw, 1.65rem);
    letter-spacing: 0.04em;
  }

  .hero-summit__title {
    font-size: 1rem;
    padding-inline: 0.25rem;
  }

  .hero-summit__actions {
    width: 100%;
    max-width: none;
    padding-inline: 0.25rem;
  }

  .hero-summit__actions .btn {
    width: 100%;
  }

  main > .section {
    padding: 3.25rem 0;
  }

  .section-header h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .contact-form {
    padding: 1.25rem;
  }

  .booking-embed-wrap {
    min-height: auto;
  }

  .booking-panel {
    padding: 1.5rem 1.25rem;
    align-items: stretch;
  }

  .booking-panel__cta {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-contact a,
  .footer-contact__name {
    display: block;
    margin: 0 0 0.5rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Scroll-Ruckler auf iOS: View-Animationen & Transform-Reveal reduzieren */
  main > .section.section-alt {
    margin-inline: 0;
    border-radius: 0;
    animation: none !important;
  }

  main > .section.section-alt::before,
  main > .section.section-alt::after {
    display: none;
  }

  .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(20px);
  }

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

  .reveal,
  .reveal.is-visible {
    transition:
      opacity 0.6s var(--ease-out),
      transform 0.6s var(--ease-out);
  }

  .reveal-delay { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }

  .about-content,
  .about-aside,
  .section-header.align-left {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .section-header.align-left h2 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
    line-height: 1.2;
    hyphens: auto;
  }

  .about-aside {
    width: 100%;
  }

  .about-image-wrap {
    width: 100%;
    max-width: min(100%, 22rem);
    margin-inline: auto;
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
  }

  .about-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .credentials {
    max-width: 100%;
    margin-inline: 0;
  }

  .credentials li {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .credentials-label {
    display: block;
  }

  .credentials-value {
    text-align: left;
  }

  .credentials-link {
    width: 100%;
    justify-content: center;
  }

  .hero-mountains-svg {
    width: 100%;
    max-width: 100%;
    left: 50%;
  }
}

@media (max-width: 480px) {
  .logo-wordmark {
    display: none;
  }

  .hero-summit__brand {
    letter-spacing: 0.14em;
  }

  .card,
  .faq-item {
    padding: 1.15rem;
  }

}
