/* ==============================================
   BLACK SWAN GYM — Complete Design System
   T1:  Typography & Brand (Cinzel + Raleway)
   T2:  Swan Logo Prominence
   T3:  Hero Section
   T4:  Mobile Bottom Nav
   T5:  Cookie Banner
   T6:  WhatsApp Button
   T7:  Contact Form
   T9:  Inline Styles → CSS Classes
   T10: Section Visual Rhythm
   T11: Pricing Table
   T13: Footer
   T14: Technical Foundations
   T15: Animations
   T16: Accessibility
   ============================================== */

/* ── Self-hosted Fonts (DSGVO-compliant) ───────── */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/cinzel-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/cinzel-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/raleway-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/raleway-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── CSS Variables ─────────────────────────────── */
:root {
  --primary: #0a0a0a;
  --accent: #b4ff39; /* Akzentfarbe (Buttons/Highlights) – optional */
  --accent-hover: #9de02e;
  --accent-glow: rgba(180, 255, 57, .15);
  --oxford: #2d443c; /* Oxfordgrün (Markenfarbe) */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --ink: #0b0b0d;
  --text: #1a1a2e;
  --muted: #6b6d7b;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 18px 55px rgba(2, 6, 23, .10);
  --shadow-soft: 0 10px 28px rgba(2, 6, 23, .08);
  --radius: 20px;
  --radius-sm: 14px;
  --ring: 0 0 0 3px rgba(180, 255, 57, .4);
  --font-brand: 'Cinzel', Georgia, 'Times New Roman', serif; /* Brand-Font (Cinzel) für Headlines/Logo */
  --font-body: 'Raleway', system-ui, -apple-system, sans-serif; /* Body-Font für Fließtext */
  --bottom-bar-h: 68px;
}

/* ── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
/* GLOBAL / Grundlayout: Hintergrund, Standardschrift, Rendering */

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 22px; }

/* ── Skip to Content (T16) ─────────────────────── */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* ── Header ────────────────────────────────────── */
/* HEADER / Sticky/Header-Optik (Glass + Border) */

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(10, 10, 10, .88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 74px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: #fff;
}
/* LOGO-GRÖSSE / hier Höhe ändern (mobil extra Regel unten) */

.brand img { height: 52px; width: auto; display: block; }
.brand-text {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.brand-slogan {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
/* NAV / Desktop-Menü; wird auf Mobile ausgeblendet */

.nav {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  padding: 6px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
}
.nav a {
  text-decoration: none; font-weight: 700; font-size: 14px;
  color: rgba(255, 255, 255, .85);
  padding: 8px 14px; border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav a:hover, .nav a:focus-visible {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.header-actions { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }

/* ── Buttons ───────────────────────────────────── */
/* BUTTON BASIS / Padding, Radius, Shadow */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--border);
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring), var(--shadow);
}
/* PRIMARY CTA / Hauptbutton (Mitglied werden) – Farbe/Gradient hier */

.btn.primary {
  background: var(--accent);
  color: var(--primary);
  border-color: transparent;
  font-weight: 800;
}
.btn.primary:hover {
  background: var(--accent-hover);
}
/* SECONDARY CTA / Zweitbutton (z.B. Probetraining) */

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  box-shadow: none;
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .4);
}

/* T9: Extracted inline button styles */
.btn--white {
  background: #fff;
  color: var(--ink);
  border-color: transparent;
}
.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
}
.btn--outline {
  box-shadow: none;
  background: #fff;
  border: 1px solid var(--border);
}
.btn--full { width: 100%; }
.cta-group {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Icon button (member area) */
.iconbtn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  box-shadow: none;
  transition: transform .2s ease, background .2s ease;
}
.iconbtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .14);
}

/* ── Hero Section (T3) ─────────────────────────── */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--primary);
}
.hero-media {
  position: absolute; inset: -20px;
  background-size: cover; background-position: center;
  filter: saturate(1.1) contrast(1.08);
  opacity: .55;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, .82) 0%, rgba(10, 10, 10, .55) 50%, rgba(10, 10, 10, .3) 100%);
}
/* T2: Swan watermark behind hero */
.hero::after {
  content: '';
  position: absolute;
  right: -5%; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: url('/assets/img/brand/logo.png') no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 110px 0 90px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.hero-slogan {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--accent);
  letter-spacing: 0.06em;
  margin: 0 0 20px;
}
.hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  max-width: 54ch;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}
.hero-trust span::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 900;
}

/* ── Kicker / Label ────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
  font-size: 12px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--accent-glow);
  border: 1px solid rgba(180, 255, 57, .2);
  color: var(--accent);
}
.section:not(.dark) .kicker {
  background: rgba(45, 68, 60, .08);
  border-color: rgba(45, 68, 60, .15);
  color: var(--oxford);
}

/* ── Sections (T10: Visual Rhythm) ─────────────── */
.section { padding: 90px 0; }
.section--tight { padding-top: 24px; }
.section.alt {
  background: var(--surface-2);
}
.section.dark {
  background: var(--primary);
  color: #fff;
}
.section.dark p { color: rgba(255, 255, 255, .78); }
.section.accent {
  background: linear-gradient(135deg, #0f1f1b 0%, #1a3a2e 50%, #2d443c 100%);
  color: #fff;
}
.section.accent p { color: rgba(255, 255, 255, .82); }
/* Legacy oxford class - mapped to accent */
.section.oxford {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #fff;
}
.section.oxford p { color: rgba(255, 255, 255, .82); }
.section h2 {
  font-family: var(--font-brand);
  font-weight: 700;
  margin: 12px 0 16px;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.section p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 72ch;
}

/* ── Cards ─────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card {
  grid-column: span 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card h3 {
  font-family: var(--font-brand);
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.section.oxford .card,
.section.dark .card,
.section.accent .card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: none;
}
.section.oxford .card p,
.section.dark .card p,
.section.accent .card p {
  color: rgba(255, 255, 255, .75);
}

/* ── Gallery (T15: hover zoom) ─────────────────── */
.gallery { padding: 26px 0 6px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-hero { grid-column: span 12; aspect-ratio: 16/8; }
@media (min-width: 900px) {
  .gallery-item:nth-child(2) { grid-column: span 6; aspect-ratio: 16/10; }
  .gallery-item:nth-child(3) { grid-column: span 6; aspect-ratio: 16/10; }
  .gallery-item:nth-child(4) { grid-column: span 5; aspect-ratio: 4/3; }
  .gallery-item:nth-child(5) { grid-column: span 7; aspect-ratio: 16/9; }
}

/* ── Trustbar ──────────────────────────────────── */
.trustbar {
  margin-top: 16px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.trustitem {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(180, 255, 57, .08);
  border: 1px solid rgba(180, 255, 57, .15);
  font-weight: 700; font-size: 12px;
  color: var(--accent);
}
.section:not(.dark):not(.oxford):not(.accent) .trustitem {
  background: rgba(45, 68, 60, .06);
  border-color: rgba(45, 68, 60, .12);
  color: var(--ink);
}

/* ── Badges & Tags ─────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 700; font-size: 12px;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  font-weight: 800; font-size: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(180, 255, 57, .2);
  color: var(--ink);
  text-decoration: none;
}
.section.oxford .tag,
.section.dark .tag {
  background: rgba(180, 255, 57, .12);
  border-color: rgba(180, 255, 57, .25);
  color: var(--accent);
}

/* ── Studio Detail Pages ───────────────────────── */
.studio-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--primary);
}
.hero-photo { aspect-ratio: 16/10; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tile {
  aspect-ratio: 16/11;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--primary);
}
.tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.tile:hover img { transform: scale(1.04); }
.studio-meta h1 {
  font-family: var(--font-brand);
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.02em;
}
.big247 {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -1.6px;
  color: var(--accent);
}
.subline { font-weight: 800; font-size: 18px; margin-top: 6px; }
.addr { margin-top: 12px; color: var(--muted); font-weight: 700; line-height: 1.35; }
.meta-row { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.meta-actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.membership-card {
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.membership-card .membership-price {
  font-weight: 800;
  font-size: 18px;
}
.membership-card .membership-price .price-accent {
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 22px;
}
.benefits {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  padding: 16px;
  background: rgba(180, 255, 57, .04);
  border: 1px solid rgba(180, 255, 57, .1);
}
.benefits-title { font-weight: 800; margin-bottom: 10px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.benefit {
  grid-column: span 4;
  border-radius: var(--radius-sm);
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
}
.benefit strong { font-size: 14px; }
.benefit-desc { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ── Pricing Table (T11) ──────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.pricing-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pricing-tier {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 42px;
  color: var(--ink);
  line-height: 1;
}
.pricing-amount small {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.pricing-period {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(180, 255, 57, .15);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
}

/* ── Contact Form (T7) ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--ring);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-honeypot { position: absolute; left: -9999px; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-message.success {
  background: rgba(180, 255, 57, .1);
  border: 1px solid rgba(180, 255, 57, .3);
  color: #3a7a0a;
}
.form-message.error {
  background: rgba(255, 57, 57, .08);
  border: 1px solid rgba(255, 57, 57, .2);
  color: #b91c1c;
}
.contact-info-card {
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 28px;
}
.contact-info-card h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--accent-glow);
  color: var(--oxford);
  flex-shrink: 0;
}
.contact-info-label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 14px;
  color: var(--muted);
}
.contact-info-value a {
  color: var(--oxford);
  text-decoration: none;
  font-weight: 600;
}
.contact-info-value a:hover { text-decoration: underline; }

/* Google Maps placeholder (behind cookie consent) */
.map-placeholder {
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}
.map-placeholder button {
  margin-top: 12px;
  cursor: pointer;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* ── Cookie Consent Banner (T5) ────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px;
  transform: translateY(100%);
  transition: transform .4s ease;
  color: #fff;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
}
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  max-width: 60ch;
  line-height: 1.6;
}
.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── WhatsApp Floating Button (T6) ─────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: fab-entrance .6s ease .5s both;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .45);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
@keyframes fab-entrance {
  from { opacity: 0; transform: scale(.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Mobile Bottom Navigation (T4) ─────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: var(--bottom-bar-h);
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  transition: color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item svg { width: 22px; height: 22px; }
.bottom-nav-item.active {
  color: var(--accent);
}
.bottom-nav-item:active {
  background: rgba(255, 255, 255, .06);
  transform: scale(.95);
}

/* ── Footer (T13) ──────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, .90);
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 52px 0 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand-name {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-slogan {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
.footer-trademark {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 4px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-top: 16px;
}
.footer-heading {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .6);
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.site-footer a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 0;
  transition: color .2s;
}
.site-footer a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  transition: background .2s, color .2s, border-color .2s;
  padding: 0;
}
.footer-social a:hover {
  background: var(--accent-glow);
  color: var(--accent);
  border-color: rgba(180, 255, 57, .25);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ── Stepper (legacy) ──────────────────────────── */
.stepper {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.step {
  grid-column: span 4;
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(180, 255, 57, .04);
  border: 1px solid rgba(180, 255, 57, .1);
  box-shadow: var(--shadow-soft);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  background: var(--accent);
  color: var(--primary);
  flex: 0 0 auto;
}
.step-text strong { font-weight: 800; }
.step-text span { color: var(--muted); font-weight: 600; font-size: 13px; }

/* ── Scroll Animations (T15) ───────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* Hero text entrance stagger */
.hero-enter { opacity: 0; transform: translateY(30px); }
.hero-loaded .hero-enter {
  animation: hero-slide-up .7s ease forwards;
}
.hero-loaded .hero-enter:nth-child(1) { animation-delay: .1s; }
.hero-loaded .hero-enter:nth-child(2) { animation-delay: .25s; }
.hero-loaded .hero-enter:nth-child(3) { animation-delay: .4s; }
.hero-loaded .hero-enter:nth-child(4) { animation-delay: .55s; }
.hero-loaded .hero-enter:nth-child(5) { animation-delay: .65s; }
@keyframes hero-slide-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Impressum & Datenschutz ───────────────────── */
.legal-content h2 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  margin: 0 0 24px;
}
.legal-content h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 20px;
  margin: 32px 0 12px;
}
.legal-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 72ch;
}
.legal-content ul {
  color: var(--muted);
  padding-left: 20px;
  margin: 0 0 16px;
  line-height: 1.7;
}
.legal-content a {
  color: var(--oxford);
  text-decoration: underline;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 980px) {
  .nav { display: none; }
  .studio-grid { grid-template-columns: 1fr; }
  .step { grid-column: span 12; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 80px 0 64px; }
  .hero::after { width: 300px; height: 300px; right: -10%; opacity: .04; }
  .card { grid-column: span 12; }
  .benefit { grid-column: span 12; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bottom-nav { display: block; }
  .whatsapp-fab { display: none; }
  body { padding-bottom: calc(var(--bottom-bar-h) + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner { bottom: calc(var(--bottom-bar-h) + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .header-top { height: 64px; }
  .brand img { height: 42px; }
  .brand-text { font-size: 16px; }
  .brand-slogan { display: none; }
  .iconbtn { width: 40px; height: 40px; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-inner { padding: 64px 0 52px; }
  .section { padding: 60px 0; }
  .cards { gap: 12px; }
  .card { padding: 20px; }
  .studio-grid { gap: 18px; }
  .tile-grid { grid-template-columns: 1fr; gap: 10px; }
  .tile { aspect-ratio: 16/10; }
  .big247 { font-size: 54px; }
  .meta-actions { flex-direction: column; align-items: stretch; }
  .membership-card { padding: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 0 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 420px) {
  .big247 { font-size: 48px; }
}

/* ── Print ─────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .bottom-nav, .whatsapp-fab, .cookie-banner { display: none; }
  body { padding-bottom: 0; }
}

/* Mockup Theme */
/* === THEME TOKENS (Farben/Typo) ===
   - Oxfordgrün: --oxford (#2d443c)
   - Hintergrund: --bg / --bg2
   - Schriftarten: --font-brand (Cinzel) / --font-body
=== /THEME TOKENS === */
:root{
  --bg2:#f4f6f5;
  --surfaceGlass: rgba(255,255,255,.78);
  --ink2:#0a0b0d;
}
body{
  background: linear-gradient(180deg, rgba(45,68,60,.06) 0%, rgba(45,68,60,0) 45%), var(--bg);
}

/* Homepage mockup hero */
.hero--home{
  position:relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
/* HERO BACKGROUND / Opacity steuert wie stark das Bild wirkt */

.hero--home .hero-media{
  opacity:.55;
  filter: saturate(1.05) contrast(1.06) blur(0px);
}
.hero--home .hero-overlay{
  background: radial-gradient(900px 520px at 18% 25%, rgba(255,255,255,.14), rgba(255,255,255,0)),
              linear-gradient(135deg, #0f1f1b 0%, #2d443c 52%, #3a5a50 100%);
}
.hero--home .hero-inner{
  padding: 96px 0 78px;
  grid-template-columns: 1.1fr .9fr;
}
.hero--home .hero-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  padding: 18px;
}
.hero--home .hero-card strong{font-weight:950}
.hero--home .hero-card .small{color:rgba(255,255,255,.84)}
@media (max-width:900px){
  .hero--home .hero-inner{grid-template-columns:1fr;padding:70px 0 54px;}
}

/* Big section titles */
.section .kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:900;text-transform:uppercase;letter-spacing:.16em;
  font-size:12px;opacity:.88;
  padding:10px 12px;border-radius:999px;
  background: rgba(45,68,60,.06);
  border:1px solid rgba(45,68,60,.14);
}
.section.oxford .kicker{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}

/* Mockup "USP strip" */
.usp-strip{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12,1fr);
  gap:12px;
}
.usp{
  grid-column: span 4;
  border-radius: var(--radius);
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 28px rgba(2,6,23,.06);
  padding:16px;
}
.usp strong{font-weight:950}
.usp span{display:block;margin-top:6px;color:var(--muted);font-weight:700;font-size:13px}
@media (max-width:900px){.usp{grid-column:span 12}}

/* Mockup image gallery tiles */
.home-gallery{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.home-tile{
  grid-column: span 4;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(2,6,23,.10);
  background:#0b0b0d;
}
.home-tile--wide{grid-column: span 12; aspect-ratio: 16/9;}
.home-tile img{width:100%;height:100%;display:block;object-fit:cover}
@media (min-width:900px){.home-tile{aspect-ratio: 4/3;}}
@media (max-width:900px){.home-tile{grid-column: span 12; aspect-ratio: 16/10;}}

/* Softer footer */
.site-footer{
  background: linear-gradient(135deg, #0f1f1b 0%, #2d443c 55%, #3a5a50 100%);
}

/* Hero right image card */
.hero-photo-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 55px rgba(2,6,23,.18);
  aspect-ratio: 16/12;
  align-self: end;
}
.hero-photo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.05) saturate(1.03);
}
@media (max-width:900px){
  .hero-photo-card{aspect-ratio:16/9;}
}


/* People grid (Homepage) */
/* HOMEPAGE EINBLICKE GRID / Kacheln/Abstände/Spalten */

.people-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.people-tile{
  grid-column: span 4;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(2,6,23,.10);
  background:#0b0b0d;
}
/* WIDE TILE / Dieses Bild spannt über volle Breite */

.people-tile--wide{grid-column: span 12; aspect-ratio: 16/9;}
.people-tile img{width:100%;height:100%;display:block;object-fit:cover}
@media (min-width: 900px){
  .people-tile{aspect-ratio: 4/3;}
}
@media (max-width: 900px){
  .people-tile{grid-column: span 6; aspect-ratio: 1/1;}
  .people-tile--wide{grid-column: span 12; aspect-ratio: 16/10;}
}
@media (max-width: 520px){
  .people-tile{grid-column: span 12; aspect-ratio: 16/10;}
}

/* Single swan watermark (hero) */
/* SWAN WATERMARK / Schwan nur 1x – Position/Opacity hier */

@media (max-width: 900px){
  }

@media (max-width: 480px){
  }


/* Image grade overlay */
.hero-photo-card,
.people-tile{
  position:relative;
}
.hero-photo-card::after,
.people-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(45,68,60,.22) 0%, rgba(45,68,60,.06) 40%, rgba(0,0,0,0) 75%);
  mix-blend-mode: multiply;
  pointer-events:none;
}
.hero-photo-card img,
.people-tile img{
  filter: contrast(1.07) saturate(1.05);
}

/* Oxford tint for alt sections */
.section.alt{
  background: linear-gradient(180deg, rgba(45,68,60,.06) 0%, rgba(45,68,60,0) 60%), var(--bg2);
}

/* Hero readability vignette */
/* HERO VIGNETTE / Lesbarkeit: dunkelt links/oben ab */

.hero--home::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 520px at 18% 25%, rgba(0,0,0,.15), rgba(0,0,0,.55)),
              linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 48%, rgba(0,0,0,.12) 100%);
  pointer-events:none;
  z-index:1;
}
.hero--home .container{position:relative; z-index:2;}

/* === HERO STYLES ===
   - .hero--home .hero-media: Hintergrundbild-Intensität (opacity, filter)
   - .hero--home::before: Vignette für Lesbarkeit (Text über Bild)
   - .hero--home::after: Schwan-Wasserzeichen (einmalig)
   - .hero--home .hero-overlay: Farbliche Grundstimmung (Oxfordgrün/Dunkel)
=== /HERO STYLES === */

/* === HOMEPAGE IMAGE GRIDS ===
   - .people-grid / .people-tile: Einblicke-Kacheln unter dem Hero
   - Du kannst Anzahl/Größe über grid-column & aspect-ratio steuern
=== /HOMEPAGE IMAGE GRIDS === */

/* === BUTTONS ===
   - .btn.primary: Haupt-CTA (auffällig)
   - .btn.secondary: Zweite Aktion (zurückhaltender)
   - Farben kommen aus --accent / Oxfordgrün-Varianten
=== /BUTTONS === */

/* BREAKPOINTS:
   - 900px: Tablet/kleiner Desktop → Layout wird einspaltiger
   - 600px: Phone → Buttons/Trust werden full width
   - 520px: Small phone → Kacheln untereinander
*/

/* Hero sub brand line (under headline) */
.hero-subbrand{
  margin:14px 0 6px;
  font-weight:950;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(255,255,255,.92);
}
.hero-subline{
  margin:0 0 18px;
  color: rgba(255,255,255,.88);
  font-size:16px;
  max-width: 60ch;
}

/* Force Oxford green for 24/7 + price accents on Standortseiten */
.big247{color: var(--oxford) !important;}
.price-accent{color: var(--oxford) !important;}

/* Swan watermark (Hero) – right side, more present */
.hero--home::after{
  content:"";
  position:absolute;
  right:-110px;
  top:-40px;
  width:620px;
  height:620px;
  background-image:url('/assets/img/brand/logo.png');
  background-repeat:no-repeat;
  background-size:contain;
  opacity:.24;
  filter: saturate(0) contrast(1.08);
  transform: rotate(-8deg);
  pointer-events:none;
  z-index:0;
}
@media (max-width: 900px){
  .hero--home::after{right:-200px; top:-70px; opacity:.18; width:540px; height:540px;}
}
@media (max-width: 480px){
  .hero--home::after{right:-240px; top:-90px; opacity:.16; width:500px; height:500px;}
}
