/* ============================================
   THE SWEAT SET - V2 CLEAN DESIGN
   ============================================ */

/* --------------------------------------------
   1. VARIABLES & TOKENS
   -------------------------------------------- */
:root {
  /* Colors - Brand (Corporate Palette) */
  --color-primary: #F79238;       /* Brand Orange */
  --color-primary-dark: #D97B1F;  /* Deep Orange */
  --color-secondary: #24B8C2;     /* Brand Teal */

  /* Colors - Format: DanceFit */
  --color-dancefit: #76C1EB;      /* Light Blue */
  --color-dancefit-accent: #FFCE03; /* Yellow */

  /* Colors - Format: Pilates */
  --color-pilates: #CFA8CF;       /* Lavender */
  --color-pilates-accent: #E43825; /* Red */

  /* Colors - Neutrals */
  --color-bg: #FAFAFA;            /* Very Light Grey Background */
  --color-surface: #FFFFFF;       /* White Surface */
  --color-text-main: #414546;     /* Brand Dark Grey */
  --color-text-body: #4B5563;     /* Dark Grey */
  --color-text-light: #9CA3AF;    /* Light Grey */

  /* Colors - Dark Mode Sections */
  --color-dark-bg: #0F172A;       /* Deep Navy/Black */
  --color-dark-surface: rgba(255, 255, 255, 0.05);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #F79238 0%, #24B8C2 100%);
  --gradient-text: linear-gradient(135deg, #F79238 0%, #24B8C2 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

  /* Typography */
  --font-sans: 'Rubik', system-ui, -apple-system, sans-serif;
  --font-display: 'Rubik', sans-serif;

  /* Spacing */
  --container-width: 1280px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* UI Elements */
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-primary: 0 20px 25px -5px rgba(247, 146, 56, 0.3);
}

/* --------------------------------------------
   2. RESET & BASE
   -------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 110px; /* space for fixed header */
}

h1, h2, h3, h4, h5 {
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--color-text-main);
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

/* --------------------------------------------
   3. UTILITIES
   -------------------------------------------- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section--narrow { padding: var(--spacing-lg) 0; }

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--spacing-lg);
}

.section-intro p {
  color: var(--color-text-body);
}

.section-dark .section-intro p { color: #CBD5F5; }

.section-gradient {
  background: linear-gradient(135deg, rgba(247, 146, 56, 0.08), rgba(36, 184, 194, 0.08));
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-lg);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-primary);
}

/* --------------------------------------------
   4. COMPONENTS
   -------------------------------------------- */
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--color-text-main);
}

.header__logo-icon {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header__nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-body);
  text-transform: uppercase;
}

.header__nav-link:hover { color: var(--color-primary); }

@media (max-width: 640px) {
  .header__nav { display: none; }
  .btn {
    width: 100%;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 30px -5px rgba(247, 146, 56, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--color-text-main);
  border: 2px solid #E5E7EB;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Cards */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #F3F4F6;
  color: var(--color-text-body);
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}

/* --------------------------------------------
   5. SPECIFIC SECTIONS
   -------------------------------------------- */
/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
}

/* Gradient-Ellipsen oben & unten */
.hero::before {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 120%;
  height: 55%;
  background: radial-gradient(ellipse at 50% 80%, rgba(247,146,56,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 100%;
  height: 50%;
  background: radial-gradient(ellipse at 60% 30%, rgba(36,184,194,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Sections mit Bildmarke-Deko (wiederverwendbar) */
.section-deco {
  position: relative;
  overflow: hidden;
}
.section-deco > .container {
  position: relative;
  z-index: 10;
}

/* Bildmarke-Outlines als Hintergrund-Dekoration (Flyer-Stil) */
.hero-deco {
  position: absolute;
  background: url('assets/bildmarke-outline.svg') no-repeat center / contain;
  pointer-events: none;
}
.hero-deco--1 { left: -25%;  top: -15%;    width: 3200px; height: 3460px; opacity: 0.12; transform: rotate(10deg); }
.hero-deco--2 { right: -30%; bottom: -20%; width: 3000px; height: 3250px; opacity: 0.06; transform: rotate(-12deg) scaleX(-1); }
.hero-deco--3 { left: -20%;  bottom: -25%; width: 2200px; height: 2380px; opacity: 0.05; transform: rotate(22deg); }
.hero-deco--4 { left: 15%;   top: -30%;    width: 2400px; height: 2600px; opacity: 0.05; transform: rotate(-15deg) scaleX(-1); }

.hero-content {
  max-width: 1000px;
  z-index: 10;
  position: relative;
}

.hero-logo {
  max-width: 800px;
  width: 90%;
  height: auto;
  margin: 0 auto 2.5rem;
  display: block;
}

.hero-text {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Sound Wave Animation */
.sound-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 70px;
  margin: 1.5rem auto 2.5rem;
}

.sound-wave .bar {
  width: 6px;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: sound-wave 1s ease-in-out infinite;
  transform-origin: center;
}

.sound-wave .bar:nth-child(1) { height: 20px; animation-delay: 0.0s; }
.sound-wave .bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.sound-wave .bar:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.sound-wave .bar:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.sound-wave .bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes sound-wave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.7; }
  50% { transform: scaleY(1.8); opacity: 1; }
}

/* ============================================
   EVENT SECTION
   ============================================ */
.event-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-primary);
}

.event-card__badge {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 2px;
}

.event-card__content {
  padding: 2.5rem;
}

.event-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.event-card__value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.event-card__cta {
  text-align: center;
}

.event-card__ticket-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  .event-card__details {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .event-card__content {
    padding: 1.5rem;
  }
}

/* Event Banner (team.html) */
.event-banner {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.event-banner__text {
  font-size: 1rem;
  font-weight: 500;
}

.event-banner__link {
  color: white;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.5rem;
}

.event-banner__link:hover {
  opacity: 0.85;
}

/* Comparison Table */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.comparison-card.highlight {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-primary);
}

.comparison-card.highlight h3,
.comparison-card.highlight li {
  color: white;
}

.comparison-card.highlight li span {
  color: rgba(255,255,255,0.8);
}

.check-list {
  list-style: none;
  text-align: left;
  margin-top: 2rem;
}

.check-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #34D399;
  font-weight: 700;
}

.icon-list--dancefit li::before {
  color: var(--color-dancefit);
}

.icon-list--pilates li::before {
  color: var(--color-pilates-accent);
}

/* Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: relative;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #E5E7EB;
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 1rem;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0 0 8px var(--color-bg);
}

/* Dark Section (Programmes) */
.section-dark {
  background: var(--color-dark-bg);
  color: white;
}

.section-dark h2, .section-dark h3 {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-dark {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.card-dark h3 { color: white; }
.card-dark p { color: #9CA3AF; }

/* Zielgruppen Cards */
.zielgruppen-card,
.konzept-card {
  text-align: center;
}

.zielgruppen-icon,
.konzept-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

/* Format-specific Cards */
.format-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.format-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.format-header h3 {
  margin-bottom: 0.25rem;
}

.format-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.format-tagline {
  font-weight: 600;
  margin-bottom: 1rem;
}

.format-tagline--dancefit { color: var(--color-dancefit); }
.format-tagline--pilates { color: var(--color-pilates); }

/* Split-Background: Blau (DanceFit) links → Lila (FaszienPilates) rechts */
.section-formats .text-gradient {
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.section-formats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #76C1EB 0%, #76C1EB 42%, #CFA8CF 58%, #CFA8CF 100%);
}
.section-formats > .container {
  position: relative;
  z-index: 1;
}

/* Mobile: Gradient dreht auf vertikal (Cards stacken) */
@media (max-width: 768px) {
  .section-formats {
    background: linear-gradient(to bottom, #76C1EB 0%, #76C1EB 42%, #CFA8CF 58%, #CFA8CF 100%);
  }
}

/* Glass Cards */
.card--dancefit,
.card--pilates {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 3px solid;
  color: var(--color-text-body);
}
.card--dancefit,
.card--pilates {
  color: var(--color-text-body);
}
.card--dancefit h3,
.card--pilates h3 {
  color: var(--color-text-main);
  text-shadow: none;
}
.card--dancefit p,
.card--pilates p {
  color: var(--color-text-body);
}
.card--dancefit {
  border-top-color: var(--color-dancefit);
}
.card--pilates {
  border-top-color: var(--color-pilates);
}

.format-logo {
  display: block;
  max-width: 280px;
  height: auto;
  margin: 1.5rem 0 0.5rem;
}

.badge--dancefit {
  background: rgba(118, 193, 235, 0.15);
  color: var(--color-dancefit);
}

.badge--pilates {
  background: rgba(207, 168, 207, 0.15);
  color: var(--color-pilates);
}

.btn--dancefit {
  background: var(--color-dancefit-accent);
  color: var(--color-text-main);
  font-weight: 700;
  box-shadow: 0 10px 20px -5px rgba(255, 206, 3, 0.4);
}

.btn--dancefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(255, 206, 3, 0.55);
}

.btn--pilates {
  background: var(--color-pilates-accent);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 20px -5px rgba(228, 56, 37, 0.4);
}

.btn--pilates:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(228, 56, 37, 0.55);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: var(--spacing-lg);
}

.founder-card img,
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.founder-role {
  color: #34D399;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.founder-story {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

/* Founders Teaser (Landing Page) */
.founders-teaser {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.founders-teaser__images {
  display: flex;
  gap: 1rem;
}

.founders-teaser__images img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.founder-card__photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.founders-teaser__content h2 {
  margin-bottom: 0.5rem;
}

.founders-teaser__names {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.founders-teaser__content p {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .founders-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founders-teaser__images {
    justify-content: center;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card h3 { margin-bottom: 0.5rem; }
.team-role { color: var(--color-primary); font-weight: 600; margin-bottom: 0.5rem; }

.faq {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary span { color: var(--color-primary); }

.faq-item[open] summary { color: var(--color-primary); }

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: #E5E7EB;
}

/* Launch & Contact */
.card-launch {
  background: #FEF3E2;
  border: 2px solid var(--color-primary);
  text-align: center;
}

.launch-date {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 1rem;
}

.launch-copy {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-card .btn {
  width: 100%;
  margin-top: 1.5rem;
}

.footer {
  background: var(--color-dark-bg);
  color: #E5E7EB;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.footer__brand {
  margin-bottom: 1.5rem;
}

.footer__logo {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.footer__section-title {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: white;
}

.footer__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-primary);
}

.newsletter {
  display: flex;
  gap: 0.75rem;
}

.newsletter input {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-full);
  border: none;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; gap: 1rem; }
  .timeline { flex-direction: column; gap: 3rem; }
  .timeline::before { display: none; }
}

.media-placeholder {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(247, 146, 56, 0.10));
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
}

.section-dark .media-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}

.profile-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-media .media-placeholder,
.profile-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 640px) {
  .profile-media {
    grid-template-columns: 1fr;
  }
  .profile-media .media-placeholder,
  .profile-media img {
    height: 200px;
  }
}

.media-placeholder--circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
}

.founders-teaser__images .media-placeholder--circle {
  flex: 0 0 auto;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-input {
  padding: 0.875rem 1rem;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(247, 146, 56, 0.15);
}

.form-input::placeholder {
  color: var(--color-text-light);
}

select.form-input {
  cursor: pointer;
  background: white;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* Lead Text */
.lead-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Benefit Icons */
.benefit-icon {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

/* Hero Button - better readability */
.btn-hero {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(247, 146, 56, 0.4);
}

/* Header Button - better contrast */
.header__nav .btn-primary {
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Footer Social Link */
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: var(--color-primary);
}

.footer__social-link svg {
  flex-shrink: 0;
}

/* ============================================
   EVENT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text-main);
}

.modal__badge {
  display: block;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-primary);
  color: white;
  margin-bottom: 1.5rem;
}

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.75rem;
}

.modal__date {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.modal__location {
  font-size: 1.05rem;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
}

.modal__formats {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.modal__price {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.modal__bring {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.modal__cta {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
}

.modal__dismiss {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.modal__dismiss:hover {
  color: var(--color-text-body);
}

@media (max-width: 480px) {
  .modal {
    padding: 2rem 1.5rem;
    margin: 0.5rem;
  }
  .modal__title {
    font-size: 1.25rem;
  }
}
