/* ─────────────────────────────────────────
   YOLANDA – Finanzberatung
   style.css
───────────────────────────────────────── */

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

:root {
  --cream:       #F4EDE3;
  --cream-light: #FAF7F2;
  --cream-mid:   #EAE0D2;
  --dark:        #1A1714;
  --text:        #2C2926;
  --muted:       #7A736B;
  --gold:        #9B7B50;
  --gold-light:  #C4A87A;
  --sage:        #6E8E81;
  --border:      #D6CCBF;

  --max-w: 1440px;
  --pad:   80px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream-light);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── TYPOGRAFIE-HELFER ── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── BUTTONS ── */
.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--cream-light);
  padding: 16px 38px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.8; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--cream-light);
  padding: 16px 38px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.85; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.btn-link span { color: var(--gold); }
.btn-link:hover { color: var(--dark); }

.link-gold {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}
.link-gold:hover { opacity: 0.7; }

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────────────────────
   NAVIGATION
─────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(26,23,20,0.08); }

nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 26px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.logo-mark {
  height: 46px;
  width: auto;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.logo-wordmark {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 16px;
  line-height: 1;
  color: #16273f;
  white-space: nowrap;
}
.logo-wordmark .lw-1 { font-weight: 300; }
.logo-wordmark .lw-2 { font-weight: 600; }
.logo-sub {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  color: #b5713f;
  padding-left: 0.34em;
}

.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 2px 1px;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--dark); }
.lang-btn.active { color: var(--gold); }
.lang-sep { color: var(--border); font-size: 12px; }
.lang-switch.mobile { display: none; }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 13px 28px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--dark);
  color: var(--cream-light);
}

/* Burger (hidden on desktop) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding: 40px var(--pad);
  background: var(--cream-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu ul a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-menu .btn-dark {
  color: var(--cream-light);
  text-align: center;
}

/* Nach-oben-Button */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--dark);
  color: var(--cream-light);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s;
  z-index: 950;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); }

/* ───────────────────────────────────────
   HERO
─────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 73px);
  max-height: 820px;
  background: var(--cream);
}

.hero-content {
  padding: 100px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

#hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--dark);
  margin-bottom: 28px;
}
#hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-photo {
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ───────────────────────────────────────
   TAGLINE STRIP
─────────────────────────────────────── */
.tagline-strip {
  background: var(--dark);
  padding: 40px var(--pad);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.tagline-strip span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-light);
}
.tagline-strip .dot {
  font-style: normal;
  font-size: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ───────────────────────────────────────
   PHILOSOPHIE
─────────────────────────────────────── */
.philosophy {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 36px;
}
.philosophy-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}
.philosophy-body p + p { margin-top: 16px; }

.philosophy-card {
  background: var(--cream);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.quote-bg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  line-height: 1;
  color: var(--cream-mid);
  position: absolute;
  top: -20px;
  right: 16px;
  font-weight: 600;
  user-select: none;
  pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.quote-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────
   LEISTUNGEN
─────────────────────────────────────── */
.services {
  background: var(--cream);
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
}
.services-header p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

.services-list { border-top: 1px solid var(--border); }

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr 1.2fr 40px;
  align-items: center;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}
.service-item:hover { background: var(--cream-mid); margin: 0 -16px; padding: 36px 16px; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  padding-top: 2px;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.service-arrow {
  font-size: 18px;
  color: var(--gold);
  text-align: right;
  transition: transform 0.2s;
}
.service-item:hover .service-arrow { transform: translateX(4px); }

/* ───────────────────────────────────────
   STATS
─────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 100px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child  { border-right: none; padding-right: 0; text-align: right; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  color: var(--sage);
  line-height: 1.15;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 10px;
}

/* ───────────────────────────────────────
   PARTNER
─────────────────────────────────────── */
.partners {
  padding: 20px var(--pad) 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.partners-label {
  text-align: center;
}
.partners-list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 22px 42px;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.partners-list::-webkit-scrollbar { display: none; }
.partner-logo {
  height: 32px;
  width: var(--w);
  flex-shrink: 0;
}
.partner-color {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ───────────────────────────────────────
   PHOTO BREAK
─────────────────────────────────────── */
/* Festes Seitenverhältnis statt gedeckelter Höhe: dadurch bleibt der
   Bildausschnitt auf jeder Bildschirmbreite exakt gleich.
   WICHTIG: aspect-ratio NICHT mit min-height kombinieren — der Browser
   leitet sonst die Breite aus der Höhe ab (300px × 2,5 = 750px) und
   sprengt auf schmalen Handys die Seite. Schmale Displays bekommen
   deshalb unten per Media Query eine feste Höhe. */
.photo-break {
  width: 100%;
  aspect-ratio: 5 / 2;
  overflow: hidden;
  position: relative;
}
@media (max-width: 750px) {
  .photo-break {
    aspect-ratio: auto;
    height: 300px;
  }
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,23,20,0.6) 0%, rgba(26,23,20,0.05) 60%);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
}
.photo-break-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-light);
  line-height: 1.2;
  max-width: 560px;
}

/* ───────────────────────────────────────
   REFERENZEN
─────────────────────────────────────── */
.testimonials {
  background: var(--cream);
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.testimonials-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--cream-light);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 36px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-mid);
  flex-shrink: 0;
}
.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}
.review-role {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}
.review-quote-icon {
  position: absolute;
  bottom: 16px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  line-height: 1;
  color: var(--cream-mid);
  font-weight: 600;
  pointer-events: none;
  user-select: none;
}

/* ───────────────────────────────────────
   ÜBER MICH
─────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-photo {
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-content {
  background: var(--cream-light);
  padding: 100px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}
.about-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}
.signature {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: var(--gold) !important;
  line-height: 1 !important;
}

/* ───────────────────────────────────────
   CTA / KONTAKT
─────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 120px var(--pad);
  max-width: 100%;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--cream-light);
}
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.cta-right p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 247, 242, 0.65);
}
.cta-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,247,242,0.35);
  letter-spacing: 0.04em;
}

/* ── TERMIN-FORMULAR (auf dunklem Grund) ── */
.termin-form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Honeypot: unsichtbare Falle gegen Spam-Roboter */
.hp-feld { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.ff { display: flex; flex-direction: column; gap: 7px; flex: 1 1 0; min-width: 0; }
.ff-zeile { display: flex; gap: 16px; }

.ff label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.ff input,
.ff select,
.ff textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--cream-light);
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.18);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
}
.ff textarea { resize: vertical; line-height: 1.6; }
.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250,247,242,0.1);
}
.ff input::placeholder,
.ff textarea::placeholder { color: rgba(250,247,242,0.3); }
/* Kalendersymbol im Datumsfeld hell einfärben */
.ff input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
}
.ff select option { background: var(--dark); color: var(--cream-light); }

.ff-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(250,247,242,0.6);
  cursor: pointer;
}
.ff-check input {
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.ff-check a { color: var(--gold); text-decoration: underline; }

.termin-form .btn-gold {
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .ff-zeile { flex-direction: column; gap: 16px; }
}

/* ───────────────────────────────────────
   FOOTER
─────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--pad) 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-mark {
  height: 40px;
  width: auto;
  display: block;
}
.footer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-wordmark {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  line-height: 1;
  color: var(--cream-light);
  white-space: nowrap;
}
.footer-wordmark .lw-1 { font-weight: 300; }
.footer-wordmark .lw-2 { font-weight: 600; }
.footer-sub {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 8.5px;
  font-weight: 400;
  line-height: 1;
  color: #c1834f;
  padding-left: 0.32em;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.45);
  line-height: 1.75;
}
.footer-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream-light); }

.footer-contact {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.55);
  line-height: 1.9;
}
.footer-contact a { color: inherit; transition: color 0.2s; }
.footer-contact a:hover { color: var(--cream-light); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,247,242,0.28);
}
.footer-bottom a {
  color: rgba(250,247,242,0.55);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ───────────────────────────────────────
   DANKE-SEITE
─────────────────────────────────────── */
.danke-seite {
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62vh;
  padding: 90px var(--pad);
}
.danke-inner { max-width: 620px; }
.danke-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin: 10px 0 28px;
}
.danke-inner h1 em { color: var(--gold); font-style: italic; }
.danke-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}
.danke-text a { color: var(--gold); }
.danke-inner .signature { margin-top: 26px; }

/* ───────────────────────────────────────
   LEGAL PAGES (Impressum / Datenschutz)
─────────────────────────────────────── */
.legal-page {
  background: var(--cream-light);
}
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--pad) 100px;
}
.legal h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.05;
  margin: 10px 0 48px;
}
.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  margin: 44px 0 14px;
}
.legal p,
.legal li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}
.legal p { margin-bottom: 14px; }
.legal ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.legal li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.legal li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal strong {
  font-weight: 500;
  color: var(--dark);
}
.legal a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(155,123,80,0.3);
  transition: border-color 0.2s;
}
.legal a:hover { border-color: var(--gold); }
.legal mark {
  background: rgba(155,123,80,0.14);
  color: var(--gold);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 400;
}
.legal-back {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-back a {
  border-bottom: none;
  letter-spacing: 0.04em;
}

/* ───────────────────────────────────────
   RESPONSIVE — TABLET (max 1024px)
─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 48px; }

  nav { padding: 22px var(--pad); position: relative; z-index: 991; }
  .nav-links { display: none; }
  /* .nav-right umschließt auf der Startseite Sprachwahl + Button.
     Impressum/Datenschutz haben diese Hülle nicht — dort muss .nav-cta
     einzeln ausgeblendet werden, sonst wird die Seite zu breit. */
  .nav-right { display: none; }
  .nav-cta   { display: none; }
  .burger    { display: flex; }
  .lang-switch.mobile { display: inline-flex; margin-bottom: 24px; }

  #hero {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }
  .hero-content { padding: 72px var(--pad) 56px; max-width: 100%; }
  .hero-photo   { height: 480px; }

  .philosophy {
    grid-template-columns: 1fr;
    padding: 80px var(--pad);
    gap: 48px;
  }
  .services-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Auf Handy/Tablet ist rechts kein Platz für den Beschreibungstext.
     Deshalb wird jede Leistung antippbar und klappt ihren Text darunter auf. */
  .service-item {
    grid-template-columns: 44px 1fr 40px;
    gap: 12px 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .service-item:hover { background: none; margin: 0; padding: 36px 0; }

  .service-desc {
    grid-column: 1 / -1;      /* volle Breite unter Nummer und Titel */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
  }
  .service-item.offen .service-desc {
    max-height: 400px;
    opacity: 1;
    margin-top: 4px;
  }

  /* Pfeil dreht sich beim Aufklappen nach unten */
  .service-arrow {
    transition: transform 0.35s ease;
    align-self: start;
    padding-top: 4px;
  }
  .service-item.offen .service-arrow { transform: rotate(90deg); }
  .service-item:hover .service-arrow { transform: none; }
  .service-item.offen:hover .service-arrow { transform: rotate(90deg); }

  .stats {
    padding: 72px var(--pad);
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .stat-item { padding: 0 28px; }
  .stat-item:nth-child(odd)  { text-align: left; padding-left: 0; }
  .stat-item:nth-child(even) { text-align: right; padding-right: 0; border-right: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .about {
    grid-template-columns: 1fr;
  }
  .about-photo { height: 460px; }
  .about-content { padding: 72px var(--pad); }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px var(--pad) 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ───────────────────────────────────────
   RESPONSIVE — MOBILE (max 640px)
─────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --pad: 24px; }

  .mobile-menu { padding: 36px var(--pad); }

  .hero-photo { height: 320px; }
  #hero h1 { font-size: 40px; }

  .tagline-strip {
    gap: 24px;
    padding: 32px var(--pad);
  }
  .tagline-strip .dot { display: none; }

  .philosophy { padding: 72px var(--pad); }
  .philosophy-card { padding: 44px 32px; }
  .quote-bg { font-size: 130px; }

  .services { padding: 72px var(--pad); }
  .service-item {
    grid-template-columns: 36px 1fr 28px;
    gap: 14px;
    padding: 28px 0;
  }

  .stats {
    grid-template-columns: 1fr;
    padding: 60px var(--pad);
    gap: 48px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 48px !important;
    text-align: left !important;
  }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0 !important; }

  .partners { padding: 0 var(--pad) 72px; }
  .partners-list {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 24px 28px;
    justify-content: center;
  }
  .partner-logo { height: 28px; }

  .testimonials { padding: 72px var(--pad); }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-content { padding: 60px var(--pad); gap: 20px; }

  .cta-section { padding: 80px var(--pad); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px var(--pad) 36px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 20px var(--pad);
  }
}
