/* ================================================================
   apart wellness — Porsche-Style Detail Page
   Inspiriert von porsche.com: clean, viel Weißraum, Script-Titel
================================================================ */

/* ── Reset für diese Page ── */
.porsche-page {
  background: #fff;
  cursor: auto;
}

/* ================================================================
   HEADER
================================================================ */
.prs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease;
}
.prs-header--scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.prs-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Menü-Button links */
.prs-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: color 0.3s ease;
}
.prs-header--scrolled .prs-menu-btn { color: var(--dark); }
.prs-menu-btn i { font-size: 13px; }

/* Logo mittig */
.prs-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.prs-logo .logo-word {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}
.prs-logo .logo-sub {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.prs-header--scrolled .prs-logo .logo-word { color: var(--dark); }
.prs-header--scrolled .prs-logo .logo-sub  { color: var(--grey); }

/* CTA rechts */
.prs-header-actions .prs-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.30);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.prs-header--scrolled .prs-header-actions .prs-cta {
  color: var(--dark);
  border-color: rgba(0,0,0,0.25);
}
.prs-header-actions .prs-cta:hover {
  color: var(--white);
  border-color: var(--white);
}
.prs-header--scrolled .prs-header-actions .prs-cta:hover {
  color: var(--brand);
  border-color: var(--brand);
}

/* ================================================================
   HERO — Vollbild
================================================================ */
.prs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #111;
}

.prs-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.prs-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.10);
  transition: transform 9s cubic-bezier(0.0, 0.0, 0.15, 1);
  will-change: transform;
  transform-origin: 55% 50%;
}
.prs-hero-img.active img {
  transform: scale(1.0);
}

/* Gradient: unten nach weiß auslaufen */
.prs-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

/* Script-Titel — links-unten, identisch mit .hero-h1 auf der Startseite */
.prs-hero-script {
  position: absolute;
  z-index: 2;
  bottom: 14%;
  left: 6vw;
  transform: none;
  font-family: var(--font-display);   /* Schritt 5: Quicksand für Überschriften */
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 200;                /* ultra-light */
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
  pointer-events: none;
  user-select: none;
}

/* Pause-Button Porsche-Style */
.prs-pause-btn {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}
.prs-pause-btn:hover { background: rgba(255,255,255,0.30); }

/* ================================================================
   INTRO — weißer Bereich, zentriert
================================================================ */
.prs-intro {
  background: #fff;
  padding: 72px 24px 40px;
  text-align: center;
}
.prs-intro-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.prs-title {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #111;
  margin: 0;
  line-height: 1.08;
}
.prs-badge {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.prs-tagline {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  letter-spacing: 0.01em;
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

/* ================================================================
   SPECS — horizontale Kennzahlen-Leiste
================================================================ */
.prs-specs {
  background: #fff;
  padding: 40px 24px 64px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.prs-specs-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.prs-spec-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  text-align: center;
}
.prs-spec-val {
  font-size: 28px;
  font-weight: 300;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1;
}
.prs-spec-key {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
}
.prs-spec-div {
  width: 1px;
  height: 48px;
  background: #e5e5e5;
  flex-shrink: 0;
}

/* ================================================================
   PORSCHE-CARDS — 3 abgerundete Bild-Kacheln (Porsche.com-Stil)
================================================================ */
.prs-cards-sec {
  background: #fff;
  padding: 72px 48px 80px;
}
.prs-cards-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.prs-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  background: #1a1a1a;
  cursor: pointer;
  /* Schatten wie Porsche */
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s ease;
}
.prs-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 60px rgba(0,0,0,0.70);
}

/* Vollbild-Bild */
.prs-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prs-card:hover img {
  transform: scale(1.05);
}

/* Dunkler Gradient-Overlay unten — Text lesbar */
.prs-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.0) 100%
  );
  z-index: 1;
}

/* Label — unten links */
.prs-card-label {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.90);
  line-height: 1;
}

/* Pfeil-Button — unten rechts */
.prs-card-arrow {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.prs-card:hover .prs-card-arrow {
  background: rgba(255,255,255,0.28);
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 900px) {
  .prs-cards-sec { padding: 48px 24px 56px; }
  .prs-cards-inner { grid-template-columns: 1fr; gap: 12px; }
  .prs-card { aspect-ratio: 16 / 9; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .prs-cards-inner { grid-template-columns: repeat(2, 1fr); }
  .prs-card:last-child { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
}

/* ================================================================
   GALERIE
================================================================ */
.prs-gallery {
  background: #fff;
  padding: 0 0 80px;
}
.prs-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.prs-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f5f5;
  aspect-ratio: 4/3;
}
.prs-gallery-item--wide {
  aspect-ratio: 16/9;
}
.prs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.prs-gallery-item:hover img { transform: scale(1.04); }
.prs-gallery-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ================================================================
   FEATURES — 3 Icons, sehr minimal
================================================================ */
.prs-features {
  background: #f7f7f7;
  padding: 80px 24px;
}
.prs-features-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.prs-feat {
  background: #fff;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.3s ease;
}
.prs-feat:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.prs-feat-icon {
  font-size: 20px;
  color: var(--brand);
}
.prs-feat h3 {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.01em;
  margin: 0;
}
.prs-feat p {
  font-size: 13px;
  line-height: 1.7;
  color: #888;
  font-weight: 300;
  margin: 0;
}

/* ================================================================
   CTA
================================================================ */
.prs-cta-sec {
  background: #111;
  padding: 100px 24px;
}
.prs-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.prs-cta-inner h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}
.prs-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* E-Mail-Formular */
.prs-cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin: -20px 0 0;
  letter-spacing: 0.01em;
}
.prs-email-form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.prs-email-row {
  display: flex;
  width: 100%;
  gap: 0;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.prs-email-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--font-sans);
  color: #111;
  background: #fff;
  border: none;
  outline: none;
  letter-spacing: 0.01em;
}
.prs-email-input::placeholder { color: #aaa; }
.prs-email-row .prs-btn-primary {
  border-radius: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.prs-form-note {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  min-height: 18px;
  margin: 0;
  transition: color 0.3s;
}
.prs-form-note.success { color: #7ecfa0; }
.prs-form-note.error   { color: #f08080; }
.prs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.prs-btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.prs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.prs-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ================================================================
   KONTAKT-POPUP — apart wellness Stil
   Dunkel · Minimal · Präzise · Split-Layout
================================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup-overlay.open .popup-box {
  transform: translateY(0) scale(1);
}

/* ── Popup-Box: Split-Layout ── */
.popup-box {
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 48px 120px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.06);
  transform: translateY(32px) scale(0.98);
  transition: transform 0.45s var(--ease-out);
}

/* ── Linke Bild-Spalte ── */
.popup-img-col {
  position: relative;
  background: #fff;
  overflow: hidden;
  min-height: 520px;
}
.popup-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.7;
  transition: transform 8s ease;
}
.popup-overlay.open .popup-img-col img {
  transform: scale(1.06);
}
.popup-img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 100%
  );
}
.popup-img-text {
  position: absolute;
  bottom: 36px;
  left: 32px;
  z-index: 2;
}
.popup-img-logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 16px;
}
.popup-img-logo .logo-word {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
}
.popup-img-logo .logo-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.popup-img-text p {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--white);
  margin: 0;
}

/* ── Rechte Formular-Spalte ── */
.popup-form-col {
  background: #fff;
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border-left: 1px solid rgba(0,0,0,0.06);
}

/* Schließen-Button */
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.40);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.popup-close:hover {
  background: rgba(0,0,0,0.10);
  color: var(--dark);
}

/* Eyebrow */
.popup-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}

/* Titel */
.popup-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1.15;
  margin: 0;
}

/* Beschreibung */
.popup-desc {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Formular ── */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.popup-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.popup-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}
.popup-req { color: var(--brand); }

.popup-field input {
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 300;
  font-family: var(--font-sans);
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.popup-field input:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(141,3,3,0.08);
}
.popup-field input::placeholder { color: #bbb; }

/* Interesse */
.popup-interest {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.popup-interest-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}
.popup-interest-label span {
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #bbb;
}
.popup-checks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.popup-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  background: #f8f8f8;
  transition: border-color 0.2s ease, background 0.2s ease;
  user-select: none;
}
.popup-check:hover { border-color: #ccc; background: #f0f0f0; }
.popup-check:has(input:checked) {
  border-color: var(--brand);
  background: rgba(141,3,3,0.05);
}
.popup-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}
.popup-check span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #666;
}
.popup-check:has(input:checked) span { color: var(--brand); }

/* ── Spam-Math-Feld: versteckt ── */
.spam-math-field { display: none !important; }

/* ── Kategorie-Kacheln (Produkt-Auswahl im Popup) ── */
.popup-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.popup-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  background: #f8f8f8;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  user-select: none;
  position: relative;
}
.popup-cat-tile input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.popup-cat-tile i {
  font-size: 18px;
  color: #aaa;
  transition: color 0.2s ease;
}
.popup-cat-tile span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #888;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.popup-cat-tile:hover {
  border-color: #ccc;
  background: #f0f0f0;
}
.popup-cat-tile.selected {
  border-color: var(--brand);
  background: rgba(141,3,3,0.05);
  box-shadow: 0 0 0 3px rgba(141,3,3,0.07);
}
.popup-cat-tile.selected i { color: var(--brand); }
.popup-cat-tile.selected span { color: var(--brand); }

/* DSGVO */
.popup-dsgvo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.popup-dsgvo input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}
.popup-dsgvo span {
  font-size: 11px;
  font-weight: 300;
  color: #888;
  line-height: 1.6;
}
.popup-dsgvo a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.popup-dsgvo a:hover { color: var(--brand-dark); }

/* Feedback-Meldung */
.popup-note {
  font-size: 12px;
  min-height: 16px;
  margin: 0;
  font-weight: 400;
  transition: color 0.3s;
}
.popup-note.success { color: #7ecfa0; }
.popup-note.error   { color: #e07070; }

/* Submit-Button */
.popup-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 14px 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-display);
  transition: background 0.3s ease, transform 0.2s ease;
}
.popup-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.popup-submit i { font-size: 11px; }

/* ================================================================
   POPUP — DANKE-SCREEN (erscheint nach erfolgreichem Absenden)
================================================================ */
.popup-thankyou {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  border-radius: 2px;
}
.popup-thankyou.visible {
  display: flex;
}
.popup-ty-bg {
  position: absolute;
  inset: 0;
}
.popup-ty-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  transition: transform 12s ease;
  filter: brightness(1.05) saturate(1.05);
}
.popup-thankyou.visible .popup-ty-bg img {
  transform: scale(1.0);
}
.popup-ty-shade {
  position: absolute;
  inset: 0;
  background-image: url('../images/danke-sauna.jpg');
  background-size: cover;
  background-position: center;
}
.popup-ty-shade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,30,0.05) 0%,
    rgba(10,20,30,0.20) 50%,
    rgba(10,20,30,0.45) 100%
  );
}
.popup-ty-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px;
  width: 100%;
  gap: 24px;
}
.popup-ty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: popup-ty-pop 0.5s 0.2s both cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popup-ty-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.popup-ty-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.popup-ty-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin: 0;
}
.popup-ty-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 400px;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.30);
}
.popup-ty-logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 8px;
}
.popup-ty-logo .logo-word {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.popup-ty-logo .logo-sub {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}
.popup-ty-close {
  margin-top: 8px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.40);
  color: rgba(255,255,255,0.92);
  padding: 13px 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.popup-ty-close:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.65);
}

/* ================================================================
   SPAM-SCHUTZ
================================================================ */

/* Layer 1 — Honeypot (unsichtbar für echte Nutzer) */
.popup-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Layer 3 — Math-Challenge */
.spam-math-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}
.spam-math-label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text, #1a1a1a);
  white-space: nowrap;
  min-width: 60px;
}
.spam-math-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.spam-math-field label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(0,0,0,0.50);
  letter-spacing: 0.04em;
}
.spam-math-field input {
  width: 80px;
  padding: 8px 10px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 2px;
  background: #fff;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.spam-math-field input:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.spam-math-field input.spam-math-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
  animation: spam-shake 0.35s ease;
}
.spam-math-hint {
  font-size: 10px;
  color: rgba(0,0,0,0.38);
  letter-spacing: 0.03em;
  margin-top: 2px;
}
@keyframes spam-shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  .prs-gallery-grid { grid-template-columns: 1fr; }
  .prs-gallery-item--wide { aspect-ratio: 16/9; }
  .prs-features-inner { grid-template-columns: 1fr; }
  .prs-specs-inner { flex-wrap: wrap; }
  .prs-spec-item { flex: 1 1 40%; }
  .prs-spec-div { display: none; }
  /* Popup */
  .popup-box { grid-template-columns: 1fr; }
  .popup-img-col { display: none; }
  .popup-form-col { padding: 40px 28px 36px; }
}
@media (max-width: 600px) {
  .prs-header { padding: 0 20px; }
  .prs-hero-script { font-size: clamp(48px, 14vw, 80px); }
  .prs-cta-btns { flex-direction: column; width: 100%; }
  .prs-btn-primary, .prs-btn-ghost { width: 100%; justify-content: center; }
  .prs-email-row { flex-direction: column; border-radius: 3px; overflow: visible; box-shadow: none; }
  .prs-email-input { border-radius: 3px; box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
  .prs-email-row .prs-btn-primary { border-radius: 3px; width: 100%; justify-content: center; box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
}
