/* ONLYFIT Pöttmes — klares Studio-UI, Marken-Blau
 * Layout: mobile-first — Basis = schmaler Viewport, Erweiterungen per min-width. */

@font-face {
  font-family: "Marguerite";
  src:
    url("../Files/fonts/marguerite.woff2") format("woff2"),
    url("../Files/fonts/marguerite.woff") format("woff"),
    url("../Files/fonts/marguerite.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eurostile";
  src: url("../Files/fonts/eurostile/eurostile.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EuroStyle";
  src: url("../Files/fonts/eurostile/EuroStyle-Normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-accent: #00b0ef;
  --accent: var(--brand-accent);
  --accent-mid: #0090c8;
  --accent-deep: #0077a8;
  --accent-bright: #5dd4ff;
  --accent-muted: rgba(0, 175, 240, 0.55);
  --accent-soft: rgba(0, 175, 240, 0.12);
  --accent-line: rgba(0, 175, 240, 0.35);
  --accent-glow: rgba(0, 175, 240, 0.45);
  --bg-void: #06060f;
  --bg-deep: #0a0a14;
  --surface: rgba(14, 16, 24, 0.82);
  --surface-solid: #12121e;
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-bright: rgba(255, 255, 255, 0.12);
  --text: #f4f4f8;
  --muted: #9ca3b8;
  --font-display: "Eurostile", "EuroStyle", system-ui, sans-serif;
  --font-body: "Eurostile", "EuroStyle", system-ui, sans-serif;
  --font-script: "Marguerite", "Segoe Script", cursive;
  --track-tight: 0.02em;
  --track-body: 0.065em;
  --track-wide: 0.1em;
  --track-label: 0.22em;
  --radius-xl: 2rem;
  --radius-lg: 1.25rem;
  --radius-pill: 999px;
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Header: Blur-Stufen + Breakpoint (mobile-first) */
  --nav-desktop: 1281px;
  --header-offset: max(0.5rem, env(safe-area-inset-top, 0px));
  --header-blur: 6px;
  --header-blur-scrolled: 8px;
}

@media (min-width: 1281px) {
  :root {
    --header-offset: max(1rem, env(safe-area-inset-top, 0px));
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: var(--track-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 100% 70% at 15% 0%, rgba(0, 175, 240, 0.1), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(0, 130, 200, 0.08), transparent 45%),
    linear-gradient(180deg, #0a0c14 0%, var(--bg-void) 45%, #070810 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Sanfte Blau-Tüpfel */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob-float 22s ease-in-out infinite;
}

.blob--a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(0, 175, 240, 0.35) 0%, transparent 70%);
  top: -12%;
  right: -8%;
  animation-delay: 0s;
}

.blob--b {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle, rgba(0, 150, 220, 0.16) 0%, transparent 70%);
  bottom: 15%;
  left: -10%;
  animation-delay: -7s;
}

.blob--c {
  width: min(38vw, 360px);
  height: min(38vw, 360px);
  background: radial-gradient(circle, rgba(0, 175, 240, 0.12) 0%, transparent 70%);
  top: 42%;
  right: 5%;
  animation-delay: -12s;
}

.blob--d {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  background: radial-gradient(circle, rgba(0, 110, 190, 0.14) 0%, transparent 70%);
  bottom: -8%;
  right: 25%;
  animation-delay: -4s;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, -3%) scale(1.04);
  }
  66% {
    transform: translate(-3%, 2%) scale(0.98);
  }
}

main {
  position: relative;
  z-index: 1;
}

/* Marguerite: nie volle CAPS — Text lowercase, erster Buchstabe immer groß (::first-letter) */
.script-accent,
.hero-script,
.slogan-script,
.h2-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.3em;
  letter-spacing: 0.015em;
  font-variant: normal;
}

/* Inline-Schreibschrift: ::first-letter zuverlässig (nicht nur „inline“) */
span.script-accent,
span.h2-script {
  display: inline-block;
}

.script-accent {
  color: var(--accent);
}

.hero-script {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.2;
  color: var(--accent);
  text-shadow: 0 0 36px rgba(0, 175, 240, 0.35);
}

.hero-script--handwrite {
  display: inline-block;
  position: relative;
  width: fit-content;
  max-width: 100%;
  overflow: visible;
  white-space: nowrap;
  padding: 0.06em 0.02em 0.12em;
  transform-origin: left center;
  animation:
    hero-script-handwrite 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both,
    hero-script-settle 0.55s ease-out 1.2s both;
}

@keyframes hero-script-handwrite {
  0% {
    opacity: 0;
    transform: translateY(7px) rotate(-1deg) scale(0.985);
    letter-spacing: 0.06em;
    filter: blur(2.2px);
  }
  55% {
    opacity: 0.82;
    transform: translateY(2px) rotate(-0.35deg) scale(0.995);
    letter-spacing: 0.03em;
    filter: blur(0.9px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
    letter-spacing: 0.015em;
    filter: blur(0);
  }
}

@keyframes hero-script-settle {
  0% {
    letter-spacing: 0.03em;
    text-shadow: 0 0 26px rgba(0, 175, 240, 0.2);
  }
  100% {
    letter-spacing: 0.015em;
    text-shadow: 0 0 36px rgba(0, 175, 240, 0.35);
  }
}

.slogan-script {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
}

/* Film grain — fixed layer only */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 10001;
  background: linear-gradient(90deg, var(--accent), #7ee3ff);
  box-shadow: 0 0 20px var(--accent-glow);
  transform-origin: left;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.45s var(--ease-fluid);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10002;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-void);
  font-weight: 700;
  border-radius: 0.5rem;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* —— Liquid glass nav (mobile-first: Safe-Area, weniger Blur) —— */
/* header-root: kein transform/filter — sonst schneidet der Vorfahren den fixed-Drawer ab */
.header-root {
  position: fixed;
  top: var(--header-offset);
  left: max(0.5rem, env(safe-area-inset-left, 0px));
  right: max(0.5rem, env(safe-area-inset-right, 0px));
  z-index: 8000;
  pointer-events: none;
}

.site-header.site-header--pill {
  position: relative;
  width: 100%;
  transform: translateZ(0);
  padding: 0.42rem 0.5rem;
  display: block;
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(8, 10, 18, 0.42) 38%,
    rgba(6, 8, 14, 0.52) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(var(--header-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--header-blur)) saturate(1.35);
  transition:
    transform 0.6s var(--ease-fluid),
    border-color 0.5s,
    box-shadow 0.5s,
    background 0.5s,
    backdrop-filter 0.5s;
  will-change: transform;
  pointer-events: auto;
  z-index: 10;
}

.site-header.site-header--pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 38%,
    transparent 58%
  );
  opacity: 0.55;
}

.site-header.site-header--pill .header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  gap: 0;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 3;
}

/* Mobil: Vollbild-Menü — genug Transparenz für Liquid-Glass; Öffnen von oben nach unten */
.header-drawer {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
  padding:
    calc(4.5rem + env(safe-area-inset-top, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(1.5rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -100%, 0);
  will-change: transform, opacity;
  --drawer-ease: cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.48s var(--drawer-ease),
    transform 0.58s var(--drawer-ease),
    visibility 0s linear 0.58s;
  background: linear-gradient(
    165deg,
    rgba(14, 18, 32, 0.52) 0%,
    rgba(8, 12, 24, 0.62) 40%,
    rgba(4, 8, 18, 0.68) 100%
  );
  backdrop-filter: blur(var(--header-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--header-blur)) saturate(1.35);
  border: none;
  box-shadow: none;
}

html.liquid-glass-backdrop #header.nav-open .header-drawer {
  backdrop-filter: brightness(1.04) blur(var(--header-blur)) saturate(1.35) url(#onlyfit-liquid-displacement);
  -webkit-backdrop-filter: brightness(1.04) blur(var(--header-blur)) saturate(1.35) url(#onlyfit-liquid-displacement);
}

#header.nav-open .header-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.5s var(--drawer-ease),
    transform 0.6s var(--drawer-ease),
    visibility 0s linear 0s;
}

/* Anker aus dem Menü: ohne Schließ-Animation, damit der Scroll sofort sichtbar ist */
.header-drawer.header-drawer--instant-close {
  transition: none !important;
}

.header-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 38%,
    transparent 58%
  );
  opacity: 0.5;
}

html.liquid-glass-backdrop #header.nav-open .header-drawer::before {
  box-shadow:
    inset 3px 3px 0 -2px rgba(255, 255, 255, 0.28),
    inset 0 0 12px rgba(255, 255, 255, 0.06);
}

.header-drawer__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.header-drawer .nav-main,
.header-drawer .nav-cta {
  position: relative;
  z-index: 1;
}

.header-drawer .nav-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex: 0 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 22rem;
}

.header-drawer .nav-main a {
  padding: 1.15rem 1.3rem;
  font-size: clamp(1.25rem, 4.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: normal;
  text-align: center;
  width: 100%;
  max-width: 100%;
  color: rgba(248, 249, 252, 0.98);
}

.header-drawer .nav-cta {
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0;
  padding-top: 2rem;
  flex-shrink: 0;
  min-height: 0;
  width: 100%;
  max-width: 22rem;
  align-items: center;
  align-self: center;
}

.header-drawer .nav-cta .btn {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.35rem;
  font-size: clamp(0.78rem, 3.2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.header-drawer .nav-cta .btn-primary {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 8px 32px rgba(0, 175, 240, 0.42),
    0 4px 16px rgba(0, 0, 0, 0.45);
}

.header-drawer .nav-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-link {
  flex: 0 0 auto;
  min-width: 0;
}

.site-header.site-header--pill .logo-link {
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  outline: none;
}

.site-header.site-header--pill .logo-link img {
  transition:
    transform 0.55s var(--ease-spring),
    filter 0.45s var(--ease-fluid);
  transform-origin: 50% 50%;
}

.site-header.site-header--pill .logo-link:hover img,
.site-header.site-header--pill .logo-link:focus-visible img {
  transform: scale(1.07) translateY(-2px);
  filter: drop-shadow(0 0 16px rgba(0, 175, 240, 0.42));
}

.site-header.site-header--pill .logo-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 175, 240, 0.45);
}

.site-header.site-header--pill .logo-link:active img {
  transform: scale(1.02) translateY(0);
  filter: drop-shadow(0 0 8px rgba(0, 175, 240, 0.25));
  transition-duration: 0.18s;
}

@media (max-width: 1280px) {
  #header.is-scrolled .site-header--pill {
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(6, 8, 16, 0.55) 40%,
      rgba(4, 6, 12, 0.62) 100%
    );
    border-color: rgba(0, 175, 240, 0.24);
    box-shadow:
      0 12px 48px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(0, 175, 240, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.45);
    -webkit-backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.45);
  }
}

/* polidario/liquid-glass-vue: Turbulence + Displacement auf dem Backdrop (JS setzt Klasse, wenn url() unterstützt) */
@media (max-width: 1280px) {
  html.liquid-glass-backdrop .site-header.site-header--pill {
    backdrop-filter: brightness(1.08) blur(var(--header-blur)) saturate(1.35) url(#onlyfit-liquid-displacement);
    -webkit-backdrop-filter: brightness(1.08) blur(var(--header-blur)) saturate(1.35) url(#onlyfit-liquid-displacement);
  }

  html.liquid-glass-backdrop #header.is-scrolled .site-header--pill {
    backdrop-filter: brightness(1.06) blur(var(--header-blur-scrolled)) saturate(1.45) url(#onlyfit-liquid-displacement);
    -webkit-backdrop-filter: brightness(1.06) blur(var(--header-blur-scrolled)) saturate(1.45) url(#onlyfit-liquid-displacement);
  }

  html.liquid-glass-backdrop .site-header.site-header--pill::before {
    box-shadow:
      inset 3px 3px 0 -2px rgba(255, 255, 255, 0.38),
      inset 0 0 10px rgba(255, 255, 255, 0.1);
  }
}

/* Fallback: kräftiges Frosted Glass wenn Liquid Glass nicht greift (Safari / Firefox) */
@media (max-width: 1280px) {
  html:not(.liquid-glass-backdrop) .site-header.site-header--pill {
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(8, 10, 18, 0.62) 38%,
      rgba(6, 8, 14, 0.72) 100%
    );
  }

  html:not(.liquid-glass-backdrop) #header.is-scrolled .site-header--pill {
    backdrop-filter: blur(22px) saturate(1.55);
    -webkit-backdrop-filter: blur(22px) saturate(1.55);
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(6, 8, 16, 0.72) 40%,
      rgba(4, 6, 12, 0.78) 100%
    );
  }

  html:not(.liquid-glass-backdrop) .header-drawer {
    backdrop-filter: blur(22px) saturate(1.45);
    -webkit-backdrop-filter: blur(22px) saturate(1.45);
    background: linear-gradient(
      165deg,
      rgba(10, 14, 28, 0.82) 0%,
      rgba(6, 10, 22, 0.88) 40%,
      rgba(3, 6, 16, 0.92) 100%
    );
  }
}

.logo-link img {
  height: clamp(1.45rem, 2.4vw, 1.75rem);
  width: auto;
}

.nav-main {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-main a {
  position: relative;
  isolation: isolate;
  font-size: clamp(0.78rem, 1.15vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.42rem 0.6rem;
  border-radius: var(--radius-pill);
  color: rgba(244, 244, 248, 0.88);
  white-space: nowrap;
  background: transparent;
  transition: color 0.2s var(--ease-fluid);
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.06rem;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 175, 240, 0.55) 45%, rgba(0, 175, 240, 0.55) 55%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition:
    transform 0.32s var(--ease-spring),
    background 0.2s var(--ease-fluid);
  pointer-events: none;
}

.nav-main a:hover,
.nav-main a:focus-visible {
  color: var(--accent);
  font-weight: 600;
}

.nav-main a:hover::after,
.nav-main a:focus-visible::after {
  transform: scaleX(1);
  background: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  flex-shrink: 0;
  min-height: 44px;
}

.nav-cta .btn {
  min-height: 44px;
  padding: 0.45rem 0.55rem;
  font-size: clamp(0.58rem, 2.8vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  gap: 0.32rem;
}

.nav-cta .btn .btn-icon {
  min-width: 1.1em;
  font-size: 0.8rem;
  line-height: 1;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.7rem 1.35rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-fluid),
    box-shadow 0.5s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 55%, var(--accent-deep) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 6px 24px rgba(0, 175, 240, 0.28);
  transition:
    transform 0.35s var(--ease-fluid),
    box-shadow 0.35s var(--ease-fluid);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 10px 36px rgba(0, 175, 240, 0.42);
}

.btn-primary .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15em;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.45s var(--ease-spring);
}

.btn-primary:hover .btn-icon {
  transform: translateX(2px) rotate(-45deg);
}

.btn-ghost {
  color: rgba(244, 244, 248, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-bright);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s var(--ease-fluid),
    border-color 0.35s,
    color 0.35s,
    background 0.35s;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent-line);
  color: var(--accent);
  background: rgba(0, 175, 240, 0.06);
}

.btn-ghost .btn-icon {
  opacity: 0.85;
  transition: transform 0.45s var(--ease-spring);
}

.btn-ghost:hover .btn-icon {
  transform: translateX(2px) rotate(-45deg);
}

.menu-toggle {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.35s var(--ease-fluid);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition:
    transform 0.45s var(--ease-fluid),
    opacity 0.3s;
}

#header.nav-open .menu-toggle span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

#header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#header.nav-open .menu-toggle span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 1281px) {
  /* Eine Glass-Zeile: Styles auf #header, Pille nur Logo — kein transform am Root (Drawer bleibt korrekt auf Mobil) */
  #header {
    left: 0;
    right: 0;
    width: min(1240px, calc(100% - 1.5rem));
    max-width: calc(100vw - 1.5rem);
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0.75rem 0.5rem 0.9rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem 0.75rem;
    pointer-events: auto;
    border-radius: 14px;
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(8, 10, 18, 0.42) 38%,
      rgba(6, 8, 14, 0.52) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(var(--header-blur)) saturate(1.35);
    -webkit-backdrop-filter: blur(var(--header-blur)) saturate(1.35);
    transform: translateZ(0);
  }

  #header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.04) 38%,
      transparent 58%
    );
    opacity: 0.55;
  }

  html.liquid-glass-backdrop #header {
    backdrop-filter: brightness(1.08) blur(var(--header-blur)) saturate(1.35) url(#onlyfit-liquid-displacement);
    -webkit-backdrop-filter: brightness(1.08) blur(var(--header-blur)) saturate(1.35) url(#onlyfit-liquid-displacement);
  }

  html.liquid-glass-backdrop #header.is-scrolled {
    backdrop-filter: brightness(1.06) blur(var(--header-blur-scrolled)) saturate(1.45) url(#onlyfit-liquid-displacement);
    -webkit-backdrop-filter: brightness(1.06) blur(var(--header-blur-scrolled)) saturate(1.45) url(#onlyfit-liquid-displacement);
  }

  html.liquid-glass-backdrop #header::before {
    box-shadow:
      inset 3px 3px 0 -2px rgba(255, 255, 255, 0.38),
      inset 0 0 10px rgba(255, 255, 255, 0.1);
  }

  html:not(.liquid-glass-backdrop) #header {
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
  }

  html:not(.liquid-glass-backdrop) #header.is-scrolled {
    backdrop-filter: blur(22px) saturate(1.55);
    -webkit-backdrop-filter: blur(22px) saturate(1.55);
  }

  #header.is-scrolled {
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(6, 8, 16, 0.55) 40%,
      rgba(4, 6, 12, 0.62) 100%
    );
    border-color: rgba(0, 175, 240, 0.24);
    box-shadow:
      0 12px 48px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(0, 175, 240, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.45);
    -webkit-backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.45);
  }

  .site-header.site-header--pill {
    position: relative;
    z-index: 1;
    width: auto;
    flex: 0 0 auto;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none;
    will-change: auto;
  }

  .site-header.site-header--pill::before {
    display: none;
  }

  .site-header.site-header--pill .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
  }

  .header-bar {
    flex: 0 0 auto;
    width: auto;
  }

  .header-drawer__main {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }

  .header-drawer {
    position: relative;
    z-index: 1;
    inset: auto;
    flex: 1 1 auto;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: initial;
    min-width: 0;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto;
    transition: none;
  }

  .header-drawer::before {
    display: none;
  }

  .header-drawer .nav-main {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0 !important;
    max-width: none;
    width: auto;
    gap: 0.08rem;
  }

  .header-drawer .nav-main a {
    padding: 0.42rem 0.6rem;
    font-size: clamp(0.78rem, 1.15vw, 0.92rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-align: initial;
    width: auto;
    max-width: none;
    color: rgba(244, 244, 248, 0.88);
  }

  .header-drawer .nav-cta {
    flex-direction: row;
    flex-shrink: 0;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding-top: 0;
    gap: 0.35rem;
    min-height: 0;
    align-items: center;
    align-self: auto;
  }

  .header-drawer .nav-cta .btn {
    width: auto;
    min-height: 0;
    max-width: none;
    padding: 0.48rem 0.75rem;
    font-size: clamp(0.6rem, 0.95vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.11em;
    gap: 0.4rem;
  }

  .header-drawer .nav-cta .btn-primary {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      0 6px 24px rgba(0, 175, 240, 0.28);
  }

  .header-drawer .nav-cta .btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--hairline-bright);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .header-drawer .nav-cta .btn .btn-icon {
    font-size: 0.85rem;
  }

  .nav-cta {
    min-height: 0;
  }

  .menu-toggle {
    display: none;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: var(--hero-h, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.25rem 1rem 2.75rem;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.hero--studio .hero-canvas {
  display: none;
}

.hero--studio .hero-grid {
  opacity: 0.14;
  animation: none;
}

.hero--studio .hero-scan {
  opacity: 0.2;
  animation: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #040810;
  background-image:
    linear-gradient(165deg, rgba(2, 8, 20, 0.88) 0%, rgba(4, 14, 28, 0.72) 38%, rgba(3, 10, 22, 0.9) 100%),
    radial-gradient(ellipse 90% 65% at 70% 25%, rgba(0, 175, 240, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(0, 120, 190, 0.1), transparent 50%),
    url("../Files/c0a7bf53-a272-4bea-9e3b-153ceaa08efd.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 15%, transparent 72%);
  transform: translateZ(0);
  animation: grid-pulse 28s linear infinite;
}

@keyframes grid-pulse {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-36px, 24px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translate(-72px, 48px) scale(1);
    opacity: 0.9;
  }
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 175, 240, 0.03) 48%,
    rgba(0, 175, 240, 0.06) 50%,
    rgba(0, 175, 240, 0.03) 52%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: scan 11s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scan {
  0%,
  100% {
    background-position: 0 -100%;
  }
  50% {
    background-position: 0 100%;
  }
}

.hero-layout {
  width: min(1040px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.15rem, 5vw, 3.5rem);
  min-width: 0;
  text-align: center;
}

.hero-content__intro {
  min-width: 0;
  width: min(100%, 42rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.4rem);
}

.hero-content__lower {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.85rem, 3.5vw, 2.75rem);
}

@media (min-width: 800px) {
  .hero-content__lower {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.25rem 3.5rem;
  }

  .hero-content__cta {
    flex: 1 1 280px;
    min-width: min(100%, 320px);
  }

}

.hero-content__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.4rem);
  min-width: 0;
  width: min(100%, 38rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.44rem 0.95rem;
  font-size: clamp(0.66rem, 0.95vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  margin: 0;
}

.hero-script--subline {
  font-size: clamp(1.22rem, 1.85vw, 1.72rem);
  line-height: 1.25;
  text-shadow: 0 0 18px rgba(0, 175, 240, 0.22);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
  margin: 0;
  max-width: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.hero h1 .line {
  display: block;
}

/* Keine Zeilenumbrüche innerhalb der beiden Hauptzeilen — skaliert mit viewport */
.hero h1 .hero-line--xl {
  font-size: clamp(0.72rem, 2.65vw + 0.42rem, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0.055em;
  white-space: normal;
  text-wrap: balance;
}

.hero h1 .hero-line--xl + .hero-line--xl {
  margin-top: 0.08em;
}

/* Add-on: dezent, klein, leicht — kein Hauptfokus */
.hero h1 .hero-line--addon {
  display: block;
  margin-top: 0.65rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 28ch;
  font-size: clamp(0.62rem, 1.05vw, 0.78rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: none;
  color: rgba(180, 195, 215, 0.85);
  white-space: normal;
}

.hero h1 .accent {
  background: linear-gradient(105deg, #fff 0%, var(--accent) 45%, #7ee3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(0, 175, 240, 0.35));
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
}

.hero-actions .btn {
  width: 100%;
  min-height: 48px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.4rem);
  margin: 0;
  padding-top: 0;
  border-top: none;
  text-align: center;
}

.hero-meta div {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero-meta__tags {
  margin: 0.35rem 0 0;
  padding: 0;
  line-height: 1.5;
}

.hero-kw {
  display: inline;
  color: var(--muted);
  animation: hero-kw-highlight 6.9s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1.15s);
}

.hero-kw-sep {
  opacity: 0.55;
  user-select: none;
}

@keyframes hero-kw-highlight {
  0%,
  100% {
    color: var(--muted);
    text-shadow: none;
  }
  5% {
    color: var(--accent-bright);
    text-shadow: 0 0 18px var(--accent-glow);
  }
  11% {
    color: var(--muted);
    text-shadow: none;
  }
}

.hero-meta strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 700;
  color: var(--text);
}

.hero-scroll {
  position: absolute;
  bottom: clamp(1.75rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

.hero-scroll .wheel {
  width: 26px;
  height: 42px;
  border: 1px solid var(--hairline-bright);
  border-radius: 14px;
  position: relative;
}

.hero-scroll .wheel::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 10px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-dot 2.2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.35;
    transform: translateY(12px);
  }
}

@media (min-width: 769px) {
  .hero-scroll {
    display: flex;
  }
}

/* Hero: Mobil — feste Höhe via --hero-h (JS-gesetzt), gleichmäßige Verteilung */
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: var(--hero-h, 100svh);
    align-items: stretch;
    justify-content: center;
    padding-top: max(4.75rem, calc(env(safe-area-inset-top, 0px) + 3.25rem));
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero-layout {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
    min-height: 0;
  }

  .hero-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 0;
    width: 100%;
    min-height: 0;
  }

  /* Intro-Kinder werden direkte Flex-Kinder von .hero-content → gleichmäßige Abstände in der Höhe */
  .hero-content__intro {
    display: contents;
  }

  .hero-content__intro .hero-script--subline {
    font-size: clamp(1.28rem, 5.25vw, 1.82rem);
    line-height: 1.22;
    text-shadow: 0 0 22px rgba(0, 175, 240, 0.28);
  }

  .hero-content__intro .hero-badge {
    font-size: clamp(0.62rem, 2.35vw, 0.78rem);
    padding: 0.38rem 0.85rem;
    letter-spacing: 0.18em;
  }

  .hero-content__intro h1 {
    width: 100%;
    max-width: min(100%, 42rem);
  }

  .hero-content__intro .hero-meta {
    width: 100%;
    max-width: 18.5rem;
    margin-inline: auto;
  }

  .hero h1 .hero-line--xl {
    font-size: clamp(1.55rem, 7.5vw + 0.28rem, 2.65rem);
    line-height: 1.02;
    letter-spacing: 0.06em;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-meta div {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .hero-meta strong {
    font-size: clamp(0.68rem, 2.2vw, 0.78rem);
    margin-top: 0.18rem;
    letter-spacing: 0.04em;
  }

  .hero-content__lower {
    width: 100%;
    max-width: min(100%, 38rem);
    gap: 0;
  }

  .hero-actions .btn {
    font-size: 0.8125rem;
    min-height: 44px;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .hero-content__intro .hero-script--handwrite {
    animation:
      hero-script-handwrite 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both,
      hero-script-settle 0.55s ease-out 1.2s both;
  }
}

/* —— Sections —— */
.section {
  padding-block: clamp(3.25rem, 5vw, 4.25rem);
  padding-inline: 1rem;
  position: relative;
}

.section + .section,
.section + .slogan-band,
.slogan-band + .section,
.hero + .section {
  padding-block-start: clamp(2.25rem, 3.5vw, 2.75rem);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.2rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.055em;
  margin: 0 0 1.4rem;
  line-height: 1.08;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.h2-script {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  letter-spacing: 0.025em;
  color: var(--accent);
  display: inline-block;
  margin-left: 0;
  vertical-align: baseline;
}

.section h2 .script-accent:not(.h2-script) {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
}

.testimonial-title {
  position: relative;
}

.testimonial-title__main {
  position: relative;
  z-index: 2;
}

.testimonial-title__script {
  position: relative;
  z-index: 1;
  top: 0.16em;
  margin-left: 0.05em;
}

.pricing-title {
  position: relative;
}

.pricing-title__main {
  position: relative;
  z-index: 2;
}

.pricing-title__script {
  position: relative;
  z-index: 1;
  top: 0.14em;
  margin-left: 0.05em;
}

.section-intro {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 1.85rem;
  font-weight: 400;
  letter-spacing: var(--track-body);
}

/* GSAP sets initial state; keep class for targeting */
.reveal {
  will-change: transform, opacity;
}

/* Winter-Karte — eine klare Fläche */
.bezel-out {
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 175, 240, 0.2);
  background: transparent;
}

.bezel-in {
  border-radius: calc(var(--radius-xl) - 1px);
  background: var(--surface);
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Sommeraktion */
:root {
  --summer-accent: #f5a623;
  --summer-accent-bright: #ffc857;
  --summer-glow: rgba(245, 166, 35, 0.4);
  --summer-soft: rgba(245, 166, 35, 0.1);
}

.summer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .summer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.summer-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-fluid),
    border-color 0.45s,
    box-shadow 0.45s;
}

.summer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.summer-card--featured {
  border-color: rgba(245, 166, 35, 0.4);
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.08), rgba(12, 12, 22, 0.92));
}

.summer-card--featured:hover {
  border-color: var(--summer-accent);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(245, 166, 35, 0.12);
}

.summer-card__badge {
  padding: 0.6rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-void);
  background: linear-gradient(135deg, var(--summer-accent), var(--summer-accent-bright));
}

.summer-card__inner {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.summer-card__highlight {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--summer-soft), transparent);
  border: 1px solid rgba(245, 166, 35, 0.18);
}

.summer-card__free {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--summer-accent);
  line-height: 1;
  text-shadow: 0 0 40px var(--summer-glow);
}

.summer-card__price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--summer-accent);
  line-height: 1;
  text-shadow: 0 0 40px var(--summer-glow);
}

.summer-card__free-label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

.summer-card__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.summer-card__perks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: rgba(200, 200, 215, 0.95);
  font-size: 0.92rem;
}

.summer-card__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--summer-accent);
  box-shadow: 0 0 10px var(--summer-glow);
}

.summer-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2rem;
  letter-spacing: 0.02em;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

/* Pricing Aktion Badge */
.promo-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-void);
  background: linear-gradient(135deg, var(--summer-accent), var(--summer-accent-bright));
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  animation: promo-pulse 2.5s ease-in-out infinite;
}

@keyframes promo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(245, 166, 35, 0); }
}

.promo-badge--card {
  margin-top: 0.5rem;
}

.promo-badge--card[hidden] {
  display: none;
}

/* Bento features */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento .feature-card {
  grid-column: span 12;
}

@media (min-width: 900px) {
  .bento .feature-card:nth-child(1) {
    grid-column: span 7;
  }
  .bento .feature-card:nth-child(2) {
    grid-column: span 5;
  }
  .bento .feature-card:nth-child(3) {
    grid-column: span 6;
  }
  .bento .feature-card:nth-child(4) {
    grid-column: span 6;
  }
}

.feature-card {
  padding: 0 0 1.65rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition:
    transform 0.45s var(--ease-fluid),
    border-color 0.45s,
    box-shadow 0.45s;
  overflow: hidden;
}

.feature-card__media {
  aspect-ratio: 16 / 10;
  margin: 0 0 1.35rem;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-fluid);
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.05);
}

.feature-card h3,
.feature-card p {
  padding: 0 1.5rem;
}

.feature-card h3 {
  margin-top: 0;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 175, 240, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: 0.04em;
}

.feature-card:nth-child(odd) h3 {
  font-weight: 700;
}

.feature-card:nth-child(even) h3 {
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 175, 240, 0.2), rgba(0, 175, 240, 0.04));
  border: 1px solid rgba(0, 175, 240, 0.25);
  color: var(--accent);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1;
}

/* Studio bento */
.area-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

@media (min-width: 1100px) {
  .area-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .area-card:nth-child(1) {
    grid-column: span 2;
  }
}

.area-card {
  padding: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition:
    transform 0.45s var(--ease-fluid),
    border-color 0.45s var(--ease-fluid),
    box-shadow 0.45s;
  overflow: hidden;
}

.area-card__media {
  aspect-ratio: 16 / 9;
  margin: 0 0 1.1rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.area-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s var(--ease-fluid);
}

.area-card:hover .area-card__media img {
  transform: scale(1.04);
}

.area-card h3,
.area-card p {
  padding: 0 1.35rem;
}

.area-card h3 {
  margin-top: 0;
}

.area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 175, 240, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.area-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.area-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.62;
}

/* Extras-Grid — kompakte Vorteils-Karten */
.extras-grid {
  list-style: none;
  margin: 2.4rem 0 2.2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

@media (min-width: 760px) {
  .extras-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.extra-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition:
    transform 0.45s var(--ease-fluid),
    border-color 0.45s var(--ease-fluid),
    box-shadow 0.45s;
}

.extra-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 175, 240, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.extra-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.9rem;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.extra-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.extra-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.extra-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Studio Slider — Infinite Marquee */
.studio-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
  --slider-gap: 1rem;
  --slide-w: clamp(260px, 38vw, 480px);
  --slider-fade: clamp(2.5rem, 8vw, 9rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--slider-fade),
    #000 calc(100% - var(--slider-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--slider-fade),
    #000 calc(100% - var(--slider-fade)),
    transparent 100%
  );
}

.studio-slider__track {
  display: flex;
  gap: var(--slider-gap);
  width: max-content;
  padding: 0.5rem 0 1.5rem;
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}

.studio-slider__track.is-dragging {
  cursor: grabbing;
}

.studio-slider__slide {
  flex: 0 0 var(--slide-w);
  aspect-ratio: 3 / 2;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-bright);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  position: relative;
}

.studio-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-fluid);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.studio-slider__slide:hover img {
  transform: scale(1.05);
}

.studio-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 18, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hairline-bright);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-spring),
    border-color 0.4s,
    color 0.4s,
    background 0.4s,
    opacity 0.4s;
  opacity: 0.8;
}

.studio-slider__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 175, 240, 0.14);
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
}

.studio-slider__btn:active {
  transform: translateY(-50%) scale(0.95);
}

.studio-slider__btn--prev {
  left: clamp(0.5rem, 2vw, 1rem);
}

.studio-slider__btn--next {
  right: clamp(0.5rem, 2vw, 1rem);
}

@media (max-width: 640px) {
  .studio-slider {
    --slide-w: 75vw;
    --slider-fade: clamp(1.25rem, 6vw, 3rem);
  }

  .studio-slider__btn {
    width: 38px;
    height: 38px;
  }
}

/* Galerie / warme Studio-Sektionen */
.section--warm {
  background: linear-gradient(180deg, rgba(0, 175, 240, 0.04) 0%, transparent 42%);
}

#angebote {
  position: relative;
  overflow: hidden;
}

#angebote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/summer-beach.png") top center / cover no-repeat;
  opacity: 0.07;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 12%, rgba(0,0,0,0.4) 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 12%, rgba(0,0,0,0.4) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

#angebote > * {
  position: relative;
  z-index: 1;
}

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

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-bright);
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-fluid);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

@media (min-width: 720px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 8, 14, 0.6);
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Slogan */
.slogan-band {
  position: relative;
  text-align: center;
  padding: clamp(3.25rem, 7vw, 5rem) 1.25rem;
  overflow: hidden;
}

.slogan-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 45% at 50% 50%, rgba(0, 175, 240, 0.18), transparent 72%);
  pointer-events: none;
}

.slogan-band h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.slogan-band .gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #00aff0, #8ae8ff, #00aff0);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 5s linear infinite;
}

@keyframes gradient-flow {
  to {
    background-position: 200% center;
  }
}

.slogan-band .muted {
  position: relative;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 1.25rem;
  font-weight: 500;
}

/* Google Reviews */
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-xl);
  background: rgba(10, 10, 18, 0.6);
  border: 1px solid var(--hairline-bright);
  max-width: 540px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
}

.google-rating-badge__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.google-rating-badge__info {
  flex: 1;
  min-width: 0;
}

.google-rating-badge__score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-rating-badge__number {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: var(--track-tight);
  color: var(--text);
  line-height: 1;
}

.google-rating-badge__stars {
  display: flex;
  gap: 2px;
}

.google-rating-badge__stars svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-rating-badge__count {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.3;
}

.google-rating-badge__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s, gap 0.3s;
}

.google-rating-badge__link:hover {
  color: var(--accent-bright);
  gap: 0.5rem;
}

.google-reviews-slider {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
}

.google-reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}

.google-review-card {
  flex: 0 0 calc(100% - 1rem);
  max-width: 420px;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid var(--hairline-bright);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .google-review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .google-review-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.google-review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.google-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.google-review-card__meta {
  min-width: 0;
}

.google-review-card__name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-review-card__date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.google-review-card__stars {
  display: flex;
  gap: 2px;
}

.google-review-card__stars svg {
  width: 16px;
  height: 16px;
}

.google-review-card__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(244, 244, 248, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.google-review-card__text.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.google-review-card__toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  transition: color 0.3s;
}

.google-review-card__toggle:hover {
  color: var(--accent-bright);
}

.google-reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.google-reviews-nav button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-bright);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.45s var(--ease-spring),
    border-color 0.45s,
    color 0.45s;
}

.google-reviews-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.06);
}

.google-reviews-nav button:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.google-attribution {
  text-align: left;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.google-attribution a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.google-attribution a:hover {
  color: var(--accent-bright);
}

/* Testimonial (legacy) */
.testimonial-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

@media (min-width: 880px) {
  .testimonial-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.75rem;
  }
}

.testimonial-photo {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--hairline-bright);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.testimonial-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.testimonial-split .testimonial-wrap {
  max-width: none;
  margin: 0;
}

.testimonial-wrap {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.testimonial-author {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid var(--hairline-bright);
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(244, 244, 248, 0.92);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.testimonial-nav button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-bright);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.45s var(--ease-spring),
    border-color 0.45s,
    color 0.45s;
}

.testimonial-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.06);
}

/* Pricing */
.pricing-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  margin-bottom: 2.25rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
}

.pricing-tab {
  padding: 0.55rem 1.25rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.45s var(--ease-fluid),
    color 0.45s,
    box-shadow 0.45s;
}

.pricing-tab.is-active {
  background: rgba(0, 175, 240, 0.18);
  color: var(--accent);
  box-shadow: 0 0 24px rgba(0, 175, 240, 0.2);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.price-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.45s var(--ease-fluid),
    box-shadow 0.45s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.price-card.featured {
  border-color: rgba(0, 175, 240, 0.45);
  background: linear-gradient(165deg, rgba(0, 175, 240, 0.1), rgba(12, 12, 22, 0.9));
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg-void);
  border-radius: var(--radius-pill);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
}

.price-card .tier-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
}

.price-row .eur {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--accent);
  transition: opacity 0.15s ease;
}

.price-row .per {
  font-size: 0.88rem;
  color: var(--muted);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}

.price-features li {
  padding: 0.45rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.92rem;
  color: rgba(200, 200, 215, 0.95);
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--accent);
  transform: rotate(45deg);
}

.price-card .btn {
  width: 100%;
}

.special-box {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(8, 8, 14, 0.8);
  border: 1px dashed rgba(0, 175, 240, 0.35);
}

.special-box h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.special-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.special-box .note {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 2.5rem 0 0;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item button svg {
  flex-shrink: 0;
  transition: transform 0.55s var(--ease-fluid);
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-fluid);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
}

.faq-panel p {
  margin: 0;
  padding-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.contact-block {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 18, 0.55);
  border: 1px solid var(--hairline);
  transition: border-color 0.45s;
}

.contact-block:hover {
  border-color: rgba(0, 175, 240, 0.22);
}

.contact-block strong {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

.contact-block a:hover {
  color: var(--accent);
}

.hours-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hours-grid span {
  color: var(--text);
  font-weight: 600;
}

.contact-form.bezel-in {
  padding: 1.5rem 1.1rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.contact-form .lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(4, 4, 10, 0.85);
  border: 1px solid var(--hairline);
  border-radius: 0.65rem;
  transition:
    border-color 0.45s,
    box-shadow 0.45s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(0, 175, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 175, 240, 0.12);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-consent {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 1.25rem 0;
  line-height: 1.5;
}

.form-feedback {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-feedback.is-success {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
}

.form-feedback.is-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 1.65rem 3.5rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero h1 .hero-line--xl {
    white-space: normal;
    text-wrap: balance;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.75rem;
    padding-top: 0;
  }

  .section {
    padding-block: clamp(3.75rem, 5.5vw, 5rem);
    padding-inline: clamp(1.35rem, 4vw, 2rem);
  }

  .section + .section,
  .section + .slogan-band,
  .slogan-band + .section,
  .hero + .section {
    padding-block-start: clamp(2.5rem, 3.75vw, 3rem);
  }

  .section-intro {
    margin: 0 0 2.25rem;
  }

  .contact-form.bezel-in {
    padding: 2rem 1.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   Footer — Horizontal minimal layout
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  padding: 3rem 0 2rem;
  color: var(--text);
  background: var(--bg-void);
}

.site-footer a {
  text-decoration: none;
  color: inherit;
}

.footer-wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 2rem;
  width: auto;
}

.footer-top-meta {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.15s ease-out;
}

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

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--accent);
}

.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.15s ease-out;
}

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

.footer-social svg {
  width: 1.0625rem;
  height: 1.0625rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.25rem;
  padding-top: 1.5rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.15s ease-out;
}

.footer-legal a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4rem 0 2rem;
  }

  .footer-wrap {
    padding: 0 2rem;
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-top-meta {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-social {
    order: -1;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-wrap {
    padding: 0 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer *,
  .site-footer *::before,
  .site-footer *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 0;
}

.btn-cookie {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cookie--primary {
  border-color: transparent;
  background: var(--accent);
  color: #061104;
  font-weight: 600;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .noise,
  .hero-grid,
  .hero-scan,
  .gradient-text,
  .winter-price::after,
  .blob {
    animation: none !important;
  }

  .blob {
    opacity: 0.35;
  }

  .scroll-progress {
    transition: none;
  }

  .feature-card,
  .area-card,
  .price-card {
    transform: none !important;
  }

  .hero-script--handwrite {
    animation: none !important;
    transform: none;
    filter: none;
  }

  .hero-kw {
    animation: none !important;
    will-change: auto;
  }

  .site-header.site-header--pill .logo-link:hover img,
  .site-header.site-header--pill .logo-link:focus-visible img,
  .site-header.site-header--pill .logo-link:active img {
    transform: none;
    filter: none;
  }

  .site-header.site-header--pill .logo-link:focus-visible {
    box-shadow: none;
  }

  .nav-main a,
  .nav-main a::after {
    transition: none !important;
  }

  .nav-main a:hover,
  .nav-main a:focus-visible {
    color: var(--accent);
    font-weight: 600;
  }

  .nav-main a:hover::after,
  .nav-main a:focus-visible::after {
    transform: scaleX(1);
    background: var(--accent);
  }

  .btn-primary:hover .btn-icon,
  .btn-ghost:hover .btn-icon {
    transform: none;
  }

  @media (max-width: 1280px) {
    html.liquid-glass-backdrop .site-header.site-header--pill,
    html.liquid-glass-backdrop #header.is-scrolled .site-header--pill {
      backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.3);
      -webkit-backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.3);
    }

    html.liquid-glass-backdrop .site-header.site-header--pill::before {
      box-shadow: none;
    }
  }

  @media (min-width: 1281px) {
    html.liquid-glass-backdrop #header,
    html.liquid-glass-backdrop #header.is-scrolled {
      backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.3);
      -webkit-backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.3);
    }

    html.liquid-glass-backdrop #header::before {
      box-shadow: none;
    }
  }

  .header-drawer {
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  @media (max-width: 1280px) {
    html.liquid-glass-backdrop #header.nav-open .header-drawer {
      backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.3);
      -webkit-backdrop-filter: blur(var(--header-blur-scrolled)) saturate(1.3);
    }
  }
}

