/* ==========================================================================
   TAEBETTY.COM — DESIGN SYSTEM
   Design-Familie: taebetty.com · dirkhollstein.com · umoyasystem.com
   Version 1.0 · April 2026
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {

  /* --- Farben --- */
  --color-bg:              #FAF7F2; /* Hintergrund — identisch in allen drei Sites */
  --color-surface:         #F3EFE8; /* Helles Leinen — zweite Fläche, Karten, Sektions-BG */
  --color-text-primary:    #2E1B38; /* Tiefes Aubergine — Headlines, primärer Text */
  --color-text-body:       #2A2826; /* Warmes Anthrazit — Fließtext */
  --color-text-secondary:  #555555; /* Mittelgrau — Meta, Labels, Caption */
  --color-accent-gold:     #B08A3E; /* Bernstingold — Akzente, Focus, CTA-Hover */
  --color-accent-gold-dim: #C9A96A; /* Helleres Gold — Hover-States, Links */
  --color-border:          #E2DDD5; /* Subtile Trennlinie — Formulare, Divider */
  --color-border-focus:    var(--color-accent-gold); /* Focus-Farbe Formulare */

  /* AUBERGINE-REGEL: #2E1B38 NIE als Flächenfarbe.
     Nur für Text, schmale Akzente, Trennelemente. */

  /* GOLD-REGEL: Kein Glanz, kein Metallic.
     Gedämpftes Bernstein — Patina, nicht Schmuck. Sparsam einsetzen. */


  /* --- Typografie --- */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;


  /* --- Typografische Skala --- */
  --text-display: clamp(3rem, 6vw, 5rem);     /* Hero-Headline */
  --text-h1:      clamp(2.25rem, 4.5vw, 3.75rem);
  --text-h2:      clamp(1.75rem, 3.5vw, 2.75rem);
  --text-h3:      clamp(1.1rem, 2vw, 1.375rem);
  --text-body:    1.0625rem;                   /* 17px */
  --text-body-lg: 1.125rem;                    /* 18px */
  --text-small:   0.875rem;                    /* 14px */
  --text-label:   0.8125rem;                   /* 13px — Formular-Labels */


  /* --- Font Weights --- */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semi:    600;


  /* --- Zeilenabstände --- */
  --leading-display: 1.1;
  --leading-heading: 1.2;
  --leading-subhead: 1.3;
  --leading-h3:      1.4;
  --leading-body:    1.68;
  --leading-loose:   1.8;


  /* --- Abstände (Spacing Scale) --- */
  --space-1:   0.25rem;   /*  4px */
  --space-2:   0.5rem;    /*  8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */
  --space-32:  8rem;      /* 128px */


  /* --- Sektions-Abstände (wie estherperel.com: viel Luft) --- */
  --section-padding-y: clamp(var(--space-16), 8vw, var(--space-32));
  --section-padding-x: clamp(var(--space-6), 5vw, var(--space-16));


  /* --- Content-Breiten --- */
  --width-text:      620px;   /* Fließtext-Max-Width */
  --width-content:   780px;   /* Erweiterter Text-Block */
  --width-wide:      1080px;  /* Layout-Container */
  --width-full:      1280px;  /* Max-Width Site */


  /* --- Border Radius --- */
  /* Tae-Betty-Setting: minimal abgerundet (5px) — würdig, nicht weich. */
  --radius-sm:   5px;
  --radius-md:   5px;
  --radius-lg:   8px;
  --radius-pill: 999px;


  /* --- Schatten (sehr dezent — keine Box-Shadow-Ästhetik) --- */
  --shadow-sm:  0 1px 3px rgba(46, 27, 56, 0.06);
  --shadow-md:  0 4px 16px rgba(46, 27, 56, 0.08);
  --shadow-lg:  0 8px 32px rgba(46, 27, 56, 0.10);


  /* --- Motion --- */
  --ease-default:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

}


/* ==========================================================================
   2. RESET & BASIS
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  font-weight: var(--weight-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}


/* ==========================================================================
   3. TYPOGRAFIE
   ========================================================================== */

/* Google Fonts Import */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&family=Inter:wght@400;500;600&display=swap'); */


/* --- Display (Hero-Headline) --- */
.text-display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--weight-regular);
  line-height: var(--leading-display);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

/* --- Überschriften --- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-regular);
  line-height: var(--leading-heading);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-regular);
  line-height: var(--leading-subhead);
  color: var(--color-text-primary);
}

h3, .h3 {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: var(--weight-medium);
  line-height: var(--leading-h3);
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* --- Fließtext --- */
p {
  max-width: var(--width-text);
  line-height: var(--leading-body);
}

.lead {
  font-size: var(--text-body-lg);
  line-height: var(--leading-loose);
  color: var(--color-text-body);
  max-width: var(--width-text);
}

.small, small {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: var(--leading-h3);
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary); /* Aubergine — Eyebrows einheitlich (Kunden-Feedback) */
}

/* --- Zitat (Playfair Kursiv) --- */
blockquote, .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--weight-regular);
  line-height: var(--leading-subhead);
  color: var(--color-text-primary);
  max-width: var(--width-text);
}

blockquote::before {
  content: '\201C';
  color: var(--color-accent-gold);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.1em;
}

/* --- Inline-Links --- */
.text-link {
  color: var(--color-text-body);
  border-bottom: 1px solid var(--color-accent-gold);
  transition: color var(--duration-fast) var(--ease-default),
              border-color var(--duration-fast) var(--ease-default);
}

.text-link:hover {
  color: var(--color-accent-gold);
}

/* --- Divider --- */
.divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-accent-gold);
  margin: var(--space-8) 0;
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--width-full);
  margin: 0 auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.container--wide {
  max-width: var(--width-wide);
}

.container--text {
  max-width: var(--width-text);
}

/* --- Sektion --- */
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section--surface {
  background-color: var(--color-surface);
}

.section--dark {
  /* Bewusster Bruch der Aubergine-Regel: gezielt EIN dunkler Block
     als visueller Anker am Seitenende. Wie im Style Guide. */
  background-color: var(--color-text-primary);
  color: var(--color-bg);
}

.section--dark .label,
.section--dark .hero__eyebrow {
  color: var(--color-accent-gold);
}

.section--dark h1, .section--dark .h1,
.section--dark h2, .section--dark .h2,
.section--dark h3, .section--dark .h3,
.section--dark .cta-section__headline {
  color: var(--color-bg);
}

.section--dark p,
.section--dark .lead {
  color: rgba(250, 247, 242, 0.78);
}

.section--dark .text-link {
  color: var(--color-bg);
  border-bottom-color: var(--color-accent-gold);
}
.section--dark .text-link:hover {
  color: var(--color-accent-gold);
}

.section--dark .btn--ghost {
  color: var(--color-bg);
  border-color: var(--color-bg);
}
.section--dark .btn--ghost:hover {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  border-color: var(--color-bg);
}

.section--dark .text-secondary {
  color: rgba(250, 247, 242, 0.6);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.grid--text-aside {
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--text-aside {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-text-primary); /* Aubergine */
  color: var(--color-bg);
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
  padding: 0 var(--section-padding-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--duration-base) var(--ease-default);
}

.nav.is-scrolled {
  box-shadow: 0 1px 12px rgba(46, 27, 56, 0.18);
}

/* --- Logo / Brand --- */
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--weight-regular);
  color: var(--color-bg);
  letter-spacing: 0.01em;
}

/* --- Links --- */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.78);
  transition: color var(--duration-fast) var(--ease-default),
              border-color var(--duration-fast) var(--ease-default);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-bg);
  border-bottom-color: var(--color-accent-gold);
}

/* --- Sprachumschalter --- */
.nav__lang {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  color: rgba(250, 247, 242, 0.55);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-default);
}

.nav__lang:hover {
  color: var(--color-bg);
}

.nav__lang span.active {
  color: var(--color-bg);
}

.nav__lang a {
  color: inherit;
  transition: color var(--duration-fast) var(--ease-default);
}
.nav__lang a:hover {
  color: var(--color-accent-gold);
}

/* --- Hamburger (Mobile) --- */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-bg);
  transition: transform var(--duration-base) var(--ease-default),
              opacity var(--duration-fast) var(--ease-default);
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Mobile Nav Overlay --- */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-text-primary); /* Aubergine */
  z-index: 99;
  padding-top: 100px;
  padding-left: var(--section-padding-x);
  flex-direction: column;
  gap: var(--space-8);
}

.nav__overlay.is-open {
  display: flex;
}

.nav__overlay .nav__link {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-regular);
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-bg);
  border-bottom: none;
  padding-bottom: 0;
}

.nav__overlay .nav__link:hover,
.nav__overlay .nav__link.is-active {
  color: var(--color-accent-gold);
}

.nav__overlay .nav__lang {
  color: rgba(250, 247, 242, 0.55);
}
.nav__overlay .nav__lang span.active {
  color: var(--color-bg);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}


/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.hero__content {
  position: sticky;
  top: 72px; /* unter der fixierten Nav kleben */
  min-height: calc(100svh - 72px);
  padding: var(--section-padding-y) var(--section-padding-x);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Text mittig im Viewport, bis das Bild rausscrollt */
  gap: var(--space-8);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary); /* Aubergine — Eyebrows einheitlich (Kunden-Feedback) */
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--weight-regular);
  line-height: var(--leading-display);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  max-width: 10ch; /* Enge Spalte für Dramatik */
}

.hero__subline {
  font-size: var(--text-body-lg);
  line-height: var(--leading-loose);
  color: var(--color-text-body);
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-4);
}

.hero__image {
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: auto; /* natürliche Höhe aus dem Seitenverhältnis — großes Bild */
  display: block;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .hero__content {
    position: static;
    min-height: 0;
  }
  .hero__image {
    order: -1;
  }
}


/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

/* --- Basis --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast) var(--ease-default),
              color var(--duration-fast) var(--ease-default),
              border-color var(--duration-fast) var(--ease-default),
              box-shadow var(--duration-fast) var(--ease-default);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

/* --- Primär (Gold gefüllt) --- */
.btn--primary {
  background-color: var(--color-accent-gold);
  color: var(--color-bg);
  border-color: var(--color-accent-gold);
}

.btn--primary:hover {
  background-color: #9A7834;
  border-color: #9A7834;
  box-shadow: var(--shadow-sm);
}

.btn--primary:active {
  background-color: #7E6229;
  border-color: #7E6229;
}

/* --- Ghost (nur Rahmen) --- */
.btn--ghost {
  background-color: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

.btn--ghost:hover {
  background-color: var(--color-text-primary);
  color: var(--color-bg);
}

/* --- Ghost Gold --- */
.btn--ghost-gold {
  background-color: transparent;
  color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
}

.btn--ghost-gold:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-bg);
}

/* --- Text-Link Button (ohne Rahmen) --- */
.btn--text {
  padding: 0;
  background: none;
  border: none;
  color: var(--color-text-body);
  font-size: var(--text-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-accent-gold);
  border-radius: 0;
  transition: color var(--duration-fast) var(--ease-default);
}

.btn--text:hover {
  color: var(--color-accent-gold);
}

/* --- Größen --- */
.btn--sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-label);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-body);
}

/* --- States --- */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}


/* ==========================================================================
   8. FORMULARE
   ========================================================================== */

/* Formular-Philosophie: Label über Feld,
   nur Bottom-Border im Ruhezustand, Focus: Gold.
   Schlicht — Funktion und Vertrauen zählen. */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  max-width: var(--width-text);
}

/* --- Feldgruppe --- */
.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* --- Label --- */
.form__label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* --- Input / Textarea / Select --- */
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  color: var(--color-text-body);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
  border-radius: 0;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-default);
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-bottom-color: var(--color-accent-gold);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.6;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: var(--leading-body);
}

/* --- Checkbox / Radio (für Angebot-Auswahl) --- */
.form__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form__option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-body);
  color: var(--color-text-body);
}

.form__option input[type="checkbox"],
.form__option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent-gold);
  cursor: pointer;
}

/* --- Hint / Hinweistext --- */
.form__hint {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: var(--leading-h3);
}

/* --- Submit --- */
.form__submit {
  margin-top: var(--space-4);
}


/* ==========================================================================
   9. KARTEN & ANGEBOTE
   ========================================================================== */

/* Angebote: vertikale Abschnitte — keine gleichwertigen Kacheln */

.offer {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: var(--space-8) var(--space-12);
  align-items: start;
  padding: var(--space-10) 0;
  border-top: 1px solid var(--color-border);
}

.offer__number {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-regular);
  color: var(--color-accent-gold);
  opacity: 0.5;
  line-height: 1;
}

.offer__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.offer__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-regular);
  color: var(--color-text-primary);
  line-height: var(--leading-subhead);
}

.offer__description {
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: var(--leading-body);
  max-width: 480px;
}

.offer__price {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer__action {
  display: flex;
  align-items: flex-start;
  padding-top: var(--space-3);
}

@media (max-width: 768px) {
  .offer {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .offer__action {
    grid-column: 1 / -1;
  }
}


/* ==========================================================================
   10. VERTRAUENS-SEKTION / TESTIMONIAL
   ========================================================================== */

.trust {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.trust__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: var(--weight-regular);
  line-height: var(--leading-subhead);
  color: var(--color-text-primary);
  max-width: 700px;
}

.trust__attribution {
  font-size: var(--text-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}


/* ==========================================================================
   11. ABSCHLUSS-CTA SEKTION
   ========================================================================== */

.cta-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding: var(--section-padding-y) var(--section-padding-x);
}

.cta-section__headline {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-regular);
  line-height: var(--leading-subhead);
  color: var(--color-text-primary);
  max-width: 600px;
}


/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-10) var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-primary);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.footer__link {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) var(--ease-default);
}

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

.footer__copy {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
}


/* ==========================================================================
   13. BILD-KOMPONENTEN
   ========================================================================== */

/* Authentische Fotos — warmes Licht, keine Inszenierung.
   Kein Filter, kein Vignette-Overlay. */

.img-frame {
  overflow: hidden;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.img-frame:hover img {
  transform: scale(1.02); /* Sehr subtiler Hover-Zoom */
}

/* Portrait-Format (für Tae Betty Fotos) */
.img-portrait {
  aspect-ratio: 3 / 4;
}

/* Querformat (Bühnen-Fotos) */
.img-landscape {
  aspect-ratio: 16 / 9;
}

/* Quadrat */
.img-square {
  aspect-ratio: 1 / 1;
}

/* Platzhalter (bis Fotos geliefert werden) */
.img-placeholder {
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: var(--text-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ==========================================================================
   14. UTILITY CLASSES
   ========================================================================== */

/* --- Farbe --- */
.text-primary   { color: var(--color-text-primary); }
.text-body      { color: var(--color-text-body); }
.text-secondary { color: var(--color-text-secondary); }
.text-gold      { color: var(--color-accent-gold); }

/* --- Ausrichtung --- */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* --- Abstände --- */
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

/* --- Sichtbarkeit --- */
.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;
}

/* --- Flex-Helfer --- */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }


/* ==========================================================================
   15. BODY-OFFSET FÜR FIXE NAV
   ========================================================================== */

body {
  padding-top: 72px;
}
