/* ============================================
   ESCORT DELUXE DE — Design System
   Aristokratisch: Champagner + Gold · Königsblau · Bordeaux
   ============================================ */

:root {
  /* Base — pure black with slight warm depth */
  --color-bg: #08070a;              /* Deep near-black */
  --color-bg-elevated: #12100f;     /* Slightly lifted black-brown */
  --color-surface: #1a1613;         /* Card surface — warm dark */
  --color-border: rgba(212, 175, 55, 0.18);
  --color-border-strong: rgba(212, 175, 55, 0.42);

  /* Text — warm ivory on black */
  --color-text: #f5ede0;           /* Warm ivory */
  --color-text-muted: #b8ac97;
  --color-text-subtle: #7a7060;

  /* Gold — luxurious heraldic gold */
  --color-accent: #d4af37;         /* Rich royal gold */
  --color-accent-hover: #e5c258;
  --color-accent-deep: #a68829;
  --color-accent-light: #f0d275;

  /* Deep passionate red — dominant action color */
  --color-red: #c8102e;            /* Bright cardinal red */
  --color-red-bright: #e11d38;
  --color-red-dark: #8b0a1e;
  --color-red-glow: rgba(200, 16, 46, 0.4);

  /* Blue kept minimal (not on homepage) */
  --color-blue: #1e3a5f;
  --color-blue-bright: #2f5a8f;
  --color-blue-dark: #13263f;
  --color-blue-glow: rgba(30, 58, 95, 0.35);

  /* Cross-color decorative tokens */
  --gradient-crest: linear-gradient(90deg, var(--color-blue-bright) 0%, var(--color-accent) 50%, var(--color-red-bright) 100%);

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.82rem, 0.78rem + 0.2vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --text-xl: clamp(1.6rem, 1.3rem + 1.2vw, 2.4rem);
  --text-2xl: clamp(2.2rem, 1.6rem + 2.5vw, 3.6rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 6.5rem);

  /* Spacing (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radius / shadow */
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.55);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --page-max: 1280px;
}

/* ============================================ Base */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
}
.muted { color: var(--color-text-muted); }
.container { width: min(100% - 2.5rem, var(--page-max)); margin-inline: auto; }

/* ============================================ Age Gate */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6, 5, 4, 0.96);
  backdrop-filter: blur(20px);
  display: grid; place-items: center;
  padding: var(--space-6);
  animation: fadeIn 0.4s var(--ease);
}
.age-gate__inner {
  max-width: 520px;
  text-align: center;
  padding: var(--space-16) var(--space-8);
  border: 1px solid var(--color-border-strong);
  background: linear-gradient(180deg, #14110d, #0a0908);
  box-shadow: var(--shadow-lg);
}
.age-gate__logo { margin-bottom: var(--space-8); display: flex; justify-content: center; }
.age-gate h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.age-gate p { color: var(--color-text-muted); font-size: var(--text-sm); margin-bottom: var(--space-8); }
.age-gate__actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }

/* ============================================ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #0a0908;
}
.btn--primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201, 169, 97, 0.25); }
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn--outline:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn--ghost { padding: 8px 12px; letter-spacing: 0.1em; }
.btn--ghost:hover { color: var(--color-accent); }

/* ============================================ Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: var(--space-4) 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.85), rgba(10,9,8,0));
  backdrop-filter: blur(12px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(10, 9, 8, 0.92);
  border-bottom-color: var(--color-border);
  padding: var(--space-3) 0;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
}
.logo { display: flex; align-items: center; gap: var(--space-3); color: var(--color-text); }
.logo__mark { width: 36px; height: 36px; color: var(--color-accent); }
.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__list { display: flex; gap: var(--space-6); }
.nav__link {
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--color-text); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--color-accent); }
.nav__actions { display: flex; align-items: center; gap: var(--space-4); }

/* Language switcher */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid var(--color-border);
  padding: 2px;
}
.lang-btn {
  font-size: 0.72rem;
  padding: 5px 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.lang-btn:hover { color: var(--color-text); }
.lang-btn.active { background: var(--color-accent); color: #0a0908; }

.nav-toggle { display: none; color: var(--color-text); padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================ Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.35) 40%, rgba(10,9,8,0.95) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.75) 0%, rgba(10,9,8,0.15) 60%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 720px;
  padding-block: var(--space-24) var(--space-16);
}
.hero__eyebrow { margin-bottom: var(--space-6); }
.hero__title {
  font-size: var(--text-hero);
  margin-bottom: var(--space-6);
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}
.hero__lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.hero__cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: var(--space-8); left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-subtle);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.hero__scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================ Sections */
section { padding-block: clamp(var(--space-20), 10vw, var(--space-32)); }
.section-header { text-align: center; margin-bottom: var(--space-16); max-width: 640px; margin-inline: auto; }
.section-header .eyebrow { display: block; margin-bottom: var(--space-4); }
.section-header h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.section-header p { color: var(--color-text-muted); font-size: var(--text-base); }

.divider {
  width: 60px; height: 1px;
  background: var(--color-accent);
  margin-inline: auto;
  margin-block: var(--space-4);
}

/* ============================================ Models */
.models-section { background: var(--color-bg); }
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  max-width: 960px; margin-inline: auto;
}
.model-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  transition: all 0.5s var(--ease);
  display: block;
  color: inherit;
}
.model-card:hover { border-color: var(--color-border-strong); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.model-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.model-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.model-card:hover .model-card__image img { transform: scale(1.05); }
.model-card__image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,0.9) 100%);
}
.model-card__badge {
  position: absolute; top: var(--space-4); left: var(--space-4);
  z-index: 2;
  background: rgba(10,9,8,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-strong);
  padding: 6px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.model-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: var(--space-6);
}
.model-card__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 4px;
  color: var(--color-text);
}
.model-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; gap: var(--space-3); align-items: center;
}
.model-card__meta span:not(:last-child)::after {
  content: "·"; margin-left: var(--space-3); color: var(--color-accent);
}
.model-card__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  transition: all 0.3s var(--ease);
}
.model-card:hover .model-card__link { color: var(--color-accent); }
.model-card__link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.model-card:hover .model-card__link svg { transform: translateX(4px); }

/* ============================================ About / Editorial */
.editorial {
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
}
.editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.editorial__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.editorial__image img { width: 100%; height: 100%; object-fit: cover; }
.editorial__content h2 { font-size: var(--text-2xl); margin: var(--space-3) 0 var(--space-6); }
.editorial__content p { color: var(--color-text-muted); font-size: var(--text-base); margin-bottom: var(--space-4); line-height: 1.7; max-width: 52ch; }
.editorial__content p:last-of-type { margin-bottom: var(--space-8); }

/* ============================================ Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-1);
  border: 1px solid var(--color-border);
  background: var(--color-border);
}
.service-card {
  background: var(--color-bg-elevated);
  padding: var(--space-8);
  transition: background 0.4s var(--ease);
}
.service-card:hover { background: var(--color-surface); }
.service-card__icon {
  width: 44px; height: 44px;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}
.service-card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.65; margin-bottom: var(--space-6); }
.service-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-4);
}
.service-card__price small { font-size: 0.7rem; color: var(--color-text-subtle); letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 4px; font-family: var(--font-body); }

/* ============================================ Discretion / Trust */
.trust {
  background:
    linear-gradient(rgba(10,9,8,0.85), rgba(10,9,8,0.85)),
    url("./assets/hero/ambiance.png") center/cover;
  text-align: center;
}
.trust__inner { max-width: 720px; margin-inline: auto; }
.trust h2 { font-size: var(--text-2xl); margin: var(--space-3) 0 var(--space-6); }
.trust p { color: var(--color-text-muted); font-size: var(--text-lg); line-height: 1.7; margin-bottom: var(--space-8); }
.trust__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
  text-align: left;
}
.pillar__icon { width: 32px; height: 32px; color: var(--color-accent); margin-bottom: var(--space-4); }
.pillar h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: var(--space-2); }
.pillar p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

/* ============================================ CTA / Booking */
.cta {
  text-align: center;
  padding-block: var(--space-32);
}
.cta__title { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.cta__lede { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 48ch; margin-inline: auto; margin-bottom: var(--space-8); }
.cta__actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ============================================ Booking Form */
.form-section { background: var(--color-bg-elevated); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 720px;
  margin: 0 auto;
}
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color 0.3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-sm); color: var(--color-text-muted); }
.form-consent input { margin-top: 4px; accent-color: var(--color-accent); }
.form-actions { display: flex; justify-content: center; margin-top: var(--space-6); }

/* ============================================ Footer */
.footer {
  background: #050403;
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-sm);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
.footer__brand p { color: var(--color-text-muted); margin-top: var(--space-4); font-size: var(--text-sm); line-height: 1.65; max-width: 32ch; }
.footer h5 {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  font-weight: 500;
}
.footer__list li { margin-bottom: var(--space-3); }
.footer__list a { color: var(--color-text-muted); transition: color 0.3s var(--ease); }
.footer__list a:hover { color: var(--color-accent); }
.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--color-text-subtle);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================================ Model Detail Pages */
.model-page {
  padding-top: 120px;
  padding-bottom: var(--space-24);
}
.model-hero {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
}
.model-hero__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.model-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.model-hero__info { display: flex; flex-direction: column; justify-content: center; }
.model-hero__name {
  font-size: var(--text-hero);
  line-height: 1;
  margin: var(--space-2) 0 var(--space-6);
}
.model-hero__bio { color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-4); font-size: var(--text-base); }
.model-hero__actions { margin-top: var(--space-8); display: flex; gap: var(--space-3); flex-wrap: wrap; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-1);
  border: 1px solid var(--color-border);
  background: var(--color-border);
  margin-block: var(--space-12);
}
.stat {
  background: var(--color-bg-elevated);
  padding: var(--space-6);
}
.stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-2);
}
.stat__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-text);
}

.model-back {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease);
  margin-bottom: var(--space-6);
}
.model-back:hover { color: var(--color-accent); }

.model-section h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}
.model-section { margin-block: var(--space-16); max-width: 720px; }
.model-section p { color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-4); }

.chips { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chip {
  padding: 8px 16px;
  border: 1px solid var(--color-border-strong);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: all 0.3s var(--ease);
}
.chip:hover { color: var(--color-accent); border-color: var(--color-accent); }

/* ============================================ Legal pages */
.legal-page {
  padding-top: 140px;
  padding-bottom: var(--space-24);
  max-width: 780px;
}
.legal-page h1 { font-family: var(--font-display); font-size: var(--text-2xl); margin-bottom: var(--space-8); }
.legal-page h2 { font-family: var(--font-display); font-size: var(--text-xl); margin: var(--space-12) 0 var(--space-4); }
.legal-page h3 { font-size: var(--text-lg); margin: var(--space-8) 0 var(--space-3); font-weight: 500; color: var(--color-accent); }
.legal-page p, .legal-page li { color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--space-3); font-size: var(--text-base); max-width: 68ch; }
.legal-page ul { padding-left: var(--space-6); list-style: disc; }
.legal-page ul li { margin-bottom: var(--space-2); }
.legal-page strong { color: var(--color-text); }
.legal-page a { color: var(--color-accent); text-decoration: underline; }

/* ============================================ Prices */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-16);
}
.price-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-8);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.price-card:hover { border-color: var(--color-accent); transform: translateY(-4px); }
.price-card--duo {
  background: linear-gradient(180deg, rgba(201,169,97,0.06) 0%, rgba(10,9,8,0) 100%);
  border-color: rgba(201,169,97,0.4);
}
.price-card__head { border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-6); margin-bottom: var(--space-6); }
.price-card__head h3 { font-size: var(--text-2xl); margin-top: var(--space-2); }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(201,169,97,0.08);
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.price-list li:last-child { border-bottom: none; }
.price-list li span { color: var(--color-text-muted); }
.price-list li strong { color: var(--color-accent); font-weight: 500; font-variant-numeric: tabular-nums; }
.price-list__highlight { padding-top: var(--space-4) !important; margin-top: var(--space-2); border-top: 1px solid rgba(201,169,97,0.3) !important; }
.price-list__highlight strong { font-size: var(--text-xl); }
.prices-note {
  text-align: center;
  color: var(--color-text-subtle);
  font-size: var(--text-sm);
  margin-top: var(--space-8);
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}

/* ============================================ Lead time notice */
.lead-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding: var(--space-8);
  border: 1px solid rgba(201,169,97,0.3);
  background: rgba(201,169,97,0.04);
}
.lead-notice__icon { flex-shrink: 0; width: 40px; height: 40px; color: var(--color-accent); }
.lead-notice h4 { color: var(--color-accent); font-family: var(--font-display); font-size: var(--text-xl); margin-bottom: var(--space-2); font-weight: 500; }
.lead-notice p { color: var(--color-text-muted); line-height: 1.7; margin: 0; }

.model-card__badge--duo { background: var(--color-accent); color: var(--color-bg); }

/* ============================================ Service list */
.service-chips {
  display: flex; flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.service-chips .chip {
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 6px 14px;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.service-chips .chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.extras-note { color: var(--color-text-subtle); font-size: var(--text-sm); margin-top: var(--space-4); font-style: italic; }

/* ============================================ Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.gallery__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.gallery__item img,
.gallery__item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.03); }
.gallery__item--video::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(10,9,8,0.7);
  border: 1px solid var(--color-accent);
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.gallery__item--video::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--color-accent);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.gallery__item.is-playing::before,
.gallery__item.is-playing::after { opacity: 0; }
.gallery__download {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: rgba(10,9,8,0.85);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  z-index: 3;
}
.gallery__download:hover { background: var(--color-accent); color: var(--color-bg); }
.gallery__download svg { width: 14px; height: 14px; }
.gallery__empty {
  padding: var(--space-8);
  text-align: center;
  color: var(--color-text-subtle);
  border: 1px dashed var(--color-border);
  font-family: var(--font-display); font-style: italic;
}

/* ============================================ Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================ Responsive */
@media (max-width: 900px) {
  .editorial__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .model-hero { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .prices-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .lead-notice { flex-direction: column; padding: var(--space-6); gap: var(--space-3); }
}

@media (max-width: 700px) {
  .nav__list { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open .nav__list {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,9,8,0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid var(--color-border);
  }
  .hero { padding-top: 80px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   ADDITIONS: Split Hero, Value Ribbon, Red Accents
   ============================================ */

/* Split hero — portrait + text */
.hero--split {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: var(--space-24);
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 26, 43, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
    var(--color-bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: min(80vh, 700px);
}
.hero__text { max-width: 620px; }
.hero__title-vip {
  color: var(--color-red-bright);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  position: relative;
}
.hero__title-vip::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--color-red-bright);
  border-radius: 50%;
  margin-left: 4px;
  margin-bottom: 0.6em;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--color-red-glow);
}
.hero__badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: 100px;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(26, 23, 20, 0.6);
  backdrop-filter: blur(8px);
}
.hero__badge--muted { color: var(--color-text-muted); }
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-red-bright);
  box-shadow: 0 0 8px var(--color-red-glow);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Portrait side */
.hero__portrait {
  position: relative;
  display: flex; justify-content: center;
}
.hero__portrait-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--color-border-strong);
}
.hero__portrait-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  background: linear-gradient(160deg, var(--color-accent) 0%, transparent 40%, var(--color-red) 100%);
  border-radius: 4px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.hero__portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.hero__portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-6);
  background: linear-gradient(0deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.6) 60%, transparent 100%);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 1;
}

/* Value Ribbon */
.value-ribbon {
  padding-block: var(--space-16) !important;
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
}
.value-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
}
.value-ribbon__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.value-ribbon__item svg {
  width: 40px; height: 40px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.value-ribbon__item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-lg);
  margin-bottom: 4px;
  color: var(--color-text);
}
.value-ribbon__item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}

/* Red button variant (subtle highlight CTA) */
.btn--red {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-red);
  position: relative;
  overflow: hidden;
}
.btn--red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-bright) 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn--red:hover {
  border-color: var(--color-red-bright);
  color: #fff;
  box-shadow: 0 6px 24px var(--color-red-glow);
}
.btn--red:hover::before { transform: translateY(0); }

/* Subtle red accents on existing elements */
.model-card__badge:not(.model-card__badge--duo) {
  background: var(--color-red) !important;
  color: #fff !important;
  border-color: var(--color-red-bright) !important;
}
.price-list__highlight strong {
  color: var(--color-red-bright);
}
.price-list__highlight {
  border-top-color: var(--color-red) !important;
}

/* Responsive */
@media (max-width: 900px) {
  .hero--split { padding-top: 100px; padding-bottom: var(--space-16); }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    min-height: auto;
  }
  .hero__portrait { order: -1; }
  .hero__portrait-frame { max-width: 360px; aspect-ratio: 4/5; }
  .value-ribbon__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 560px) {
  .hero__portrait-frame { max-width: 100%; }
  .hero__badges { gap: var(--space-2); }
  .hero__badge { padding: 6px 10px; font-size: 0.7rem; }
}

/* ============================================
   REFINEMENTS: editorial polish, section headers
   ============================================ */

/* Editorial: subtle red divider */
.editorial__content .display::after {
  content: "";
  display: block;
  width: 40px; height: 2px;
  background: var(--color-red-bright);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

/* Section headers: slight left-lean look via divider color */
.section-header .divider {
  background: linear-gradient(90deg, var(--color-red-bright), var(--color-accent));
}

/* Value ribbon: subtle red on hover for icons */
.value-ribbon__item {
  transition: transform 0.3s var(--ease);
}
.value-ribbon__item:hover {
  transform: translateY(-2px);
}
.value-ribbon__item:hover svg {
  color: var(--color-red-bright);
  transition: color 0.3s var(--ease);
}

/* Model cards: red glow on hover badges + slight lift */
.model-card {
  transition: transform 0.4s var(--ease);
}
.model-card:hover .model-card__badge:not(.model-card__badge--duo) {
  box-shadow: 0 0 20px var(--color-red-glow);
}

/* Booking form submit CTA gets red hover accent */
#bookingForm .btn--primary:hover {
  background: var(--color-red-bright);
  box-shadow: 0 6px 20px var(--color-red-glow);
}

/* ============================================
   ESCORT DELUXE — Aristocratic additions
   ============================================ */

/* Heraldic gradient divider — gold/blue/red */
.crest-divider {
  width: 120px; height: 2px;
  background: var(--gradient-crest);
  margin-inline: auto;
  margin-block: var(--space-6);
  opacity: 0.9;
}
.crest-divider--left { margin-left: 0; }

/* Blue trust section */
.trust-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(30,58,95,0.12) 100%);
  border-block: 1px solid rgba(47, 90, 143, 0.2);
}
.trust-section .pillar__icon { color: var(--color-blue-bright); }
.trust-section .divider { background: var(--color-blue-bright); }

/* Landing hero — no portrait, coat-of-arms centered */
.hero--landing {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: 120px; padding-bottom: var(--space-24);
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 58, 95, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 26, 43, 0.08) 0%, transparent 50%),
    var(--color-bg);
  overflow: hidden;
}
.hero--landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(201,169,97,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-landing__inner {
  position: relative;
  max-width: 920px;
  padding: 0 var(--space-6);
}
.hero-landing__crest {
  width: 90px; height: 90px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  color: var(--color-accent);
  filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.35));
}
.hero-landing__eyebrow {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
  letter-spacing: 0.28em;
}
.hero-landing__title {
  font-size: clamp(2.6rem, 1.8rem + 4vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-6);
}
.hero-landing__title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}
.hero-landing__lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.65;
}
.hero-landing__cta {
  display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center;
  margin-bottom: var(--space-10);
}
.hero-landing__meta {
  display: flex; gap: var(--space-6); flex-wrap: wrap; justify-content: center;
  color: var(--color-text-subtle);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: 900px;
  margin-inline: auto;
}
.hero-landing__meta span { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero-landing__meta span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
}
.hero-landing__meta span:nth-child(2)::before { background: var(--color-blue-bright); }
.hero-landing__meta span:nth-child(3)::before { background: var(--color-red-bright); }

/* Manifesto section — quote-style */
.manifesto {
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
}
.manifesto__inner {
  max-width: 820px;
  margin-inline: auto;
  padding: 0 var(--space-6);
  text-align: center;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2.4rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--color-text);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.manifesto__quote::before,
.manifesto__quote::after {
  content: '"';
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin: 0 0.1em;
  opacity: 0.6;
}
.manifesto__attribution {
  margin-top: var(--space-8);
  color: var(--color-text-subtle);
  font-size: var(--text-sm);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Three pillars grid — gold/blue/red coded */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.pillar-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
}
.pillar-card__icon {
  width: 48px; height: 48px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
}
.pillar-card--gold .pillar-card__icon { color: var(--color-accent); }
.pillar-card--gold:hover { border-color: var(--color-accent); }
.pillar-card--blue .pillar-card__icon { color: var(--color-blue-bright); }
.pillar-card--blue:hover { border-color: var(--color-blue-bright); box-shadow: 0 8px 24px var(--color-blue-glow); }
.pillar-card--red .pillar-card__icon { color: var(--color-red-bright); }
.pillar-card--red:hover { border-color: var(--color-red-bright); box-shadow: 0 8px 24px var(--color-red-glow); }
.pillar-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.pillar-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* Blue button variant */
.btn--blue {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-blue-bright);
}
.btn--blue:hover {
  background: var(--color-blue-bright);
  color: #fff;
  box-shadow: 0 6px 20px var(--color-blue-glow);
}

/* Sub-page hero — small, elegant */
.subhero {
  padding-top: 140px;
  padding-bottom: var(--space-16);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse at center top, rgba(201,169,97,0.06) 0%, transparent 60%),
    var(--color-bg);
}
.subhero .eyebrow { margin-bottom: var(--space-3); }
.subhero__title {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 4rem);
  margin-bottom: var(--space-4);
}
.subhero__lede {
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-inline: auto;
  font-size: var(--text-base);
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-landing__meta { flex-direction: column; gap: var(--space-3); }
}

/* ============================================
   DARK THEME OVERRIDE — Schwarz-Gold-Rot
   Rot ist die dominante Aktions-/Akzentfarbe
   ============================================ */

body {
  background: var(--color-bg);
  color: var(--color-text);
}

/* Header — deep black with red-glow underline */
.header {
  background: rgba(8, 7, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}
.header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-red) 50%, transparent 100%);
  opacity: 0.6;
}
.logo, .logo__text { color: var(--color-text); }
.nav__link { color: var(--color-text-muted); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--color-accent); }
.lang-btn { background: transparent; color: var(--color-text-muted); border-color: var(--color-border); }
.lang-btn.active { background: var(--color-accent); color: var(--color-bg); }
.nav-toggle { color: var(--color-text); }

/* Age gate — dark with gold border */
.age-gate { background: rgba(0, 0, 0, 0.94); }
.age-gate__inner {
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15), 0 0 80px rgba(200, 16, 46, 0.15);
}
.age-gate__inner p { color: var(--color-text-muted); }

/* Buttons — Red as primary CTA */
.btn--primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
  box-shadow: 0 4px 20px var(--color-red-glow);
}
.btn--primary:hover {
  background: var(--color-red-bright);
  border-color: var(--color-red-bright);
  color: #fff;
  box-shadow: 0 6px 28px rgba(225, 29, 56, 0.55);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn--red {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
  box-shadow: 0 4px 20px var(--color-red-glow);
}
.btn--red:hover {
  background: var(--color-red-bright);
  border-color: var(--color-red-bright);
  color: #fff;
  box-shadow: 0 8px 32px rgba(225, 29, 56, 0.6);
  transform: translateY(-1px);
}
.btn--blue {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--blue:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* Landing hero — deep black with red spotlight, gold crest */
.hero--landing {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(200, 16, 46, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    var(--color-bg);
  color: var(--color-text);
}
.hero--landing::before { display: none; }
.hero-landing__crest {
  color: var(--color-accent);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.35)) drop-shadow(0 0 60px rgba(200, 16, 46, 0.2));
}
.hero-landing__eyebrow, .eyebrow { color: var(--color-red-bright); font-weight: 500; }
.hero-landing__title { color: var(--color-text); }
.hero-landing__title em { color: var(--color-red-bright); font-style: italic; }
.hero-landing__lede { color: var(--color-text-muted); }
.hero-landing__meta { color: var(--color-text-subtle); }
.hero-landing__meta span::before { color: var(--color-red); }
.hero__scroll { color: var(--color-text-subtle); }

/* Manifesto — pure black with red-gold gradient accents */
.manifesto {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200, 16, 46, 0.1) 0%, transparent 60%),
    var(--color-bg-elevated);
  color: var(--color-text);
  border-block: 1px solid var(--color-border);
}
.manifesto__quote { color: var(--color-text); font-style: italic; }
.manifesto__quote::before, .manifesto__quote::after { color: var(--color-red-bright); }
.manifesto__attribution { color: var(--color-accent); letter-spacing: 0.2em; }

/* Section headers */
.section-header h2, .display, h1, h2, h3, h4, h5 { color: var(--color-text); }
.display em, h1 em, h2 em, h3 em { color: var(--color-red-bright); font-style: italic; }
.section-header p, section p { color: var(--color-text-muted); }

/* Crest divider — now gold-red-gold */
.crest-divider {
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 25%, var(--color-red-bright) 50%, var(--color-accent) 75%, transparent 100%);
  height: 2px;
  width: 120px;
  margin: var(--space-6) auto;
}

/* Pillars — dark cards with strong red hover */
.pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.pillar-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 8px 32px var(--color-red-glow);
  transform: translateY(-4px);
}
.pillar-card h4 { color: var(--color-text); }
.pillar-card p { color: var(--color-text-muted); }
.pillar-card--gold .pillar-card__icon { color: var(--color-accent); }
.pillar-card--blue .pillar-card__icon { color: var(--color-red); }        /* was blue, now red */
.pillar-card--red  .pillar-card__icon { color: var(--color-red-bright); }
.pillar-card--gold:hover { border-color: var(--color-accent); box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3); }
.pillar-card--blue:hover { border-color: var(--color-red); box-shadow: 0 8px 32px var(--color-red-glow); }
.pillar-card--red:hover  { border-color: var(--color-red-bright); box-shadow: 0 8px 32px rgba(225, 29, 56, 0.5); }

/* Editorial — dark with gold-framed image */
.editorial {
  background: var(--color-bg);
  color: var(--color-text);
}
.editorial__content .display, .editorial__content h2 { color: var(--color-text); }
.editorial__content em { color: var(--color-red-bright); }
.editorial__content p { color: var(--color-text-muted); }
.editorial__image {
  border: 3px solid var(--color-accent);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(200, 16, 46, 0.12);
}

/* CTA — DEEP RED block, dominant */
.cta {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(225, 29, 56, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(139, 10, 30, 0.5) 0%, transparent 60%),
    var(--color-red-dark);
  color: #fff;
  border-block: 1px solid var(--color-accent);
}
.cta .display, .cta__title, .cta h1, .cta h2 { color: #fff; }
.cta__title em { color: var(--color-accent-light); }
.cta__lede, .cta p { color: rgba(255, 255, 255, 0.92); }
.cta .eyebrow { color: var(--color-accent-light); }
.cta .btn--red {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.cta .btn--red:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: var(--color-bg); }
.cta .btn--blue {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.cta .btn--blue:hover { background: #fff; color: var(--color-red-dark); }

/* Trust section — dark with red accents */
.trust-section {
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border-block: 1px solid var(--color-border);
}
.trust-section .pillar__icon { color: var(--color-red-bright); }
.trust-section .display, .trust-section h2, .trust-section h4 { color: var(--color-text); }
.trust-section em { color: var(--color-red-bright); }
.trust-section p { color: var(--color-text-muted); }
.trust-section .eyebrow { color: var(--color-red-bright); }

/* Value ribbon — dark */
.value-ribbon {
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
}
.value-ribbon__item { color: var(--color-text-muted); }
.value-ribbon__item .icon-wrap { color: var(--color-accent); }
.value-ribbon__item h4 { color: var(--color-text); }
.value-ribbon__item p { color: var(--color-text-muted); }

/* Model cards — dark with red badge */
.models-section, .models-grid { background: transparent; }
.model-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.model-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 12px 40px var(--color-red-glow);
  transform: translateY(-6px);
}
.model-card__info { color: var(--color-text); background: rgba(26, 22, 19, 0.94); border-top: 1px solid var(--color-border); }
.model-card__name { color: var(--color-text); }
.model-card__meta { color: var(--color-text-subtle); }
.model-card__link {
  color: var(--color-accent);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}
.model-card__link:hover { color: var(--color-red-bright); background: var(--color-bg-elevated); }
.model-card__badge {
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 2px 10px var(--color-red-glow);
}
.model-card__badge--duo { background: var(--color-accent); color: var(--color-bg); }

/* Subhero (interior pages) — dark */
.subhero {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(200, 16, 46, 0.15) 0%, transparent 55%),
    var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
}
.subhero .eyebrow { color: var(--color-red-bright); }
.subhero__title { color: var(--color-text); }
.subhero__title em { color: var(--color-red-bright); }
.subhero__lede { color: var(--color-text-muted); }

/* Prices */
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.price-card:hover { border-color: var(--color-accent); }
.price-card--duo { border: 2px solid var(--color-red); box-shadow: 0 0 40px var(--color-red-glow); }
.price-card__head h3 { color: var(--color-text); }
.price-list li { border-bottom-color: var(--color-border); color: var(--color-text-muted); }
.price-list li strong { color: var(--color-text); font-weight: 600; }
.price-list__highlight strong { color: var(--color-red-bright); }
.prices-note { color: var(--color-text-subtle); }
.lead-notice {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.lead-notice__icon { color: var(--color-red-bright); }
.lead-notice p { color: var(--color-text-muted); }

/* Forms */
.form-section { background: var(--color-bg-elevated); }
.form-field label { color: var(--color-text); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-red);
  outline: 2px solid var(--color-red-glow);
}
.form-consent span { color: var(--color-text-muted); }

/* Footer — pure black with gold top border and red accents */
.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  border-top: 2px solid var(--color-red);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 30%, var(--color-red-bright) 50%, var(--color-accent) 70%, transparent 100%);
}
.footer .logo, .footer .logo__text { color: #fff; }
.footer h5 { color: var(--color-accent); }
.footer__list a { color: rgba(255, 255, 255, 0.7); }
.footer__list a:hover { color: var(--color-red-bright); }
.footer__brand p { color: rgba(255, 255, 255, 0.55); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}

/* Contact card links */
.pillar-card a { color: inherit; text-decoration: none; }
.pillar-card .muted { color: var(--color-text-subtle); }

/* Section spacing — airy */
section:not(.hero):not(.subhero):not(.header) {
  padding-block: clamp(var(--space-24), 8vw, var(--space-32));
}
.section-header { margin-bottom: clamp(var(--space-16), 5vw, var(--space-24)); }

/* Reveal fix — always visible */
.reveal { opacity: 1 !important; transform: none !important; }

/* Gallery items — dark frame */
.gallery__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.gallery__item:hover {
  border-color: var(--color-red);
  transform: scale(1.02);
  box-shadow: 0 8px 32px var(--color-red-glow);
}

/* Trust indicator dots between meta items */
.hero-landing__meta span {
  color: var(--color-text-muted);
}
.hero-landing__meta span:not(:last-child)::after {
  color: var(--color-red-bright);
  font-weight: bold;
}

/* =========================================================
   CITIES SECTION + HERO SKYLINE + IMPROVED LEGIBILITY
   ========================================================= */

/* --- Hero: cinematic penthouse skyline background --- */
.hero--landing {
  background:
    linear-gradient(180deg,
      rgba(8, 7, 10, 0.86) 0%,
      rgba(8, 7, 10, 0.75) 40%,
      rgba(8, 7, 10, 0.92) 100%),
    radial-gradient(ellipse 900px 500px at 50% 40%,
      rgba(200, 16, 46, 0.20) 0%,
      transparent 70%),
    url('./assets/cities/hero-skyline.png') center/cover no-repeat,
    #08070a !important;
  min-height: 92vh;
  position: relative;
}
.hero--landing::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(8,7,10,0.98) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero--landing > * { position: relative; z-index: 2; }

/* --- Improved text legibility everywhere --- */
.hero-landing__lede {
  color: #f5ede0 !important;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem) !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  max-width: 62ch !important;
}
.hero-landing__eyebrow {
  color: #e11d38 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-landing__title {
  color: #ffffff !important;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.hero-landing__title em {
  color: #ff2947 !important;
  text-shadow: 0 4px 24px rgba(200,16,46,0.5), 0 2px 8px rgba(0,0,0,0.6);
}
.hero-landing__meta {
  color: #f0d275 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
}
.hero-landing__meta span {
  color: #f0d275 !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Manifesto text bigger + brighter */
.manifesto__quote {
  color: #f5ede0 !important;
  font-size: clamp(1.4rem, 2.4vw, 2rem) !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}
.manifesto__attribution {
  color: #f0d275 !important;
  font-size: 1rem !important;
  letter-spacing: 0.24em !important;
  font-weight: 600 !important;
}

/* Section headers globally: brighter + larger */
.section-header .eyebrow,
.eyebrow {
  color: #e11d38 !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
}
.section-header .display,
h2.display {
  color: #ffffff !important;
}
.section-header .display em,
h2.display em {
  color: #ff2947 !important;
}
.section-lede,
.editorial__content p,
.cta__lede {
  color: #e8ddc9 !important;
  font-size: 1.1rem !important;
  line-height: 1.75 !important;
}

/* Model cards - stronger contrast */
.model-card__name { color: #ffffff !important; }
.model-card__meta { color: #e8ddc9 !important; }
.model-card__eyebrow { color: #f0d275 !important; }

/* Editorial content */
.editorial__content .display { color: #ffffff !important; }
.editorial__content .display em { color: #ff2947 !important; }

/* Footer */
.footer, .footer p, .footer a { color: #e8ddc9 !important; }
.footer .logo__text { color: #f0d275 !important; }

/* =========================================================
   CITIES GRID
   ========================================================= */
.cities {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, #08070a 0%, #12100f 100%);
  position: relative;
}
.cities .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.cities .section-header .eyebrow { display: block; margin-bottom: 1rem; }
.cities .section-header .display {
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  margin-bottom: 1.25rem;
  line-height: 1.15 !important;
}
.cities .section-header .section-lede {
  color: #e8ddc9 !important;
  max-width: 62ch;
  margin: 0 auto;
}

.cities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .cities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .cities__grid { grid-template-columns: 1fr; }
}

.city-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.city-card:hover {
  transform: translateY(-8px);
  border-color: #e11d38;
  box-shadow: 0 20px 60px rgba(200, 16, 46, 0.35),
              0 0 0 1px rgba(225, 29, 56, 0.4);
}
.city-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 7, 10, 0.15) 0%,
    rgba(8, 7, 10, 0.35) 50%,
    rgba(8, 7, 10, 0.92) 100%);
  transition: background 0.4s ease;
}
.city-card:hover .city-card__overlay {
  background: linear-gradient(180deg,
    rgba(200, 16, 46, 0.1) 0%,
    rgba(8, 7, 10, 0.35) 50%,
    rgba(8, 7, 10, 0.95) 100%);
}
.city-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  z-index: 2;
}
.city-card__country {
  display: block;
  color: #e11d38;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.city-card__name {
  display: block;
  color: #ffffff;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}
.cities__more {
  text-align: center;
  color: #b8ac97;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  max-width: 720px;
  margin: 2rem auto 0;
}

/* =========================================================
   MAXIMUM LEGIBILITY PASS — brighter text everywhere
   ========================================================= */

/* Hero — brightest, strongest shadows */
.hero-landing__lede {
  color: #ffffff !important;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem) !important;
  line-height: 1.75 !important;
  font-weight: 500 !important;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.9),
    0 4px 20px rgba(0,0,0,0.8),
    0 0 40px rgba(0,0,0,0.6) !important;
}
.hero-landing__eyebrow {
  color: #ff3d5a !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7) !important;
}
.hero-landing__title,
.hero-landing__title * {
  color: #ffffff !important;
  text-shadow:
    0 3px 8px rgba(0,0,0,0.95),
    0 6px 30px rgba(0,0,0,0.85) !important;
}
.hero-landing__title em {
  color: #ff4d68 !important;
  text-shadow:
    0 3px 8px rgba(0,0,0,0.95),
    0 6px 30px rgba(0,0,0,0.85),
    0 0 40px rgba(255, 41, 71, 0.5) !important;
}
.hero-landing__meta,
.hero-landing__meta span {
  color: #ffd97a !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 0 16px rgba(0,0,0,0.7) !important;
}

/* Manifesto — bigger, brighter */
.manifesto__quote {
  color: #ffffff !important;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem) !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}
.manifesto__attribution {
  color: #ffd97a !important;
  font-weight: 700 !important;
}

/* Section headers — pure white */
.section-header .eyebrow,
.eyebrow {
  color: #ff3d5a !important;
  font-weight: 700 !important;
}
.section-header .display,
h2.display,
h2.display * {
  color: #ffffff !important;
}
.section-header .display em,
h2.display em {
  color: #ff4d68 !important;
}

/* Body text everywhere — brighter and larger */
.section-lede,
.editorial__content p,
.cta__lede,
.model-card__meta,
.hero-landing__meta {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
}

/* Editorial */
.editorial__content .display,
.editorial__content .display * { color: #ffffff !important; }
.editorial__content .display em { color: #ff4d68 !important; }

/* Model card labels */
.model-card__name { color: #ffffff !important; font-weight: 600 !important; }
.model-card__eyebrow { color: #ffd97a !important; font-weight: 700 !important; }

/* Footer */
.footer,
.footer p,
.footer a,
.footer li {
  color: #ffffff !important;
  font-weight: 400 !important;
}
.footer .logo__text { color: #ffd97a !important; font-weight: 600 !important; }
.footer a:hover { color: #ff4d68 !important; }

/* Cities section text */
.cities .section-header .section-lede {
  color: #ffffff !important;
  font-weight: 400 !important;
}
.city-card__name {
  color: #ffffff !important;
  text-shadow:
    0 3px 10px rgba(0,0,0,0.95),
    0 6px 24px rgba(0,0,0,0.8) !important;
}
.city-card__country {
  color: #ff4d68 !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9) !important;
}
.cities__more {
  color: #ffd97a !important;
  font-weight: 600 !important;
}

/* Nav / header links — brighter */
.nav a, .header a { color: #ffffff !important; }
.nav a:hover, .header a:hover { color: #ff4d68 !important; }

/* Buttons — ensure text is white */
.btn { font-weight: 600 !important; }
.btn--primary, .btn--red { color: #ffffff !important; }
.btn--outline { color: #ffd97a !important; border-color: #ffd97a !important; }

/* Profil-Seiten: Verfügbarkeit/Standort in Gold statt Rot */
.model-hero__info .eyebrow {
  color: #d4af37 !important;
}
