/* ===================================================================
   GLOBAL BOOTSTRAP VARIABLE OVERRIDES
   =================================================================== */
:root {
  /* === Palette: Rose-Clay === */
  --white:      #FFFFFF;
  --warm:       #C9A99A;               /* rose-clay */
  --warm-dark:  #7A3D30;               /* deep terracotta-wine (AA contrast) */
  --ink:        #1A1210;               /* warm near-black */
  --ink-panel:  #402C24;               /* lighter warm brown for dark panels (footer, quote, banner) */

  --warm-rgb:   201, 169, 154;
  --page-bg:    #F7F4EE;               /* warm beige (entrosa-stichelt) */
  --card-bg:    #ECE6DB;               /* soft beige panel */
  --warm-light: rgba(201,169,154,.35);
  --ink-soft:   rgba(26,18,16,.62);
  --line:       rgba(201,169,154,.38);

  --bs-body-bg:           var(--page-bg);
  --bs-body-color:        var(--ink);
  --bs-body-font-family:  'Cormorant Garamond', Georgia, serif;
  --bs-body-font-size:    1.18rem;
  --bs-body-font-weight:  400;
  --bs-body-line-height:  1.72;
  --bs-primary:           var(--warm);
  --bs-primary-rgb:       var(--warm-rgb);
  --bs-link-color:        var(--warm-dark);
  --bs-link-hover-color:  var(--ink);
  --bs-border-color:      var(--line);
  --bs-heading-color:     var(--ink);
  --bs-emphasis-color:    var(--ink);

  /* Shadow system */
  --shadow-sm:  0 2px 12px rgba(122,61,48,.08);
  --shadow-md:  0 8px 32px rgba(122,61,48,.12);
  --shadow-lg:  0 20px 56px rgba(122,61,48,.16);
}

/* ===================================================================
   BASE
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-color: var(--page-bg);
}

::selection { background: var(--warm); color: var(--ink); }

/* ===================================================================
   TYPOGRAPHY UTILITIES
   =================================================================== */
.u-display    { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: .96; letter-spacing: .005em; }
.u-display-it { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; line-height: .96; letter-spacing: .005em; }
.u-script     { font-family: 'Absolute Beauty Script', cursive; line-height: .82; font-weight: 400; }

.u-eyebrow { font-family: 'Cinzel', serif; text-transform: uppercase; letter-spacing: .34em; font-weight: 500; font-size: .72rem; }
.u-meta    { font-family: 'Cinzel', serif; text-transform: uppercase; letter-spacing: .24em; font-weight: 500; font-size: .66rem; }

.u-rule   { display: block; width: 100%; height: 1px; background: var(--line); border: 0; }
.u-rule-v { width: 1px; background: var(--line); }

.u-section { padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(5rem, 10vw, 9rem); }

.u-sechead { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.u-sechead .u-eyebrow { letter-spacing: .36em; }

.u-sec-title              { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.u-script.u-sec-title     { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; }

.u-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.u-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.u-link:hover::after { transform: scaleX(1); }

/* Warm-background sections */
.u-on-warm { background: var(--warm); }
.u-on-warm, .u-on-warm * { color: var(--ink); }
.u-on-warm .u-rule { background: rgba(26,18,16,.18); }

/* Dark footer */
.u-on-dark { background: var(--ink-panel); }
.u-on-dark .u-rule { background: rgba(255,255,255,.15); }

/* Light-tinted section background */
.u-on-card { background: var(--card-bg); }

/* ===================================================================
   BRAND LOGO (CSS mask)
   =================================================================== */
.ep-logo {
  display: block;
  height: 58px;
  aspect-ratio: 466 / 213;
  background-color: currentColor;
  -webkit-mask: url('../images/ellenpollmann_logo.svg') no-repeat center / contain;
  mask: url('../images/ellenpollmann_logo.svg') no-repeat center / contain;
  transition: height .4s ease;
}
.navbar.scrolled .ep-logo { height: 36px; }

.navbar-logo-wrap { display: flex; align-items: center; text-decoration: none; color: var(--ink); }

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  transition: background-color .4s ease, padding .4s ease, box-shadow .4s ease;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: rgba(247,244,238,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar .nav-link {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .7rem;
  color: var(--ink) !important;
  transition: color .25s;
  display: flex;
  align-items: baseline;
  gap: .4rem;
  cursor: pointer;
}
.navbar .nav-link:hover { color: var(--warm-dark) !important; }
.navbar.scrolled {
  background: var(--white);
  padding-top: .85rem;
  padding-bottom: .85rem;
  box-shadow: 0 1px 0 var(--line);
}
.navbar-toggler {
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.navbar-toggler:focus { box-shadow: none; outline: 2px solid var(--warm); outline-offset: 2px; }
.navbar-toggler .bar { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ===================================================================
   HERO
   =================================================================== */
.u-hero {
  position: relative;
  min-height: 100svh;
  background: var(--page-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.u-hero .hero-content { position: relative; z-index: 2; padding-top: 6.5rem; padding-bottom: 3rem; }

/* Dekoratives Rose-Panel rechts */
.u-hero .hero-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  background: var(--card-bg);
  z-index: 0;
}
/* Subtile diagonale Trennlinie */
.u-hero .hero-deco::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--warm) 40%, var(--warm) 60%, transparent);
  opacity: .5;
}
@media (max-width: 767.98px) { .u-hero .hero-deco { display: none; } }

/* H1 */
.u-hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.hero-intro { max-width: 500px; font-size: 1.18rem; color: var(--ink-soft); line-height: 1.7; }

.hero-claim {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--warm-dark);
  line-height: 1.4;
  max-width: 460px;
}

/* Foto-Maske */
.hero-portrait {
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  width: 100%;
  border-radius: 0 0 0 38%;
  box-shadow: var(--shadow-md);
}

/* Hero-Bildwechsel (Slideshow) */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;       /* etwas kompakter, nur dezenter Beschnitt */
  border-radius: 0 0 0 38%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* Auf Mobil/Tablet liegt das Bild über dem Text — moderate Höhe, damit die CTAs erreichbar bleiben */
@media (max-width: 991.98px) { .hero-slideshow { aspect-ratio: auto; height: 56svh; } }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }

/* Großes, leicht transparentes Badge-Logo rechts im Bild (Wasserzeichen-Look) */
.hero-badge {
  position: absolute;
  top: 1.6rem;
  right: -1.2rem;
  z-index: 2;
  width: clamp(150px, 36%, 260px);
  aspect-ratio: 1 / 1;
  background: url('../images/Ellen_neues_Logo_final_kreis_weiss.webp') no-repeat center / contain;
  filter: drop-shadow(0 2px 12px rgba(26,18,16,.30));
  opacity: .55;
  animation: badge-spin 120s linear infinite;
}
@keyframes badge-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; }
}
@media (max-width: 575.98px) { .hero-badge { width: 38%; top: 1rem; right: -1.4rem; } }

/* Carousel-Dots */
.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 3;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .35s ease, transform .35s ease;
}
.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.4);
}
.hero-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  border-radius: 2px;
  padding: .9rem 2.2rem;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-warm {
  background: var(--warm);
  color: var(--ink);
  border: 1px solid var(--warm);
}
.btn-warm:hover {
  background: var(--warm-dark);
  border-color: var(--warm-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-outline-warm {
  background: transparent;
  color: var(--warm-dark);
  border: 1px solid var(--warm);
}
.btn-outline-warm:hover {
  background: var(--warm);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,18,16,.3);
}
.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn:focus-visible {
  outline: 2px solid var(--warm-dark);
  outline-offset: 3px;
}

/* ===================================================================
   LEISTUNGEN – SERVICE CARDS (Editorial / No-Image)
   =================================================================== */
.service-card {
  background: var(--card-bg);
  padding: clamp(2rem, 4.5vw, 3.2rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 3px solid var(--warm);
  position: relative;
  transition: box-shadow .3s ease, transform .3s ease, border-top-color .3s ease;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-top-color: var(--warm-dark);
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--warm);
  opacity: .45;
  margin-bottom: .8rem;
  transition: opacity .3s ease;
  user-select: none;
}
.service-card:hover .service-num { opacity: .7; }

.service-card .service-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--warm-dark);
  margin-bottom: 1.1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}
.service-card .service-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.78;
  flex: 1;
}
.service-card .service-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.6rem;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--warm-dark);
  text-decoration: none;
  transition: gap .25s ease;
}
.service-card:hover .service-more { gap: .7rem; }

.service-prices {
  margin: auto 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: .98rem;
  color: var(--ink-soft);
}
.service-price-row dt { margin: 0; font-weight: 400; }
.service-price-row dd {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--warm-dark);
  white-space: nowrap;
}

/* ===================================================================
   TESTIMONIALS — SLIDER (vanilla, no Bootstrap carousel)
   =================================================================== */
.testi-slider {
  position: relative;
}

/* Viewport clippt, Track schiebt sich per transform darin – kein natives Scrollen,
   kein scroll-snap, keine Browser-Blackbox. Bewusst simpel gehalten, weil genau die
   scroll-basierte Vorgängerversion in Firefox unzuverlässig war. */
.testi-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* etwas Luft an den Rändern, damit die aktive (leicht größer skalierte) Karte mit
     ihrem Schatten nicht am Viewport-Rand abgeschnitten wird */
  padding-inline: .75rem;
  margin-inline: -.75rem;
}
.testi-track {
  --testi-card-w: min(84vw, 340px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-block: 1.5rem;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  /* none statt pan-y: sonst kann der Browser die Touch-Geste vorzeitig für eigenes
     Scrollen beanspruchen (pointercancel), bevor unser JS sie als horizontalen
     Swipe erkennen kann – der Slider "swipt kurz an" und bricht dann ab. */
  touch-action: none;
  cursor: grab;
}
.testi-track.is-dragging {
  transition: none;
  cursor: grabbing;
  user-select: none;
}

@media (min-width: 576px)  { .testi-track { --testi-card-w: 320px; } }
@media (min-width: 992px)  { .testi-track { --testi-card-w: 340px; } }
@media (min-width: 1200px) { .testi-track { --testi-card-w: 360px; } }

.testi-card {
  flex: 0 0 var(--testi-card-w);
  width: var(--testi-card-w);
  height: 28rem;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--warm);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  margin: 0;
  opacity: .5;
  transform: scale(.9);
  transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .45s ease, box-shadow .45s ease, border-top-color .45s ease;
}
.testi-card.is-active {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--warm-dark);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .testi-track, .testi-card { transition: none; }
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: .5rem;
}
.testi-arrow {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
@media (hover: hover) {
  .testi-arrow:hover { border-color: var(--warm); background: var(--warm); color: var(--ink); }
}
.testi-arrow:disabled { opacity: .35; pointer-events: none; }
.testi-arrow:focus-visible { outline: 2px solid var(--warm-dark); outline-offset: 2px; }

.testi-dots { display: flex; align-items: center; gap: .5rem; }
.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.testi-dot.is-active { background: var(--warm-dark); transform: scale(1.3); }
.testi-dot:focus-visible { outline: 2px solid var(--warm-dark); outline-offset: 3px; }

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 3.6rem;
  line-height: .5;
  color: var(--warm);
  margin: 0 0 1.4rem;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.28rem;
  color: var(--ink);
  line-height: 1.85;
  flex: 1;
  margin: 0 0 1.4rem;
  overflow-y: auto;
  padding-right: .4rem;
  /* weiches Ausblenden statt harter Kante am unteren Rand – Text bleibt vollständig
     erhalten (scrollbar), wirkt aber nicht wie abgeschnitten */
  mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
}
/* dezenter, schmaler Scrollbalken statt des groben Standards, nur wenn ein Zitat
   die Kartenhöhe überschreitet – Text wird nie abgeschnitten, sondern scrollbar */
.testimonial-text::-webkit-scrollbar { width: 4px; }
.testimonial-text::-webkit-scrollbar-track { background: transparent; }
.testimonial-text::-webkit-scrollbar-thumb { background: var(--warm); border-radius: 2px; }
.testimonial-text { scrollbar-width: thin; scrollbar-color: var(--warm) transparent; }
.testimonial-text .emoji { font-style: normal; }
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.testimonial-avatar {
  flex: none;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-light);
  color: var(--warm-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.testimonial-name {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--ink);
  margin: 0 0 .2rem;
}
.testimonial-meta {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--warm-dark);
  margin: 0;
}

/* ===================================================================
   ÜBER MICH
   =================================================================== */
.u-portrait { position: relative; }
.u-portrait .tag {
  position: absolute;
  left: -1px; bottom: 1.4rem;
  background: var(--warm);
  color: var(--ink);
  padding: .5rem 1.1rem;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.u-dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  float: left;
  font-size: 4.8rem;
  line-height: .7;
  padding: .1rem .5rem 0 0;
  color: var(--warm-dark);
}
.u-portrait img {
  display: block;
  width: 100%;
  box-shadow: var(--shadow-md);
}

/* ===================================================================
   KONTAKT
   =================================================================== */
.form-control {
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--warm-light);
  padding: .7rem 0;
  font-size: 1.12rem;
  color: var(--ink);
  box-shadow: none !important;
  transition: border-bottom-color .25s ease;
}
.form-control:focus { background: transparent; border-bottom-color: var(--warm-dark); }
.form-control::placeholder { color: rgba(26,18,16,.5); }
.form-label {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .62rem;
  color: var(--warm-dark);
}

.kontakt-label {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .64rem;
  color: var(--warm-dark);
  margin-bottom: .3rem;
}
.kontakt-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--ink); }
.kontakt-rule  { background: var(--warm-light); }
.kontakt-intro { font-size: 1.1rem; color: var(--ink-soft); max-width: 500px; line-height: 1.72; }

/* Honeypot: für Menschen unsichtbar, aber im DOM/Accessibility-Tree vorhanden -
   bewusst nicht display:none, das erkennen manche Bots. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#kontakt-form button[type="submit"]:disabled { opacity: .6; cursor: not-allowed; }

.form-status {
  font-size: .98rem;
  min-height: 1.5em;
  transition: color .2s ease;
}
.form-status.is-success { color: var(--warm-dark); }
.form-status.is-error   { color: #A33; }

/* ===================================================================
   EYEBROW / SECTION LABELS
   =================================================================== */
.eyebrow-warm { color: var(--warm-dark); }
.eyebrow-warm.hero-eyebrow { margin-bottom: 1.2rem; }

/* ===================================================================
   ABOUT – ÜBER MICH
   =================================================================== */
.about-body-text { font-size: 1.2rem; }
.about-subtext   { color: var(--ink-soft); font-size: 1.1rem; }
/* Signatur als Logo-Wortmarke „Ellen" (CSS-Mask, trifft die Logo-Schrift) */
.about-logo-sig {
  display: block;
  height: 52px;
  aspect-ratio: 466 / 213;
  background-color: var(--warm-dark);
  -webkit-mask: url('../images/ellen-wordmark.svg') no-repeat left center / contain;
  mask: url('../images/ellen-wordmark.svg') no-repeat left center / contain;
}

/* ===================================================================
   PULL QUOTE (Deep Wine section)
   =================================================================== */
.pull-quote-section {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  background: var(--ink-panel);
}
.pull-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: .45;
  color: var(--warm);
  opacity: .4;
  margin-bottom: 1.5rem;
}
.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.52;
  color: rgba(255,255,255,.92);
  border: 0;
  padding: 0;
  margin: 0 0 1.5rem;
}
.pull-quote-attr {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: rgba(255,255,255,.52);
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer.u-on-dark { color: rgba(255,255,255,.88); }
footer.u-on-dark a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .25s; }
footer.u-on-dark a:hover { color: var(--white); }
footer.u-on-dark .ep-logo { background-color: rgba(255,255,255,.88); }
footer.u-on-dark .navbar-logo-wrap { color: rgba(255,255,255,.88); }
footer.u-on-dark .u-script { color: rgba(255,255,255,.88); }
footer.u-on-dark .footer-meta { color: rgba(255,255,255,.45); }

.footer-script   { font-size: 2.8rem; line-height: .85; }
.footer-location { color: rgba(255,255,255,.55); letter-spacing: .32em; font-size: .62rem; }
.footer-icon   { font-size: 1.4rem; color: rgba(255,255,255,.72); text-decoration: none; transition: color .25s ease; }
.footer-icon:hover { color: var(--white); }
.footer-meta   { color: rgba(255,255,255,.5); font-size: .6rem; }
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  margin-bottom: 3rem;
}
.footer-col-head {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: rgba(255,255,255,.52);
  margin-bottom: .85rem;
}
.footer-info-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.footer-info-text a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .25s;
}
.footer-info-text a:hover { color: var(--white); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.8rem;
}
.footer-legal-link {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .25s;
}
.footer-legal-link:hover { color: rgba(255,255,255,.82); }


.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem 1rem;
  margin-top: 2rem;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .58rem;
  color: var(--ink-soft);
}
.hero-meta-sep { color: var(--warm); opacity: .6; user-select: none; }


/* ===================================================================
   STATEMENT SECTION
   =================================================================== */
.statement-section {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}
.statement-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.statement-body {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.78;
}


/* ===================================================================
   KONTAKT – Karte
   =================================================================== */
.map-wrap {
  position: relative;
  border: 1px solid var(--line);
}
#studio-map {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
}
/* Tone down the Carto tiles to match the site palette */
#studio-map .leaflet-tile-pane { filter: grayscale(18%) sepia(8%); }
/* Leaflet controls */
#studio-map .leaflet-control-zoom a {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  border-color: var(--line);
}
#studio-map .leaflet-control-zoom a:hover { background: var(--card-bg); }
#studio-map .leaflet-control-attribution {
  font-size: .58rem;
  background: rgba(250,247,245,.82);
  color: var(--ink-soft);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  position: absolute;
  bottom: .9rem;
  right: .9rem;
  background: var(--white);
  color: var(--warm-dark);
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  text-decoration: none;
  padding: .45rem .9rem;
  border: 1px solid var(--line);
  transition: background-color .2s ease, color .2s ease;
  cursor: pointer;
}
.map-link:hover {
  background: var(--warm);
  color: var(--ink);
}

/* ===================================================================
   KONTAKT – Erweiterung
   =================================================================== */
.kontakt-addr { font-style: normal; line-height: 1.65; }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.anim .reveal { opacity: 0; transform: translateY(22px); }
.anim .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .85s cubic-bezier(.16,.84,.24,1), transform .85s cubic-bezier(.16,.84,.24,1);
}
.anim .reveal.d1.in { transition-delay: .08s; }
.anim .reveal.d2.in { transition-delay: .16s; }
.anim .reveal.d3.in { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .anim .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   BEHANDLUNGSABLAUF
   =================================================================== */
.behandlung-steps {
  display: flex;
  align-items: flex-start;
}
.behandlung-step { flex: 1; }
.step-connector {
  flex-shrink: 0;
  width: 4rem;
  height: 1px;
  background: var(--line);
  margin-top: 2.4rem;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 1;
  color: var(--warm);
  opacity: .45;
  margin-bottom: .5rem;
  user-select: none;
}
.step-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--warm-dark);
  margin-bottom: .75rem;
}
.step-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .behandlung-steps { flex-direction: column; }
  .step-connector {
    width: 1px;
    height: 2rem;
    margin: 0 0 0 1.8rem;
  }
  .behandlung-step + .step-connector { margin-top: 0; }
}

.ablauf-photos { margin-top: 3rem; }
.ablauf-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}

/* ===================================================================
   SERVICE PRICE
   =================================================================== */
.service-price {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--warm-dark);
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.price-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--warm-dark);
  text-align: center;
  max-width: 42rem;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}
.gallery-filter-btn {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: .55rem 1.05rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.gallery-filter-btn:hover { border-color: var(--warm); color: var(--ink); }
.gallery-filter-btn.is-active {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink);
}
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  display: block;
  width: 100%;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.is-hidden { display: none; }

/* GLightbox: Bildunterschrift ans Editorial-Design angepasst */
.glightbox-clean .gslide-description.description-bottom {
  background: var(--ink-panel);
}
.glightbox-clean .gdesc-inner {
  padding: 1.5rem 1.8rem;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}
.glightbox-clean .gslide-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--warm);
  margin-bottom: 0;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 480px) {
  .glightbox-clean .gdesc-inner { padding: 1.2rem 1rem; }
  .glightbox-clean .gslide-title { font-size: .68rem; letter-spacing: .12em; }
}
.glightbox-clean .gslide-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  margin-top: .5rem;
}
.glightbox-clean .gslide-desc:empty { display: none; }
@media (max-width: 575.98px) {
  .gallery-grid { columns: 2; column-gap: .75rem; }
  .gallery-item { margin-bottom: .75rem; }
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-section { background: var(--card-bg); }
.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0 !important;
}
.accordion-button {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink);
  background: transparent !important;
  padding: 1.4rem 0;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--warm-dark); }
.accordion-button::after {
  background-image: none;
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--warm);
  width: auto;
  height: auto;
  transform: none !important;
}
.accordion-button:not(.collapsed)::after { content: '−'; color: var(--warm-dark); background-image: none; }
.accordion-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.78;
  padding: 0 2rem 1.6rem 0;
}
.faq-photo img {
  display: block;
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 992px) {
  .faq-photo {
    position: sticky;
    top: 6.5rem;
    margin-top: 5.2rem; /* auf Höhe des Akkordeons (unterhalb der Sectionhead) */
  }
}

/* ===================================================================
   FLOATING WHATSAPP
   =================================================================== */
.whatsapp-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  z-index: 50;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,.5);
}
@media (min-width: 768px) {
  .whatsapp-btn { bottom: 1.5rem; }
}
body.dsgvo-active .whatsapp-btn { bottom: calc(5.5rem + 56px); }
@media (min-width: 768px) {
  body.dsgvo-active .whatsapp-btn { bottom: calc(1.5rem + 56px); }
}

/* ===================================================================
   MOBILE STICKY CTA
   =================================================================== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1.25rem;
  background: var(--page-bg);
  border-top: 1px solid var(--line);
  z-index: 40;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-cta.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 767.98px) {
  .mobile-cta { display: block; }
}

/* ===================================================================
   DSGVO BANNER
   =================================================================== */
.dsgvo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink-panel);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 60;
  transition: transform .3s ease;
}
.dsgvo-banner.hidden { transform: translateY(100%); pointer-events: none; }
.dsgvo-text {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.dsgvo-text a { color: rgba(255,255,255,.9); text-underline-offset: 3px; }
.dsgvo-ok {
  background: var(--warm);
  color: var(--ink);
  border: 0;
  padding: .55rem 1.4rem;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s ease;
}
.dsgvo-ok:hover { background: rgba(201,169,154,.8); }

/* ===================================================================
   RECHTLICHE MODALS — Impressum & Datenschutz
   =================================================================== */
.legal-modal .modal-content {
  background: var(--page-bg);
  border: 1px solid var(--line);
  border-radius: 0;
}
.legal-modal .modal-header {
  border-bottom: 1px solid var(--line);
  padding: 1.75rem clamp(1.5rem, 4vw, 2.75rem) 1.25rem;
}
.legal-modal .modal-title { font-size: 2.2rem; color: var(--warm-dark); }
.legal-modal .modal-body { padding: 1.5rem clamp(1.5rem, 4vw, 2.75rem) 2rem; }
.legal-modal .btn-close { box-shadow: none; opacity: .6; }
.legal-modal .btn-close:hover { opacity: 1; }
.legal-body h3 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--warm-dark);
  margin-top: 1.8rem;
  margin-bottom: .6rem;
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-body a { color: var(--warm-dark); }

/* ===================================================================
   MOBILE — Readability & Hero
   =================================================================== */
@media (max-width: 767.98px) {

  /* Hero: Bild oben, Text darunter */
  .u-hero { min-height: 100svh; }
  .u-hero .hero-content { padding-top: 5rem; padding-bottom: 3rem; }

  .hero-portrait {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 0 0 0 22%;
    margin-bottom: .5rem;
    box-shadow: var(--shadow-sm);
  }

  .hero-intro  { max-width: 100%; }
  .hero-claim  { max-width: 100%; font-size: 1.15rem; }
  .hero-meta   { gap: .3rem .7rem; font-size: .55rem; }

  /* Sektionsüberschriften */
  .u-sec-title              { font-size: 2.8rem; }
  .u-script.u-sec-title     { font-size: 4rem; }

  /* Eyebrow-Texte: weniger Tracking auf kleinen Screens */
  .u-eyebrow          { letter-spacing: .2em; font-size: .68rem; }
  .u-meta             { letter-spacing: .14em; }
  .hero-eyebrow       { letter-spacing: .18em; font-size: .64rem; }
  .footer-location    { letter-spacing: .18em; }

  /* Section labels & form */
  .kontakt-label      { letter-spacing: .14em; }
  .form-label         { letter-spacing: .12em; }
  .service-card .service-title { letter-spacing: .14em; }
  .step-title         { letter-spacing: .14em; }
  .accordion-button   { letter-spacing: .12em; font-size: .72rem; padding-right: 1rem; }
  .footer-col-head    { letter-spacing: .18em; }
  .footer-legal-link  { letter-spacing: .14em; }
  .map-link           { letter-spacing: .12em; }

  /* Behandlung: vertikale Connector-Linie */
  .behandlung-step { padding-right: 0; }

  /* Kontakt-Info: etwas kompakter */
  .kontakt-value { font-size: 1.1rem; }

  /* Footer */
  footer.u-on-dark { padding-top: 3rem !important; }
  .footer-cols { gap: 1.5rem 3rem; }

  /* Mobile CTA Abstand */
  .mobile-cta { padding-bottom: calc(.75rem + env(safe-area-inset-bottom, 0px)); }
}
