/* ==========================================================================
   Susanne's Henna — styles.css
   Farbtokens aus uploads/DESIGN.md, keine externen Ressourcen.
   ========================================================================== */

@font-face {
  font-family: 'DM Serif Text';
  src: url('fonts/dm-serif-text-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --cream: #f7f0eb;
  --cream-2: #f0e1d7;
  --copper: #b76a3a;
  --copper-dark: #92542e;
  --brown: #492a17;
  --ink: #070503;
  --muted: #51504e;
  --gold: #d4af37;
  --line: rgba(7, 5, 3, 0.14);

  --font-serif: 'DM Serif Text', Georgia, serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 12px;
  --r-btn: 10px;

  --shadow-soft: 0 10px 30px rgba(73, 42, 23, 0.10);
  --shadow-lift: 0 18px 44px rgba(73, 42, 23, 0.16);

  --header-h: 68px;
  --sec-y: clamp(52px, 9vw, 100px);
  --sec-x: 5%;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img, video { max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0; }

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

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: var(--sec-x);
}

.sec { padding-block: var(--sec-y); }

.sec-head {
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}

.sec-head h2 { font-size: clamp(31px, 4.6vw, 52px); margin-bottom: 14px; }

.sec-head p { font-size: clamp(16px, 1.8vw, 19px); color: var(--muted); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}

.btn svg { flex: none; }

.btn-primary { background: var(--copper); color: #fff; }

.btn-primary:hover {
  background: var(--copper-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover { background: rgba(7, 5, 3, 0.05); }

.btn-sm { min-height: 44px; padding: 9px 18px; font-size: 15.5px; }

/* WhatsApp-Buttons: alle Links, die tatsächlich WhatsApp öffnen.
   Der Attribut-Selektor überschreibt gezielt Farbe/Icon (nicht Grösse/Radius)
   und trifft weder Skip-Link, E-Mail-Submit noch andere btn-primary-Buttons. */
a.btn[href^="https://wa.me"] {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

a.btn[href^="https://wa.me"]:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

a.btn[href^="https://wa.me"]:active {
  background: #18a94f;
  border-color: #18a94f;
}

a.btn[href^="https://wa.me"]:focus-visible {
  outline: 2px solid #18a94f;
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 245, 236, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5d8c2;
}

/* Warmer Logo-Text nur im Header (Footer-Logo bleibt unverändert) */
.site-header .brand { color: #3b2a20; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand span {
  font-family: var(--font-serif);
  font-size: 20px;
  white-space: nowrap;
}

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

.nav-links a {
  position: relative;
  /* Horizontales Padding mit negativer Marge ausgeglichen: gleicher Abstand
     wie zuvor, aber Platz für einen dezenten Hover-Hintergrund */
  padding: 8px 10px;
  margin: 0 -10px;
  font-size: 16px;
  color: #3b2a20;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(138, 75, 46, 0.08);
  color: #8a4b2e;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: #8a4b2e;
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: calc(100% - 20px); }

.nav-cta { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid #e5d8c2;
  padding: 10px var(--sec-x) 22px;
  flex-direction: column;
  gap: 2px;
  background: rgba(250, 245, 236, 0.98);
}

.mobile-menu.open { display: flex; }

.mobile-menu a:not(.btn) {
  padding: 13px 4px;
  font-size: 18px;
  color: #3b2a20;
  border-bottom: 1px solid #e5d8c2;
}

.mobile-menu .btn { margin-top: 14px; }

@media (max-width: 991px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: flex; }
}

@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* Kompakte Kopfzeile auf schmalen Geräten – verhindert horizontalen Overflow */
@media (max-width: 479px) {
  .nav { gap: 6px; }
  .brand span { font-size: 17px; }
  .nav-cta .btn { min-height: 42px; padding: 8px 12px; font-size: 14px; }
  .nav-toggle { width: 40px; height: 42px; padding: 8px; }
}

@media (max-width: 359px) {
  .brand span { font-size: 15px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { padding-block: clamp(36px, 5vw, 60px) clamp(44px, 7vw, 84px); }

.hero-inner { text-align: center; }

.hero h1 {
  font-size: clamp(38px, 5.5vw, 62px);
  max-width: 18ch;
  margin: 0 auto 16px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* Video + Kurzinfos nebeneinander */
.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(28px, 4vw, 44px);
}

.hero-media {
  position: relative;
  /* Kompakt halten: nie höher als 65vh/600px */
  width: min(100%, calc(min(65vh, 600px) * 16 / 9));
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-facts {
  text-align: left;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
}

.hero-facts .eyebrow { margin-bottom: 14px; }

.hero-facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.hero-facts li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.hero-facts li svg {
  color: var(--copper);
  margin-top: 2px;
  flex: none;
}

.hero-facts li span {
  display: block;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}

.hero-facts li strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-facts-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--copper-dark);
  border-bottom: 1px solid rgba(183, 106, 58, 0.4);
  padding-bottom: 1px;
  transition: color .18s ease, border-color .18s ease;
}

.hero-facts-link:hover { color: var(--copper); border-color: var(--copper); }

@media (max-width: 900px) {
  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-facts {
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
   Galerie / Slider
   -------------------------------------------------------------------------- */

.gallery-shell {
  position: relative;
  padding-inline: clamp(0px, 3vw, 56px);
}

.gallery-viewport { overflow: hidden; }

.gallery-track {
  display: flex;
  margin-inline: -10px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  touch-action: pan-y;
}

.gallery-item {
  flex: 0 0 auto;
  width: calc(100% / var(--per-view, 3));
  padding-inline: 10px;
}

.gallery-item button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--cream);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 24px rgba(73, 42, 23, 0.09);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-item button:hover img { transform: scale(1.05); }

.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(73, 42, 23, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brown);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(73, 42, 23, 0.14);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gal-arrow:hover { background: var(--copper); border-color: var(--copper); color: #fff; }

.gal-arrow.prev { left: -2px; }
.gal-arrow.next { right: -2px; }

/* Auf dem Handy Pfeile sichtbar lassen und über die Bildränder legen */
@media (max-width: 639px) {
  .gallery-shell { padding-inline: 0; }
  .gal-arrow { width: 44px; height: 44px; font-size: 20px; }
  .gal-arrow.prev { left: 8px; }
  .gal-arrow.next { right: 8px; }
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(73, 42, 23, 0.22);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.gallery-dots button[aria-current='true'] {
  width: 26px;
  background: var(--copper);
}

.gallery-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(41, 28, 18, 0.88);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(92vw, 880px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox .gal-arrow { position: fixed; display: flex; }
.lightbox .gal-arrow.prev { left: 16px; }
.lightbox .gal-arrow.next { right: 16px; }

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown);
  font-size: 24px;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Angebote
   -------------------------------------------------------------------------- */

/* Warme Sektionsfläche – hebt die Angebote klar von der Galerie ab */
.offers-sec { background: #f4e9dc; }

/* Asymmetrisches, redaktionelles Layout: grosse Hauptkarte + drei Mini-Karten */
.offers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Hauptkarte (links, ~50 %) – vertikal: grosses Bild oben, Text unten */
.offer-feature {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

/* Bild absolut gefüllt: die Bildhöhe treibt die Karte nicht auf, sondern
   das Medienfeld füllt den durch den Text übrigen Raum (kein Verzerren) */
.offer-feature-media {
  flex: 1;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.offer-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-feature-body {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 40px);
}

.offer-feature-body h3 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }

.offer-feature-body p { font-size: clamp(16px, 1.5vw, 18px); color: var(--muted); max-width: 46ch; }

/* Kleine Kennzeichnung als Terrakotta-Pille */
.offer-tag {
  align-self: flex-start;
  display: inline-block;
  padding: 5px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(183, 106, 58, 0.12);
  color: var(--copper-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Drei kompakte Karten (rechts) – horizontal: kleine Bildfläche + Text.
   Gleichmässige Zeilen füllen die Spalte bündig zur Hauptkarte. */
.offer-list { display: grid; grid-template-rows: repeat(3, 1fr); gap: 24px; }

.offer-mini {
  display: grid;
  grid-template-columns: 132px 1fr;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.offer-mini-media { overflow: hidden; background: var(--cream); }

.offer-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-mini-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
}

.offer-mini-body h4 { font-family: var(--font-serif); font-weight: 400; font-size: 21px; margin-bottom: 6px; }

.offer-mini-body p { font-size: 15.5px; line-height: 1.5; color: var(--muted); }

/* Dezenter brauner Textlink – nur der Link ist klickbar, nicht die Karte */
.offer-link {
  align-self: flex-start;
  margin-top: 12px;
  padding: 2px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--copper-dark);
  transition: color 0.2s ease;
}

.offer-feature-body .offer-link { margin-top: auto; padding-top: 16px; }

.offer-link span { transition: transform 0.2s ease; display: inline-block; }

.offer-link:hover { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }

.offer-link:hover span { transform: translateX(3px); }

.offer-link:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

.offers-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 44px);
}

/* Tablet & Mobile: alles einspaltig – zuerst Hauptkarte, dann Mini-Karten */
@media (max-width: 899px) {
  .offers-layout { grid-template-columns: 1fr; }
  .offer-list { display: flex; flex-direction: column; }
  .offer-feature-media { min-height: 300px; }
}

@media (max-width: 599px) {
  .offer-mini { grid-template-columns: 108px 1fr; }
  .offer-mini-body { padding: 14px 16px; }
  .offers-cta .btn { width: 100%; }
}

@media (max-width: 359px) {
  .offer-mini { grid-template-columns: 1fr; }
  .offer-mini-media { aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   Vorteile — Sticky Stack (Desktop) / Karten (Mobile)
   -------------------------------------------------------------------------- */

.benefits { background: var(--cream); }

.stack { display: flex; flex-direction: column; }

.stack-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  /* Warmes Off-White statt hartem Weiss – ruhiger neben den kräftigen Fotos */
  background: #fcf9f6;
  box-shadow: var(--shadow-soft);
}

.stack-card .media { min-height: 0; }

.stack-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hochformatige Motive, die bei cover beschnitten würden: ganz zeigen */
.stack-card .media.fit-contain {
  background: var(--cream-2);
  padding: 14px;
}

.stack-card .media.fit-contain img {
  object-fit: contain;
  object-position: center;
}

.stack-card .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.5vw, 52px);
}

.stack-card .text .eyebrow { margin-bottom: 14px; }

.stack-card .text h3 {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 16px;
}

.stack-card .text p {
  font-size: clamp(16.5px, 1.6vw, 19.5px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
}

@media (min-width: 768px) {
  .stack { gap: 0; }

  .stack-card {
    position: sticky;
    /* Alle Karten pinnen am selben Punkt: die nächste gleitet exakt über
       die vorherige, keine mehrfachen Rundungen am oberen Rand */
    top: calc(var(--header-h) + 24px);
    height: min(640px, 78vh);
  }

  .stack-card:nth-child(1) { z-index: 1; }
  .stack-card:nth-child(2) { z-index: 2; }
  .stack-card:nth-child(3) { z-index: 3; }
  .stack-card:nth-child(4) { z-index: 4; }

  .stack-card + .stack-card { margin-top: 32px; }

  .stack::after { content: ''; height: 6vh; }
}

@media (max-width: 767px) {
  .stack { gap: 18px; }
  .stack-card { grid-template-columns: 1fr; }
  .stack-card .media { aspect-ratio: 4 / 3; order: -1; }
  .stack-card .media.fit-contain { aspect-ratio: 3 / 4; padding: 10px; }
}

/* --------------------------------------------------------------------------
   Preise
   -------------------------------------------------------------------------- */

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
}

.price-card h3 { font-size: 21px; margin-bottom: 4px; }

.price-card .desc { font-size: 15px; color: var(--muted); }

.price-card .amount {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--copper-dark);
  white-space: nowrap;
  flex: none;
}

.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
  margin: 26px auto 0;
}

.price-cta { text-align: center; margin-top: 24px; }

@media (max-width: 699px) {
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 479px) {
  .price-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .price-card .amount { white-space: normal; }
}

/* --------------------------------------------------------------------------
   Über Susanne
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 18px; }

.about-text p {
  font-size: clamp(16px, 1.7vw, 18.5px);
  color: var(--muted);
  max-width: 56ch;
}

.about-text p + p { margin-top: 14px; }

@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 0 auto; }
}

/* --------------------------------------------------------------------------
   Kontakt / Termin anfragen
   -------------------------------------------------------------------------- */

.contact { background: var(--cream); }

.wa-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--r-lg);
  background: var(--brown);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.wa-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
}

.wa-card p { color: rgba(255, 255, 255, 0.82); max-width: 46ch; font-size: 16.5px; }

.wa-card .btn {
  background: #fff;
  color: var(--brown);
  font-size: 17px;
  padding: 14px 26px;
}

.wa-card .btn:hover { background: var(--cream-2); transform: translateY(-2px); }

.contact-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.contact-tile {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.contact-tile .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}

.contact-tile .value { font-size: 17px; font-weight: 600; word-break: break-word; }

.contact-tile .hint { font-size: 14.5px; color: var(--muted); margin-top: 2px; }

@media (max-width: 767px) {
  .contact-tiles { grid-template-columns: 1fr; }
}

/* Aufklappbares E-Mail-Formular */

.mail-details {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
}

.mail-details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.mail-details summary::-webkit-details-marker { display: none; }

.mail-details summary .chev { transition: transform 0.3s ease; color: var(--copper); font-size: 20px; }

.mail-details[open] summary .chev { transform: rotate(180deg); }

.mail-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 24px 26px;
}

.mail-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 599px) {
  .mail-form .row { grid-template-columns: 1fr; }
}

.mail-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
}

.mail-form input,
.mail-form select,
.mail-form textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.mail-form textarea { resize: vertical; min-height: 110px; }

.mail-form input:focus-visible,
.mail-form select:focus-visible,
.mail-form textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}

.mail-form .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--muted);
}

.mail-form .consent input { width: 18px; height: 18px; margin-top: 2px; }

.mail-form .consent a { text-decoration: underline; }

/* --------------------------------------------------------------------------
   FAQ & Pflege
   -------------------------------------------------------------------------- */

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 600;
  color: var(--ink);
}

.faq-q .icon {
  flex: none;
  font-size: 26px;
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded='true'] .icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 4px 22px;
  font-size: 16.5px;
  color: var(--muted);
  max-width: 68ch;
}

.faq-a.open { display: block; }

.faq-a ul { margin: 8px 0 0; padding-left: 20px; }

.faq-a li + li { margin-top: 4px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  /* Grosser unterer Abstand, damit der schwebende WhatsApp-Button
     Impressum/Datenschutz nie verdeckt */
  padding: clamp(40px, 6vw, 60px) 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-grid .col p { font-size: 15px; color: var(--muted); margin-top: 4px; }

.footer-grid .col a.line {
  display: block;
  font-size: 15px;
  padding: 3px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
  align-content: start;
}

.footer-nav a { font-size: 15px; font-weight: 600; padding: 7px 0; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 14.5px;
  color: var(--muted);
}

.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 699px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Schwebender WhatsApp-Button
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 60px;
  height: 60px;
  padding: 0 17px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(18, 140, 126, 0.32);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float svg { flex: none; }

.wa-float-txt {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-size: 15.5px;
  font-weight: 600;
  transition: max-width 0.35s ease, opacity 0.25s ease, margin-left 0.35s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.4);
}

.wa-float:active { background: #18a94f; }

.wa-float:hover .wa-float-txt,
.wa-float:focus-visible .wa-float-txt {
  max-width: 160px;
  opacity: 1;
  margin-left: 10px;
}

.wa-float:focus-visible {
  outline: 2px solid #18a94f;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .wa-float { right: 16px; bottom: 16px; min-width: 56px; height: 56px; padding: 0 15px; }
  /* Auf Touch-Geräten kein Hover: Button bleibt rund, nur Icon */
  .wa-float .wa-float-txt { display: none; }
}

/* --------------------------------------------------------------------------
   Reveal-Animation & Reduced Motion
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.in { opacity: 1; transform: none; }

/* Fallback: ohne JS alles sichtbar */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* Kein scrollgebundener Stapel-Effekt – Karten fliessen normal */
  .stack-card { position: static !important; height: auto !important; min-height: min(640px, 78vh); }

  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

  .gallery-track,
  .gallery-item img,
  .offer-card,
  .contact-tile,
  .btn,
  .nav-toggle span,
  .faq-q .icon,
  .mail-details summary .chev,
  .wa-float,
  .wa-float-txt {
    transition: none !important;
  }

  .offer-card:hover,
  .contact-tile:hover,
  .btn-primary:hover,
  a.btn[href^="https://wa.me"]:hover,
  .wa-float:hover,
  .wa-float:focus-visible { transform: none; }

  .gallery-item button:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   Rechtliche Seiten (impressum.html / datenschutz.html)
   -------------------------------------------------------------------------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding-block: clamp(44px, 7vw, 80px);
}

.legal h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 24px; }

.legal h2 { font-size: clamp(21px, 2.6vw, 26px); margin: 32px 0 10px; }

.legal p, .legal address { font-size: 16.5px; color: var(--muted); font-style: normal; }

.legal p + p { margin-top: 10px; }

.legal a { text-decoration: underline; text-underline-offset: 3px; }

.legal .back { display: inline-block; margin-top: 36px; }
