/* ==========================================================================
   TINY-TUNES MUSIK-AG · Design System
   Farbpalette und Fonts folgen dem bestehenden Markenauftritt.
   ========================================================================== */

:root {
  /* Marke */
  --tt-coral:      #FF6B6B;
  --tt-coral2:     #E85555;
  --tt-sun:        #FFD166;
  --tt-teal:       #06D6A0;
  --tt-teal-dark:  #04A87D;
  --tt-mint:       #E8FBF5;
  --tt-lavender:   #8E7CFF;
  --tt-peach:      #FFB38A;
  --tt-lime:       #B8E86F;
  --tt-sky:        #7CCBFF;
  --tt-ocean:      #2F80ED;
  --tt-deep-blue:  #2456A6;

  /* Flächen */
  --tt-bg:         #FCF5ED;
  --tt-soft:       #FFF8F2;
  --tt-softer:     #FFFAF6;
  --tt-white:      #FFFFFF;

  /* Text */
  --tt-navy:       #1A1A2E;
  --tt-ink:        #3D3D50;
  --tt-muted:      #8A8A9E;

  /* Struktur */
  --tt-border:     rgba(26,26,46,0.09);
  --tt-radius-sm:  10px;
  --tt-radius:     18px;
  --tt-radius-lg:  26px;
  --tt-shadow:     0 10px 30px rgba(26,26,46,0.07);
  --tt-shadow-lg:  0 20px 50px rgba(26,26,46,0.12);
  --tt-max:        1160px;

  --font-display: 'RocknRoll One', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--font-body);
  background: var(--tt-bg);
  color: var(--tt-ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--tt-navy); color: #fff;
  padding: 0.8rem 1.2rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--tt-ocean);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--tt-navy);
  line-height: 1.25;
  font-weight: 400;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { color: var(--tt-ink); }
.lede {
  font-size: 1.15rem;
  color: var(--tt-muted);
  max-width: 60ch;
}
strong { color: var(--tt-navy); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tt-coral);
  margin-bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--tt-coral);
  display: inline-block;
}

/* ── Layout helpers ── */
.wrap {
  max-width: var(--tt-max);
  margin: 0 auto;
  padding: 0 1.6rem;
}
.section { padding: 5rem 0; }
.section--soft { background: var(--tt-soft); }
.section--navy { background: var(--tt-navy); color: rgba(255,255,255,0.85); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--tt-sun); }
.section--navy .eyebrow::before { background: var(--tt-sun); }
.section-head { max-width: 700px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3.2rem 0; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.96rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; max-width: 100%; }
}
.btn--primary { background: var(--tt-coral); color: #fff; box-shadow: 0 10px 24px rgba(255,107,107,0.32); }
.btn--primary:hover { background: var(--tt-coral2); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: rgba(26,26,46,0.18); color: var(--tt-navy); }
.btn--ghost:hover { border-color: var(--tt-navy); transform: translateY(-2px); }
.btn--on-dark { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--on-dark:hover { border-color: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   HEADER · Sticky, Frosted-Glass, Rainbow-Scroll-Bar, Dropdown
   (angelehnt an das bisherige Tiny-Tunes-Header-Design)
   ══════════════════════════════════════════════════════════ */
:root {
  --nav-h: 76px;
  --nav-h-sm: 64px;
}

.tt-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: height 0.3s ease;
}
.tt-header-inner {
  width: 100%; height: 100%;
  background: rgba(252,245,237,0.75);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tt-header.scrolled .tt-header-inner {
  background: rgba(252,245,237,0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  border-color: var(--tt-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.tt-header.scrolled { height: var(--nav-h-sm); }

.tt-header-content {
  max-width: var(--tt-max);
  width: 100%; height: 100%;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

/* Rainbow-Scroll-Bar — Original aus header.html: Breite folgt dem Scroll-
   Fortschritt der Seite (0–100%), Farbverlauf Coral → Sun → Teal, 3px Höhe.
   Der Verlauf wird auf 100vw "eingefroren" statt auf die aktuelle
   Balkenbreite berechnet — sonst ist bei geringem Scrollfortschritt nur
   der erste Farbton sichtbar. */
.tt-scroll-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--tt-coral), var(--tt-sun), var(--tt-teal));
  background-size: 100vw 100%;
  background-position: left center;
  border-radius: 0 3px 3px 0;
  transition: width 0.1s linear;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 1px 6px rgba(255,107,107,0.4);
}

/* Logo */
.tt-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tt-logo-img { max-width: 150px; height: 40px; width: auto; object-fit: contain; display: block; }
.tt-logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.tt-logo-name { font-family: var(--font-display); font-size: 1.12rem; color: var(--tt-navy); transition: color 0.2s; }
.tt-logo:hover .tt-logo-name { color: var(--tt-coral); }
.tt-logo-tagline { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tt-muted); }

/* Desktop Nav */
.tt-nav { display: flex; align-items: center; gap: 0.2rem; }
.tt-nav-link {
  position: relative;
  font-weight: 800; font-size: 0.87rem; color: var(--tt-ink);
  padding: 0.55rem 0.8rem; border-radius: 50px;
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.22s;
}
.tt-nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px; background: var(--tt-coral); border-radius: 2px;
  transition: width 0.28s cubic-bezier(0.34,1.2,0.64,1), left 0.28s cubic-bezier(0.34,1.2,0.64,1);
}
.tt-nav-link:hover::after, .tt-nav-link.active::after { width: calc(100% - 1.6rem); left: 0.8rem; }
.tt-nav-link:hover, .tt-nav-link.active { color: var(--tt-coral); }
.tt-nav-link .caret { font-size: 0.65rem; transition: transform 0.2s ease; }
.tt-nav-dropdown.menu-open .tt-nav-link .caret,
.tt-nav-dropdown:hover .tt-nav-link .caret { transform: rotate(180deg); }

.tt-nav-dropdown { position: relative; }
.tt-nav-dropdown-menu {
  /* Bündig unter dem Button (top:100%, kein Lücken-Gap) — der optische Abstand
     entsteht durch padding-top INNERHALB dieses Elements, damit die Maus beim
     Runterfahren nie den hoverbaren Bereich verlässt (kein "Hover-Loch" mehr). */
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 12px;
  min-width: 210px;
  display: none; flex-direction: column;
  z-index: 50;
  background: transparent; border: none; box-shadow: none;
}
.tt-nav-dropdown:hover .tt-nav-dropdown-menu,
.tt-nav-dropdown.menu-open .tt-nav-dropdown-menu { display: flex; }
.tt-nav-dropdown-menu-inner {
  background: var(--tt-white); border: 1.5px solid var(--tt-border);
  border-radius: var(--tt-radius); box-shadow: var(--tt-shadow-lg);
  padding: 0.6rem; display: flex; flex-direction: column; gap: 0.15rem;
}
.tt-nav-dropdown-link {
  display: block; padding: 0.65rem 0.9rem; border-radius: 12px;
  font-weight: 700; font-size: 0.9rem; color: var(--tt-ink);
  transition: background 0.18s, color 0.18s;
}
.tt-nav-dropdown-link:hover, .tt-nav-dropdown-link.active { background: var(--tt-soft); color: var(--tt-coral); }

/* CTA button mit Shimmer */
.tt-nav-cta {
  background: var(--tt-coral); color: #fff;
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-weight: 800; font-size: 0.87rem;
  box-shadow: 0 4px 16px rgba(255,107,107,0.32);
  margin-left: 0.4rem; position: relative; overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, background 0.2s ease;
}
.tt-nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.45s ease;
}
.tt-nav-cta:hover::before { left: 160%; }
.tt-nav-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 26px rgba(255,107,107,0.4); background: var(--tt-coral2); }

/* Burger */
.tt-burger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid var(--tt-border); background: var(--tt-white);
  cursor: pointer; padding: 0 12px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color 0.2s;
}
.tt-burger:hover { border-color: var(--tt-coral); }
.tt-burger span { width: 100%; height: 2px; background: var(--tt-navy); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
.tt-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.tt-burger.open span:nth-child(2) { opacity: 0; }
.tt-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
.tt-drawer {
  position: fixed; top: 0; right: 0; width: min(340px, 88vw); height: 100vh;
  background: var(--tt-bg); z-index: 9998;
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -12px 0 60px rgba(0,0,0,0.14);
}
.tt-drawer.open { transform: translateX(0); }
.tt-drawer-strip { height: 5px; background: linear-gradient(90deg, var(--tt-coral), var(--tt-sun), var(--tt-teal)); flex-shrink: 0; }
.tt-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.5rem 1rem; border-bottom: 1px solid var(--tt-border); }
.tt-drawer-logo { font-family: var(--font-display); font-size: 1.05rem; color: var(--tt-navy); display: flex; align-items: center; gap: 8px; }
.tt-drawer-close {
  width: 36px; height: 36px; border-radius: 10px; border: 1.5px solid var(--tt-border);
  background: transparent; display: grid; place-items: center; cursor: pointer;
  font-size: 1.05rem; color: var(--tt-ink); transition: border-color 0.2s, color 0.2s;
}
.tt-drawer-close:hover { border-color: var(--tt-coral); color: var(--tt-coral); }

.tt-drawer-nav { flex: 0 0 auto; display: flex; flex-direction: column; padding: 1rem 1.1rem 0.5rem; gap: 0.25rem; overflow-y: auto; }
.tt-drawer-link {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1rem; border-radius: 14px;
  font-weight: 800; font-size: 0.97rem; color: var(--tt-ink);
  border: 1.5px solid transparent; background: none; width: 100%; text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tt-drawer-link:hover, .tt-drawer-link.active { background: rgba(255,107,107,0.08); border-color: rgba(255,107,107,0.2); color: var(--tt-coral); }
.tt-drawer-link-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--tt-white); border: 1px solid var(--tt-border); display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.tt-drawer-link .caret { margin-left: auto; font-size: 0.7rem; transition: transform 0.2s ease; }
.tt-drawer-accordion.open .tt-drawer-link .caret { transform: rotate(180deg); }

.tt-drawer-submenu {
  display: none; flex-direction: column; gap: 0.15rem;
  padding: 0.2rem 0 0.4rem 3.1rem;
}
.tt-drawer-accordion.open .tt-drawer-submenu { display: flex; }
.tt-drawer-sublink { padding: 0.6rem 0.8rem; border-radius: 10px; font-weight: 700; font-size: 0.9rem; color: var(--tt-ink); }
.tt-drawer-sublink:hover, .tt-drawer-sublink.active { background: rgba(255,107,107,0.08); color: var(--tt-coral); }

.tt-drawer-cta { padding: 1rem 1.2rem 1.6rem; flex-shrink: 0; margin-top: auto; }
.tt-drawer-cta-btn {
  display: block; width: 100%; padding: 1rem; text-align: center;
  background: var(--tt-coral); color: #fff; border-radius: 50px;
  font-weight: 800; font-size: 0.97rem;
  box-shadow: 0 4px 18px rgba(255,107,107,0.3);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, background 0.2s;
}
.tt-drawer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,107,0.42); background: var(--tt-coral2); }

.tt-backdrop {
  position: fixed; inset: 0; background: rgba(26,26,46,0.35); backdrop-filter: blur(3px);
  z-index: 9997; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.tt-backdrop.open { opacity: 1; pointer-events: all; }

@media (max-width: 900px) {
  .tt-nav { display: none; }
  .tt-burger { display: flex; }
}
@media (max-width: 480px) {
  .tt-header-content { padding: 0 1.1rem; }
  .tt-logo-tagline { display: none; }
}

/* ── Hero ── */
.hero {
  padding: 4.2rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--tt-max);
  margin: 0 auto;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.22);
  color: var(--tt-coral2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--tt-coral); }
.hero__lede { font-size: 1.18rem; color: var(--tt-ink); max-width: 52ch; margin-bottom: 1.6rem; }
.hero__meta {
  display: flex; gap: 1.6rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 1.6rem;
  border-top: 1px solid var(--tt-border);
}
.hero__meta div { font-size: 0.86rem; color: var(--tt-muted); }
.hero__meta strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--tt-navy); font-weight: 400; }

.hero__art { position: relative; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 380px; margin: 0 auto; }
}

/* ── Waveform divider (signature element) ── */
.wave-divider {
  width: 100%; height: 40px;
  display: block;
}

/* ── Cards ── */
.card {
  background: var(--tt-white);
  border-radius: var(--tt-radius);
  border: 1px solid var(--tt-border);
  box-shadow: var(--tt-shadow);
  padding: 1.8rem;
}
.icon-card {
  display: flex; flex-direction: column; gap: 0.9rem;
}
.icon-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.icon-card h3 { margin-bottom: 0.1rem; }
.icon-card p { color: var(--tt-muted); font-size: 0.95rem; }

.bg-coral   { background: rgba(255,107,107,0.12); }
.bg-teal    { background: rgba(6,214,160,0.14); }
.bg-sun     { background: rgba(255,209,102,0.28); }
.bg-lavender{ background: rgba(142,124,255,0.14); }
.bg-sky     { background: rgba(124,203,255,0.2); }
.bg-peach   { background: rgba(255,179,138,0.22); }

/* ── Pill / tag list ── */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  background: var(--tt-white);
  border: 1px solid var(--tt-border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--tt-navy);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── Checklist ── */
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.7rem;
  color: var(--tt-ink);
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 0.35rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--tt-teal);
}
.checklist li::after {
  content: "";
  position: absolute; left: 5px; top: 0.62rem;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.checklist.cross li::before { background: var(--tt-muted); opacity: 0.4; }
.checklist.cross li::after { display: none; }
.checklist.cross li { padding-left: 1.9rem; text-decoration: line-through; color: var(--tt-muted); }

/* ── Numbered steps (real sequence) ── */
.steps { counter-reset: tt-step; display: grid; gap: 1.4rem; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.step__num {
  counter-increment: tt-step;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--tt-navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: grid; place-items: center;
}
.step__num::before { content: counter(tt-step, decimal-leading-zero); }
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--tt-muted); font-size: 0.95rem; }

/* ── Tables (course formats comparison) ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--tt-radius);
  border: 1px solid var(--tt-border);
  background: var(--tt-white);
  box-shadow: var(--tt-shadow);
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
thead th {
  text-align: left;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tt-muted);
  padding: 1rem 1.3rem;
  background: var(--tt-soft);
  border-bottom: 1px solid var(--tt-border);
}
tbody td {
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--tt-border);
  font-size: 0.94rem;
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody td:first-child { font-weight: 800; color: var(--tt-navy); white-space: nowrap; }

/* ── Format cards ── */
.format-card {
  background: var(--tt-white);
  border-radius: var(--tt-radius-lg);
  border: 1px solid var(--tt-border);
  box-shadow: var(--tt-shadow);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.format-card--highlight { border: 2px solid var(--tt-coral); }
.format-card__tag {
  position: absolute; top: -14px; left: 2rem;
  background: var(--tt-coral); color: #fff;
  font-size: 0.74rem; font-weight: 800;
  padding: 0.35rem 0.9rem; border-radius: 50px;
}
.format-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; font-size: 0.86rem; color: var(--tt-muted); }
.format-card__meta strong { color: var(--tt-ink); }
.format-card ul { display: grid; gap: 0.5rem; margin-top: 0.3rem; }
.format-card ul li { padding-left: 1.4rem; position: relative; font-size: 0.92rem; }
.format-card ul li::before {
  content: "♪"; position: absolute; left: 0; top: 0; color: var(--tt-coral); font-weight: 800;
}

/* ── FAQ (details/summary) ── */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--tt-white);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-weight: 800;
  color: var(--tt-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--tt-coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.5rem 1.3rem; color: var(--tt-muted); }

/* ── Quote / testimonial ── */
.quote-card {
  background: var(--tt-navy);
  color: #fff;
  border-radius: var(--tt-radius-lg);
  padding: 2.2rem;
}
.quote-card p.quote-text { font-size: 1.15rem; color: #fff; margin-bottom: 1.2rem; }
.quote-card .quote-source { color: var(--tt-sun); font-weight: 800; font-size: 0.9rem; }

/* ── Person / bio ── */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }

/* ── Forms ── */
.form-grid { display: grid; gap: 1.2rem; }
.form-row { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-weight: 700; font-size: 0.9rem; color: var(--tt-navy); margin-bottom: 0.4rem; }
.field-hint { font-size: 0.8rem; color: var(--tt-muted); margin-top: 0.3rem; }
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.75rem 1rem;
  border-radius: var(--tt-radius-sm);
  border: 1.5px solid var(--tt-border);
  background: var(--tt-white);
  color: var(--tt-ink);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--tt-coral);
  outline: none;
}
textarea { resize: vertical; min-height: 130px; }
fieldset { border: none; padding: 0; margin: 0; }
legend { font-family: var(--font-display); font-size: 1.1rem; color: var(--tt-navy); margin-bottom: 0.6rem; padding: 0; }

/* ── CTA band (warm & freundlich statt dunkel) ── */
.cta-band {
  background: linear-gradient(120deg, var(--tt-coral) 0%, var(--tt-coral2) 100%);
  color: #fff; padding: 3.6rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.12); pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -80px; left: 8%;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,209,102,0.18); pointer-events: none;
}
.cta-band__inner {
  max-width: var(--tt-max); margin: 0 auto; padding: 0 1.6rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 48ch; }
.cta-band .eyebrow { color: #fff; }
.cta-band .eyebrow::before { background: #fff; }
.cta-band .btn--primary { background: #fff; color: var(--tt-coral); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.cta-band .btn--primary:hover { background: var(--tt-navy); color: #fff; }

/* ══════════════════════════════════════════════════════════
   FOOTER · Premium-Karten-Design nach Vorlage
   ══════════════════════════════════════════════════════════ */
.tt-footer-premium {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255,209,102,.18) 0%, transparent 34%),
    radial-gradient(circle at bottom right, rgba(6,214,160,.10) 0%, transparent 30%),
    linear-gradient(180deg, var(--tt-soft) 0%, #FFFFFF 100%);
  border-top: 1px solid var(--tt-border);
  overflow: hidden;
}
.tt-footer-premium-inner { max-width: var(--tt-max); margin: 0 auto; padding: 3.2rem 6% 1.1rem; position: relative; z-index: 2; }
.tt-footer-premium-top { display: grid; grid-template-columns: 1.18fr .92fr; gap: 1.2rem; align-items: start; }

/* Brand-Box (links) */
.tt-footer-premium-brand {
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
  border-radius: 26px;
  padding: 1.45rem 1.45rem 1.05rem;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tt-footer-premium-brand:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255,107,107,.10); border-color: rgba(255,107,107,.14); }
.tt-footer-premium-brand::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--tt-coral) 0%, var(--tt-sun) 52%, var(--tt-teal) 100%);
}

.tt-footer-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,107,107,.10); border: 1px solid rgba(255,107,107,.18);
  color: var(--tt-coral); border-radius: 999px; padding: .32rem .75rem;
  font: 800 .7rem var(--font-body); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .8rem;
}

.tt-footer-logo-row { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.tt-footer-logo-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--tt-coral) 0%, #ff8c73 100%);
  box-shadow: 0 10px 22px rgba(255,107,107,.25);
  overflow: hidden; flex-shrink: 0;
}
.tt-footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tt-footer-logo-text strong { display: block; font-family: var(--font-display); font-size: 1.16rem; color: var(--tt-navy); line-height: 1.2; }
.tt-footer-logo-text span { display: block; font: 700 .82rem var(--font-body); color: var(--tt-muted); line-height: 1.4; }

.tt-footer-brand-copy { font: .9rem/1.65 var(--font-body); color: var(--tt-ink); margin-bottom: .9rem; }

.tt-footer-social-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: .55rem; margin-bottom: .9rem; }
.tt-footer-proof-item {
  background: rgba(252,245,237,.82); border: 1px solid rgba(0,0,0,.05); border-radius: 16px;
  padding: .7rem .75rem; transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.tt-footer-proof-item:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(255,107,107,.08); background: #fff; }
.tt-footer-proof-number { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--tt-coral); line-height: 1.2; }
.tt-footer-proof-label { display: block; font: 700 .74rem var(--font-body); color: var(--tt-muted); line-height: 1.35; }

/* Rechte Spalte */
.tt-footer-premium-side { display: grid; gap: 1rem; }
.tt-footer-card {
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.06); box-shadow: 0 12px 28px rgba(0,0,0,.05);
  border-radius: 22px; padding: 1rem 1rem .8rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tt-footer-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(255,107,107,.09); border-color: rgba(255,107,107,.12); }
.tt-footer-card-title { font: .92rem var(--font-display); color: var(--tt-navy); margin-bottom: .55rem; line-height: 1.3; }

.tt-footer-link-list { display: flex; flex-direction: column; gap: .45rem; }
.tt-footer-link-list a {
  display: flex; align-items: center; justify-content: space-between; gap: .7rem;
  text-decoration: none; color: var(--tt-ink); font: 700 .89rem var(--font-body);
  padding: .5rem .65rem; border-radius: 12px;
  background: rgba(252,245,237,.72); border: 1px solid rgba(0,0,0,.04);
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}
.tt-footer-link-list a:hover { transform: translateX(4px); color: var(--tt-coral); background: #fff; border-color: rgba(255,107,107,.14); }

.tt-footer-contact-list { display: flex; flex-direction: column; gap: .7rem; }
.tt-footer-contact-item { display: flex; align-items: center; gap: .75rem; padding: .55rem .2rem; transition: background .2s ease; }
.tt-footer-contact-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,107,107,.10); color: var(--tt-coral); line-height: 1;
  flex-shrink: 0; transition: transform .22s ease, background .22s ease;
}
.phone-icon { font-size: 1.05rem; }
.email-icon { font-size: 1.2rem; transform: translateY(-1px); }
.email-icon .emoji { font-size: 1.6rem; display: inline-block; transform: translateY(-3px); }
.tt-footer-contact-content { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.tt-footer-contact-label { font-family: var(--font-body); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--tt-muted); margin-bottom: .1rem; line-height: 1.2; transition: color .2s ease; }
.tt-footer-contact-value { font-family: var(--font-body); font-size: .92rem; font-weight: 700; line-height: 1.35; color: var(--tt-ink); }
.tt-footer-contact-value a { color: var(--tt-ink); text-decoration: none; transition: color .2s ease; }
.tt-footer-contact-value a:hover { color: var(--tt-coral); }
.tt-footer-contact-item:hover .tt-footer-contact-icon { background: rgba(255,107,107,.14); transform: scale(1.03); }
.tt-footer-contact-item:hover .tt-footer-contact-label { color: var(--tt-coral); }

/* Weitere Angebote (jetzt innerhalb der Kontakt-Karte, unter der E-Mail) */
.tt-footer-external {
  margin-top: 1rem; padding-top: .9rem;
  border-top: 1px dashed rgba(0,0,0,.08);
}
.tt-footer-external-label {
  display: block; color: var(--tt-muted); font-weight: 700; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem;
}
.tt-footer-external-links { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; font-size: .86rem; }
.tt-footer-external a {
  color: var(--tt-ink); text-decoration: none; font-weight: 800;
  padding: .1rem; border-bottom: 1px dotted transparent;
  transition: color .2s ease, border-color .2s ease;
}
.tt-footer-external a:hover { color: var(--tt-coral); border-color: rgba(255,107,107,.4); }
.tt-footer-external-sep { color: var(--tt-border); }

/* Bottom Bar */
.tt-footer-bottom-bar {
  margin-top: 1.15rem; padding-top: .9rem; border-top: 1px solid rgba(0,0,0,.06);
  display: flex; justify-content: center; align-items: center; gap: .65rem;
  white-space: nowrap; overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tt-footer-bottom-bar::-webkit-scrollbar { display: none; }
.tt-footer-bottom-left { font: .81rem var(--font-body); color: var(--tt-muted); white-space: nowrap; flex: 0 0 auto; }
.tt-footer-bottom-right { display: flex; flex-wrap: nowrap; justify-content: center; gap: .45rem; white-space: nowrap; flex: 0 0 auto; }

@media (max-width: 640px) {
  /* Auf schmalen Bildschirmen: umbrechen statt scrollen – dadurch bleiben
     Copyright-Text und Impressum/Datenschutz/Rechtliches immer sichtbar,
     ohne dass eine (auf iOS unsichtbare) Scrollmöglichkeit nötig ist. */
  .tt-footer-bottom-bar {
    flex-direction: column; overflow-x: visible; white-space: normal;
    gap: .8rem;
  }
  .tt-footer-bottom-left { white-space: normal; text-align: center; }
  .tt-footer-bottom-right { flex-wrap: wrap; white-space: normal; }
}
.tt-footer-bottom-right a {
  text-decoration: none; font: 800 .8rem var(--font-body); color: var(--tt-navy);
  background: #fff; border: 1px solid rgba(0,0,0,.06); padding: .42rem .72rem; border-radius: 999px;
  transition: transform .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap; flex: 0 0 auto;
}
.tt-footer-bottom-right a:hover { color: var(--tt-coral); border-color: rgba(255,107,107,.16); transform: translateY(-1px); }

.tt-footer-glow-divider {
  position: sticky; bottom: 0; width: 100%; height: 16px;
  background: linear-gradient(90deg,
    rgba(255,107,107,0) 0%, rgba(255,107,107,.20) 18%,
    rgba(255,209,102,.22) 50%, rgba(6,214,160,.18) 82%, rgba(6,214,160,0) 100%);
  filter: blur(8px); pointer-events: none;
}

@media (max-width: 1024px) {
  .tt-footer-premium-top { grid-template-columns: 1fr; }
  .tt-footer-social-proof { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tt-footer-premium-inner { padding: 2.4rem 4.5% 1rem; }
  .tt-footer-social-proof { grid-template-columns: 1fr; }
  .tt-footer-logo-row { align-items: flex-start; }
  .tt-footer-logo-text strong { font-size: 1.02rem; }
  .tt-footer-logo-text span { font-size: .78rem; }
  .tt-footer-brand-copy { font-size: .86rem; }
  .tt-footer-contact-item { gap: .65rem; }
  .tt-footer-contact-icon { width: 36px; height: 36px; min-width: 36px; }
  .phone-icon { font-size: 1rem; }
  .email-icon { font-size: 1.12rem; }
}

/* ── Misc utility ── */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.badge-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.stat {
  text-align: center;
}
.stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--tt-navy); }
.stat span { font-size: 0.85rem; color: var(--tt-muted); }

.note-box {
  background: var(--tt-mint);
  border: 1px solid rgba(6,214,160,0.25);
  border-radius: var(--tt-radius);
  padding: 1.3rem 1.5rem;
  font-size: 0.94rem;
}
.note-box strong { color: var(--tt-teal-dark); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.two-col > * { min-width: 0; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* ── Honeypot-Feld (Spam-Schutz): für Menschen unsichtbar, für Screenreader übersprungen ── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}


/* ══════════════════════════════════════════════════════════
   RECHTSSEITEN (Impressum / Datenschutz / AGB)
   Layout angelehnt an das bisherige Tiny-Tunes-Design
   ══════════════════════════════════════════════════════════ */

/* Tab-Pills zum Wechseln zwischen den Rechtsseiten */
.tt-legal-nav {
  display: inline-flex; flex-wrap: wrap; gap: 0.55rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--tt-border);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 2rem;
}
.tt-legal-tab {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.52rem 1.15rem; border-radius: 50px;
  border: 2px solid transparent; background: transparent;
  color: var(--tt-ink); font-size: 0.84rem; font-weight: 800;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tt-legal-tab:hover { border-color: rgba(255,107,107,0.35); color: var(--tt-coral); background: rgba(255,107,107,0.06); transform: translateY(-2px); }
.tt-legal-tab--active { border-color: var(--tt-coral); background: rgba(255,107,107,0.1); color: var(--tt-coral); box-shadow: 0 3px 12px rgba(255,107,107,0.18); }
@media (max-width: 480px) {
  .tt-legal-nav { flex-direction: column; border-radius: 18px; width: 100%; padding: 0.5rem; }
  .tt-legal-tab { justify-content: center; width: 100%; padding: 0.62rem 1rem; border-radius: 12px; }
  .tt-legal-tab:hover { transform: none; }
}

/* Seiten-Hintergrund-Glow */
.imp-page { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 0 6% 5rem; }
.imp-glow-1 { position: fixed; top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,209,102,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
.imp-glow-2 { position: fixed; bottom: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(6,214,160,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }

.imp-page-title { margin-bottom: 2.2rem; }
.imp-label { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tt-coral); margin-bottom: 0.55rem; }
.imp-h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 2.8rem); color: var(--tt-navy); line-height: 1.15; margin-bottom: 0.7rem; }
.imp-meta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 800; color: var(--tt-muted); background: var(--tt-white); border: 1.5px solid var(--tt-border); padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 0.8rem; }
.imp-intro { font-size: 0.97rem; color: var(--tt-muted); line-height: 1.75; max-width: 500px; }

.imp-sections { display: flex; flex-direction: column; gap: 1.4rem; }
.imp-section {
  background: var(--tt-white); border-radius: var(--tt-radius); border: 1.5px solid var(--tt-border);
  overflow: hidden; box-shadow: var(--tt-shadow);
  opacity: 0; transform: translateY(18px);
  animation: impFadeUp 0.5s ease forwards;
}
.imp-section:nth-child(1)  { animation-delay: 0.05s; }
.imp-section:nth-child(2)  { animation-delay: 0.10s; }
.imp-section:nth-child(3)  { animation-delay: 0.15s; }
.imp-section:nth-child(4)  { animation-delay: 0.20s; }
.imp-section:nth-child(5)  { animation-delay: 0.25s; }
.imp-section:nth-child(6)  { animation-delay: 0.30s; }
.imp-section:nth-child(7)  { animation-delay: 0.35s; }
.imp-section:nth-child(8)  { animation-delay: 0.40s; }
.imp-section:nth-child(9)  { animation-delay: 0.45s; }
.imp-section:nth-child(10) { animation-delay: 0.50s; }
.imp-section:nth-child(11) { animation-delay: 0.55s; }
.imp-section:nth-child(12) { animation-delay: 0.60s; }
@keyframes impFadeUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .imp-section { animation: none; opacity: 1; transform: none; }
}

.imp-section-header { display: flex; align-items: center; gap: 0.9rem; padding: 1.2rem 1.8rem; border-bottom: 1px solid var(--tt-border); background: var(--tt-soft); }
.imp-section-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--tt-white); border: 1px solid var(--tt-border); display: grid; place-items: center; font-size: 1.15rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); flex-shrink: 0; }
.imp-section-num { font-family: var(--font-display); font-size: 0.7rem; color: var(--tt-coral); opacity: 0.7; }
.imp-section-title { font-family: var(--font-display); font-size: 0.98rem; color: var(--tt-navy); }
.imp-section-body { padding: 1.6rem 1.8rem; }
.imp-section-body p { font-size: 0.93rem; color: var(--tt-ink); line-height: 1.82; margin-bottom: 0.6rem; }
.imp-section-body p:last-child { margin-bottom: 0; }
.imp-section-body strong { color: var(--tt-navy); font-weight: 800; }

.imp-kv { display: flex; flex-direction: column; gap: 0.55rem; }
.imp-kv-row { display: flex; align-items: baseline; gap: 1rem; padding: 0.75rem 1rem; background: var(--tt-soft); border-radius: 12px; border: 1px solid var(--tt-border); }
.imp-kv-key { font-size: 0.75rem; font-weight: 800; color: var(--tt-muted); text-transform: uppercase; letter-spacing: 0.06em; width: 150px; flex-shrink: 0; }
.imp-kv-val { font-size: 0.91rem; color: var(--tt-navy); font-weight: 700; line-height: 1.55; }
.imp-kv-val a { color: var(--tt-coral); text-decoration: none; font-weight: 800; }
.imp-kv-val a:hover { text-decoration: underline; }

.imp-notice { background: rgba(255,107,107,0.06); border-left: 3px solid var(--tt-coral); border-radius: 0 12px 12px 0; padding: 1rem 1.3rem; font-size: 0.88rem; color: var(--tt-ink); line-height: 1.75; margin-top: 1rem; }
.imp-notice strong { color: var(--tt-navy); font-weight: 800; display: block; margin-bottom: 0.25rem; }
.imp-notice.teal { border-left-color: var(--tt-teal); background: rgba(6,214,160,0.06); }
.imp-notice.sun { border-left-color: var(--tt-sun); background: rgba(255,209,102,0.08); }

.imp-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin: 0.9rem 0; }
.imp-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.92rem; color: var(--tt-ink); line-height: 1.65; }
.imp-list li::before { content: '✓'; color: var(--tt-coral); font-weight: 800; font-size: 0.82rem; flex-shrink: 0; margin-top: 3px; }
.imp-list.rights li::before { content: '→'; }

.imp-chip { display: inline-block; background: rgba(255,107,107,0.1); color: var(--tt-coral); border: 1px solid rgba(255,107,107,0.22); padding: 0.22rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 800; }
.imp-chip.teal { background: rgba(6,214,160,0.1); color: #05b888; border-color: rgba(6,214,160,0.25); }

@media (max-width: 900px) {
  .imp-page { padding: 0 5% 4.5rem; }
  .imp-kv-key { width: 130px; }
}
@media (max-width: 599px) {
  .imp-page { padding: 0 4.5% 3.5rem; }
  .imp-page-title { margin-bottom: 1.6rem; }
  .imp-sections { gap: 1rem; }
  .imp-section-header { padding: 1rem 1.2rem; gap: 0.7rem; }
  .imp-section-icon { width: 36px; height: 36px; font-size: 1rem; border-radius: 9px; }
  .imp-section-title { font-size: 0.88rem; }
  .imp-section-body { padding: 1.2rem; }
  .imp-section-body p { font-size: 0.9rem; }
  .imp-kv-row { flex-direction: column; gap: 0.15rem; padding: 0.65rem 0.9rem; }
  .imp-kv-key { width: auto; font-size: 0.7rem; }
  .imp-kv-val { font-size: 0.88rem; }
  .imp-notice { padding: 0.85rem 1rem; font-size: 0.85rem; }
  .imp-list li { font-size: 0.88rem; }
}

/* ── Photo-Frame (echte Bilder mit sanftem Platzhalter-Fallback, bis Datei hochgeladen ist) ── */
.photo-frame {
  position: relative;
  border-radius: var(--tt-radius-lg);
  overflow: hidden;
  aspect-ratio: var(--ar, 3 / 2);
  background: linear-gradient(135deg, var(--tt-soft) 0%, var(--tt-mint) 100%);
  border: 1px solid var(--tt-border);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame.img-missing { border: 2px dashed rgba(26,26,46,0.18); }
.photo-frame.img-missing img { display: none; }
.photo-frame::after {
  content: attr(data-missing-label);
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center; text-align: center;
  padding: 1.6rem;
  font-size: 0.8rem; font-weight: 700; color: var(--tt-muted);
}
.photo-frame.img-missing::after { display: flex; }

/* Sicherheitsnetz gegen CSS-Grid-Overflow: verhindert, dass breiter Inhalt
   (lange Button-Texte, Formularfelder) die Spaltenbreite von 1fr aufbläht. */
.grid > *, .bio-grid > *, .hero__inner > *, .form-row > *,
.tt-footer-premium-top > *, .steps > * { min-width: 0; }
