/* =============================================================
   VIDEO TRIFFT SOCIAL MEDIA — Konzept "Studio Glow"
   Farben: Navy #1A1A2E · Gold #C9A84C · Weiß/Off-White
   ============================================================= */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:        #1A1A2E;
  --navy-mid:    #24243E;
  --navy-light:  #2E2E50;
  --gold:        #C9A84C;
  --gold-light:  #E8D08A;
  --gold-pale:   #F9F2DC;
  --white:       #FFFFFF;
  --off-white:   #F9F7F4;
  --gray-light:  #F0EDF8;
  --text-dark:   #0D0D1A;
  --text-mid:    #4A4860;
  --text-muted:  #8A8AAA;
  --radius:      12px;
  --radius-lg:   24px;
  --shadow:      0 4px 24px rgba(26,26,46,.10);
  --shadow-md:   0 8px 40px rgba(26,26,46,.16);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Sora', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p  { max-width: 68ch; }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  margin: 1rem auto 0;
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

section { padding: 5rem 0; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,.2);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  margin-top: .4rem;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: .8rem 0;
  margin-top: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: .6rem 1.4rem;
  font-size: .9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1.5rem;
  gap: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { text-align: center; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: auto;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag i { font-size: 1rem; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-content h1 span { color: var(--gold); }

.hero-promise {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: .8rem;
  max-width: 50ch;
}

.hero-free {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-light);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-free i { font-size: 1.1rem; }

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}

.hero-cta-note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  max-width: 42ch;
}

/* ── HERO PHOTOS ────────────────────────────────────────────── */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  position: relative;
}

.hero-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px solid rgba(201,168,76,.25);
  box-shadow: var(--shadow-md);
}
.hero-photo-card:first-child {
  margin-top: 2.5rem;
}
.hero-photo-card:last-child {
  margin-top: -2.5rem;
  align-self: end;
}

.hero-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Einheitliche Farb-Tonalität für beide Fotos */
  filter: brightness(0.97) contrast(1.05) saturate(0.82);
}

/* Nadines Foto: rein zoomen damit Gesicht gleich groß wie Dajanas */
.hero-photo-card:first-child img {
  object-position: center 12%;
  transform: scale(1.45);
  transform-origin: center 20%;
}
/* Dajanas Foto: leicht aufhellen da Hintergrund heller */
.hero-photo-card:last-child img {
  object-position: center 8%;
  filter: brightness(0.93) contrast(1.06) saturate(0.82);
}

.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}
.hero-photo-placeholder i { font-size: 2.5rem; color: var(--gold); opacity: .4; }

.photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,46,.9) 0%, transparent 100%);
  padding: 1.5rem 1rem .8rem;
  color: var(--white);
}
.photo-label strong { display: block; font-size: .95rem; font-weight: 700; }
.photo-label span   { font-size: .75rem; color: var(--gold-light); font-weight: 500; }

/* ── SECTION: WAS ERWARTET DICH ────────────────────────────── */
.features { background: var(--white); }

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

.feature-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid transparent;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-icon i {
  font-size: 1.8rem;
  color: var(--gold);
}

.feature-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.feature-card p  { color: var(--text-mid); font-size: .95rem; }

/* ── SECTION: FÜR WEN ───────────────────────────────────────── */
.fuer-wen { background: var(--gray-light); }

.fuer-wen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.check-item:hover { transform: translateX(4px); }

.check-item i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .05rem;
}
.check-item p { margin: 0; font-size: .95rem; color: var(--text-dark); }

.fuer-wen-visual {
  position: relative;
}
.fuer-wen-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.fuer-wen-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,.2) 0%, transparent 70%);
}
.fuer-wen-box blockquote {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}
.fuer-wen-box blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: -1.5rem; left: -0.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.fuer-wen-box .quote-author {
  color: var(--gold-light);
  font-size: .9rem;
  font-weight: 600;
}

/* ── SECTION: EXPERTINNEN ───────────────────────────────────── */
.expertinnen {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.expertinnen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.expertinnen .section-header h2,
.expertinnen .section-header .eyebrow { color: var(--white); }
.expertinnen .section-header p { color: rgba(255,255,255,.6); }

.expertinnen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.expertin-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.expertin-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.expertin-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.expertin-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.expertin-card:hover .expertin-photo img { transform: scale(1.04); }

.expertin-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertin-photo-placeholder i { font-size: 4rem; color: var(--gold); opacity: .3; }

.expertin-info {
  padding: 1.8rem;
}
.expertin-info .eyebrow { margin-bottom: .4rem; }
.expertin-info h3 { color: var(--white); margin-bottom: .6rem; font-size: 1.3rem; }
.expertin-info p  { color: rgba(255,255,255,.65); font-size: .95rem; }

.expertin-focus {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .7rem 1rem;
  background: rgba(201,168,76,.1);
  border-radius: 8px;
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 600;
}
.expertin-focus i { font-size: 1rem; }

/* ── SECTION: TERMINE ───────────────────────────────────────── */
.termine { background: var(--white); }

.termine-grid {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 780px;
  margin-inline: auto;
}

.termin-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: .75rem 1.4rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}
.termin-card:hover:not(.past) {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.termin-card.past {
  opacity: .45;
  background: var(--gray-light);
}
.termin-card.past .termin-date,
.termin-card.past .termin-time,
.termin-card.past .termin-weekday { text-decoration: line-through; }

.termin-date-block {
  text-align: center;
  min-width: 52px;
}
.termin-weekday {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.termin-day {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.termin-month {
  font-size: .72rem;
  color: var(--text-mid);
  font-weight: 500;
}

.termin-meta { min-width: 0; }
.termin-month-year {
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.termin-time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.termin-format {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .15rem;
}
.termin-format i { font-size: .85rem; }

.termin-badge {
  background: rgba(201,168,76,.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50px;
  padding: .3rem .85rem;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}
.termin-card.past .termin-badge {
  background: var(--gray-light);
  color: var(--text-muted);
  border-color: transparent;
}

.termin-badge-link {
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.termin-badge-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.05);
}

.termin-next-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  padding: .25rem .75rem;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-left: .5rem;
  vertical-align: middle;
}
.termin-next-badge i { font-size: .8rem; }

.termin-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.termin-note i { color: var(--gold); font-size: 1rem; }

/* ── SECTION: ANMELDUNG ─────────────────────────────────────── */
.anmeldung {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.anmeldung::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
}
.anmeldung .section-header h2 { color: var(--white); }
.anmeldung .section-header .eyebrow { color: var(--gold); }
.anmeldung .section-header p { color: rgba(255,255,255,.65); }

.form-wrapper {
  max-width: 580px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  position: relative;
}

.form-wrapper .form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

/* Brevo placeholder styles – werden überschrieben sobald echtes Formular eingebettet ist */
.brevo-placeholder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-field input,
.form-field select {
  padding: .75rem 1rem;
  border: 1.5px solid #E0DDF0;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}
.form-field input:focus,
.form-field select:focus { border-color: var(--gold); }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-consent a { color: var(--gold); text-decoration: underline; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.form-hint {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.form-hint i { color: var(--gold); }

.brevo-note {
  background: var(--gold-pale);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.brevo-note strong { color: var(--navy); }

/* ── FORMULAR: Erfolg / Fehler ──────────────────────────────── */
[hidden] { display: none !important; }

.form-success,
.form-error {
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  text-align: center;
  margin-bottom: 1.2rem;
}
.form-success {
  background: #f0faf4;
  border: 1px solid #a8d5b5;
}
.form-success h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin: .5rem 0 .4rem;
}
.form-success p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}
.form-error {
  background: #fff5f5;
  border: 1px solid #f5c6cb;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  text-align: left;
}
.form-error p {
  color: #c0392b;
  font-size: .9rem;
  margin: 0;
  line-height: 1.5;
}
#form-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.55);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.footer-brand span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: .8rem;
  width: 100%;
  text-align: center;
  margin-top: .5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── SECTION DIVIDER ────────────────────────────────────────── */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.wave-divider svg { display: block; width: 100%; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-page {
  padding: 8rem 0 5rem;
  min-height: 100vh;
}
.legal-page h1 { margin-bottom: 2rem; font-size: 2rem; }
.legal-page h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.legal-page p  { color: var(--text-mid); margin-bottom: .8rem; font-size: .95rem; }
.legal-page a  { color: var(--gold); }
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 2.5rem;
  transition: gap var(--transition);
}
.legal-page .back-link:hover { gap: .8rem; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photos     { grid-template-columns: 1fr 1fr; max-width: 440px; margin: 0 auto; }
  .fuer-wen-inner  { grid-template-columns: 1fr; }
  .expertinnen-grid{ grid-template-columns: 1fr; }
  .nav-links       { display: none; }
  .nav-cta         { display: none; }
  .hamburger       { display: flex; }
  .footer-inner    { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .hero   { padding: 6rem 0 3rem; }
  .hero-photos { grid-template-columns: 1fr 1fr; }
  .hero-photo-card:first-child  { margin-top: 1rem; }
  .hero-photo-card:last-child   { margin-top: -1rem; }
  .hero-cta-group  { flex-direction: column; }
  .form-row        { grid-template-columns: 1fr; }
  .termin-card     { grid-template-columns: auto 1fr; }
  .termin-card .termin-badge { display: none; }
  .footer-links    { flex-wrap: wrap; gap: 1rem; }
}
