/* ==========================================================================
   Tattoo Perfekt Style Schonungen — Designsystem V3
   Heller Rustikal-Hybrid: helles Holz als Grundfläche (Original-Logo wirkt
   nativ), dunkle Braunholz-Bänder für Hero/Motto/CTA/Footer.
   Zwei Farbkontexte über Custom Properties: hell (Standard) und .band (dunkel).
   ========================================================================== */

:root {
  /* Marke */
  --red: #a3232b;
  --red-bright: #c22e37;

  /* Heller Kontext (Standard): Tinte auf gewaschenem Holz */
  --fg: #241f19;
  --fg-soft: #5b5347;
  --line: rgba(36, 31, 25, 0.18);
  --surface: #f8f3e9;
  --surface-deep: #efe8da;
  --bg-fallback: #e8e1d3;
  --creme: #eee7d9;
  --frame: clamp(6px, 0.9vw, 14px);

  /* Dunkler Kontext (Werte für .band) */
  --band-bg: #171512;
  --band-fg: #f2efe9;
  --band-fg-soft: #b3aa9c;
  --band-line: rgba(242, 239, 233, 0.16);

  /* Typografie — Schoolbell bleibt dem Logo vorbehalten,
     Yellowtail trägt die roten Script-Akzente im Text */
  --font-display: "Abril Fatface", "Didot", serif;
  --font-hand: "Schoolbell", cursive;
  --font-script: "Yellowtail", cursive;
  --font-body: "Barlow", -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: min(1180px, 92vw);
  --section-y: clamp(4.5rem, 11vh, 8.5rem);
  --radius: 10px;

  /* Bewegung — einheitliche Motion-Tokens */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 0.18s;
  --dur-base: 0.3s;
  --dur-slow: 0.55s;
}

/* Dunkle Bänder: Kontext-Variablen umschalten */
.band {
  --fg: var(--band-fg);
  --fg-soft: var(--band-fg-soft);
  --line: var(--band-line);
  background: url("../images/textur-holz-braun.jpg") repeat;
  background-size: 512px;
  color: var(--fg);
  position: relative;
  isolation: isolate;
}

/* Abdunkelnde Lasur über der Braunholz-Textur, damit Text sicher lesbar ist */
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(15, 12, 9, 0.72);
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */

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

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

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--fg);
  background-color: var(--bg-fallback);
  /* Papier-Wash über der Holztextur: Maserung bleibt, Fläche wird ruhig,
     die Kachel-Wiederholung tritt zurück — Text sitzt sauber */
  background-image: linear-gradient(rgba(248, 243, 233, 0.55), rgba(248, 243, 233, 0.55)),
    url("../images/textur-holz-hell.jpg");
  background-size: auto, 546px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Statischer Passepartout-Rahmen im Creme des Headers: Header oben,
   Rahmen an den Seiten und unten fassen jede Seite wie ein Bild ein */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 95;
  border: solid var(--creme);
  border-width: 0 var(--frame) var(--frame);
  pointer-events: none;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red-bright);
}

::selection {
  background: var(--red);
  color: #f2efe9;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--red);
  color: #f2efe9;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

p {
  max-width: 65ch;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--fg-soft);
}

.muted {
  color: var(--fg-soft);
}

/* Kicker — kurzer roter Strich + Versal-Label über der Headline */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 1.1rem;
}

.kicker::before {
  content: "";
  flex-shrink: 0;
  width: 44px;
  height: 2px;
  background: var(--red);
}

/* Script-Akzent in Headlines (einzelne Wörter, rot) */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--red-bright);
  letter-spacing: 0;
  text-transform: none;
}

h1 .script,
h2 .script {
  font-size: 1.05em;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Layout-Helfer
   -------------------------------------------------------------------------- */

.container {
  width: var(--container);
  margin-inline: auto;
}

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

/* Folgesektion ohne eigenen Kopfabstand (hängt visuell an der vorigen) */
.section--flush {
  padding-top: 0;
}

/* Anker-Sprünge landen nicht unter dem Sticky-Header */
[id] {
  scroll-margin-top: 6rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.section-head :is(h1, h2) ~ p {
  margin-top: 1.2rem;
}

.narrow {
  max-width: 46rem;
}


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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--red);
  color: #f2efe9;
}

.btn-primary:hover {
  background: var(--red-bright);
  color: #f2efe9;
}

.btn-ghost {
  border-color: var(--fg);
  color: var(--fg);
}

.btn-ghost:hover {
  background: var(--fg);
  color: var(--surface);
}

.band .btn-ghost:hover {
  color: #171512;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   Header & Navigation — heller Holzgrund, echtes Logo
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--creme);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.9rem;
  transition: padding var(--dur-base) var(--ease);
}

.site-header.is-scrolled .header-inner {
  padding-block: 0.5rem;
}

/* Marke: Original-Logo als Bild + Ortszusatz wie im Logo der Kundin */
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  height: 44px;
  width: auto;
  transition: height var(--dur-base) var(--ease);
}

.site-header.is-scrolled .brand-logo {
  height: 36px;
}

.brand-city {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding-left: 3.2rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  list-style: none;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-soft);
  text-decoration: none;
  white-space: nowrap;
  padding-block: 0.4rem;
  background-image: linear-gradient(var(--red-bright), var(--red-bright));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: left bottom;
  transition: color var(--dur-base) var(--ease),
    background-size var(--dur-base) var(--ease);
}

.main-nav a:hover {
  color: var(--fg);
  background-size: 100% 2px;
}

.main-nav a[aria-current="page"] {
  color: var(--fg);
  background-size: 100% 2px;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
}

/* .main-nav a würde sonst Farbe/Underline des Buttons überschreiben */
.main-nav a.btn-primary {
  color: #f2efe9;
  background-image: none;
}

.main-nav a.btn-primary:hover {
  color: #f2efe9;
}

/* Hamburger — erst mobil sichtbar (responsive.css) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg);
  transition: transform var(--dur-base) var(--ease),
    opacity var(--dur-base) var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero (Startseite) — dunkles Band, Tattoo-Schriftzug + Freisteller
   -------------------------------------------------------------------------- */

.hero {
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    110% 100% at 22% 100%,
    rgba(163, 35, 43, 0.16),
    transparent 55%
  );
}

/* Spiegel-Komposition: Freisteller links, Text rechts — der Blick des
   Mannes führt zum Schriftzug. Quellreihenfolge bleibt Content zuerst. */
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.hero-content {
  grid-column: 2;
  grid-row: 1;
  padding-block: clamp(4rem, 10vh, 7rem);
}

/* „Tattoo"-Schriftzug als Wasserzeichen hinter der ganzen Hero-Bühne:
   liegt hinter Mann und Text (z-index -1, bleibt über der Band-Lasur) */
.hero-schriftzug {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 88%;
  max-width: 1150px;
  height: auto;
  margin: 0;
  z-index: -1;
  opacity: 0.32;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
}

.hero p {
  margin-top: 1.6rem;
}

.hero .btn-group {
  margin-top: 2.4rem;
}

.hero-mann {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  display: flex;
  justify-content: center;
}

.hero-mann img {
  width: min(420px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

/* Kontaktzeile direkt unter den Hero-Buttons */
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-block: 0.3rem;
  color: var(--fg-soft);
  text-decoration: none;
}

.hero-contact a:hover {
  color: var(--fg);
}

.hero-contact .icon {
  color: var(--red-bright);
}

/* Kleiner Seitenkopf für Unterseiten (hell) */
.page-head {
  padding-block: clamp(3.5rem, 8vh, 5.5rem) clamp(2.5rem, 6vh, 4rem);
  border-bottom: 1px solid var(--line);
}

.page-head h1 ~ p {
  margin-top: 1.4rem;
}

/* Seitenkopf mit Bild rechts (Über mich) */
.page-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Portrait mit eingebackener Feder-Kante (Alpha im WebP):
   kein Rahmen, kein Schatten — das Foto läuft weich in den Grund aus */
.portrait-foto {
  width: 100%;
  max-width: 320px;
  justify-self: end;
  filter: sepia(0.12) saturate(0.95);
}

/* --------------------------------------------------------------------------
   Marquee-Streifen — hell, Tinte auf Holz, rote Sterne
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1rem;
  /* solide Creme wie Header und Rahmen — eine Materialfamilie */
  background: var(--creme);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee-loop 36s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-soft);
  white-space: nowrap;
}

.marquee .icon {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--red);
  fill: currentColor;
  stroke: none;
}

/* --------------------------------------------------------------------------
   Icons (Inline-SVG)
   -------------------------------------------------------------------------- */

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 2.4rem;
  height: 2.4rem;
  stroke-width: 1.5;
  color: var(--red-bright);
}

/* --------------------------------------------------------------------------
   Werte / Prinzipien (typografische Spalten, keine Boxen)
   -------------------------------------------------------------------------- */

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

.value {
  border-top: 2px solid var(--red);
  padding-top: 1.6rem;
}

.value h3 {
  margin-bottom: 0.7rem;
}

.value p {
  color: var(--fg-soft);
  font-size: 0.98rem;
}

.value .figure {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.3rem);
  list-style: none;
}

.gallery-grid--feature {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item--feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: var(--surface-deep);
  box-shadow: 0 2px 8px rgba(36, 31, 25, 0.14);
}

/* Querformat-Fotos (Studio) in der Lightbox-Galerie */
.gallery-item--wide {
  aspect-ratio: 16 / 9;
}

.gallery-item a {
  display: block;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease),
    filter var(--dur-slow) var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.045);
  filter: brightness(1.06);
}

.gallery-item .tag {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2efe9;
  background: rgba(23, 21, 18, 0.82);
  border-radius: 3px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease);
  pointer-events: none;
}

.gallery-item:hover .tag,
.gallery-item:focus-within .tag {
  opacity: 1;
  transform: translateY(0);
}

/* Filterleiste */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.filter-btn {
  min-height: 44px;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease),
    background-color var(--dur-base) var(--ease);
}

.filter-btn:hover {
  color: var(--fg);
  border-color: var(--fg);
}

.filter-btn:active {
  transform: scale(0.97);
}

.filter-btn[aria-pressed="true"] {
  color: #f2efe9;
  background: var(--red);
  border-color: var(--red);
}

/* Lightbox — bleibt dunkel, die Bilder brauchen die schwarze Bühne */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 9, 7, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(88vw, 900px);
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #b3aa9c;
  letter-spacing: 0.06em;
  text-align: center;
}

.lightbox-counter {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #d5cec2;
}

.lightbox-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #f2efe9;
  background: rgba(242, 239, 233, 0.08);
  border: 1px solid rgba(242, 239, 233, 0.16);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease);
}

.lightbox-btn:hover {
  background: rgba(242, 239, 233, 0.18);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-prev {
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* --------------------------------------------------------------------------
   Zitat / Motto — dunkles Band
   -------------------------------------------------------------------------- */

.motto {
  text-align: center;
}

.motto blockquote p {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.3;
  color: var(--fg);
  max-width: none;
}

.motto blockquote p .accent {
  color: var(--red-bright);
}

.motto figcaption {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* Flourish — Stern-Ornament (Flash-Sheet-Ästhetik) */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  color: var(--red-bright);
}

.flourish::before,
.flourish::after {
  content: "";
  height: 3px;
  width: min(110px, 18vw);
  border-block: 1px solid var(--line);
}

.flourish .icon {
  width: 0.85rem;
  height: 0.85rem;
  fill: currentColor;
  stroke: none;
}

/* --------------------------------------------------------------------------
   Split-Sections (Text + Bild)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(36, 31, 25, 0.18);
}

.split-media > :nth-child(2) {
  transform: translateY(2rem);
}

/* Volle Breite für Querformat-Fotos (Studio) */
.split-media--stack {
  grid-template-columns: 1fr;
}

.split-media--stack > :nth-child(2) {
  transform: translateX(2rem);
}

.split .btn-group {
  margin-top: 2rem;
}

.split-text p + p {
  margin-top: 1.1rem;
}

/* --------------------------------------------------------------------------
   Schritte (So entsteht dein Tattoo)
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  counter-reset: step;
}

.step {
  counter-increment: step;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red-bright);
  display: block;
  margin-bottom: 0.8rem;
}

.step h3 {
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--fg-soft);
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Karten (Pflegehinweise, Studio) — Papier auf Holz
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease);
}

.card:hover {
  border-color: var(--fg-soft);
  transform: translateY(-3px);
}

.card .icon-lg {
  margin-bottom: 1.2rem;
}

.card h3 {
  margin-bottom: 0.7rem;
}

.card p {
  color: var(--fg-soft);
  font-size: 0.98rem;
}

/* Hinweisbox */
.note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--fg-soft);
  font-size: 0.98rem;
}

.note .icon {
  color: var(--red-bright);
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   FAQ (Accordion, nativ <details>)
   -------------------------------------------------------------------------- */

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  transition: color var(--dur-base) var(--ease);
}

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

.faq-item summary:hover {
  color: var(--red-bright);
}

.faq-item summary .icon {
  color: var(--red-bright);
  transition: transform var(--dur-base) var(--ease);
}

.faq-item[open] summary .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 1.8rem;
  color: var(--fg-soft);
  max-width: 60ch;
}

.faq-answer p + p {
  margin-top: 0.8rem;
}

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.6rem;
}

.contact-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.contact-list .icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--red-bright);
  margin-top: 0.25rem;
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 0.2rem;
}

.contact-list a {
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-list a:hover {
  color: var(--red-bright);
}

.badge-new {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2efe9;
  background: var(--red);
  border-radius: 3px;
  vertical-align: middle;
}

/* DSGVO-Zwei-Klick-Einbindungen (Google Maps / Google-Bewertungen):
   Inhalt lädt erst nach aktiver Bestätigung, kein Autoload */
.consent-embed {
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.consent-embed-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 320px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--fg-soft);
}

.consent-embed-body .icon-lg {
  color: var(--red-bright);
}

.consent-embed-body strong {
  color: var(--fg);
  font-size: 1.05rem;
}

.consent-embed-hint {
  font-size: 0.88rem;
  max-width: 46ch;
}

.consent-embed.is-loaded .consent-embed-body {
  display: block;
  min-height: 0;
  padding: 0;
}

.consent-embed-frame {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* Formular — Papier-Karte */
.contact-form {
  display: grid;
  gap: 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 0.5rem;
}

.form-field label .optional {
  text-transform: none;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  background: #fffcf5;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color var(--dur-base) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red-bright);
}

.form-field textarea {
  resize: vertical;
  min-height: 9rem;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--fg-soft);
}

/* Inline-Validierung */
.field-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: #8f1f27;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #a3232b;
}

.form-field.has-error .field-error {
  display: block;
}

/* --------------------------------------------------------------------------
   CTA-Band — dunkel
   -------------------------------------------------------------------------- */

.cta-band {
  text-align: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    70% 120% at 50% 130%,
    rgba(194, 46, 55, 0.14),
    transparent 65%
  );
}

.cta-band .section-head {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-band .btn-group {
  justify-content: center;
}

.cta-band .contact-line {
  max-width: none;
  margin-top: 2rem;
  color: var(--fg-soft);
  font-size: 0.95rem;
}

.cta-band .contact-line a {
  color: var(--fg);
}

/* --------------------------------------------------------------------------
   Footer — dunkles Braunholz, rotes PS-Monogramm
   -------------------------------------------------------------------------- */

.site-footer {
  padding-top: clamp(3rem, 7vh, 5rem);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}

.brand--footer {
  gap: 0.6rem;
}

.brand-mono {
  width: 64px;
  height: auto;
}

.brand-script {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--fg);
  line-height: 1;
}

.brand--footer .brand-city {
  padding-left: 0;
  color: var(--fg-soft);
}

.footer-brand p {
  margin-top: 1.2rem;
  color: var(--fg-soft);
  font-size: 0.95rem;
  max-width: 30ch;
}

.footer-grid h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 1.1rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  display: inline-block;
  padding-block: 0.2rem;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.98rem;
}

/* Der Brand-Link bleibt Flex-Spalte: „Schonungen" steht unter „Perfekt Style" */
.footer-grid a.brand--footer {
  display: flex;
  padding-block: 0;
}

.footer-grid a:hover {
  color: var(--red-bright);
}

.footer-grid li {
  color: var(--fg-soft);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-social .icon {
  color: var(--red-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  /* rechts Platz lassen, damit der WhatsApp-Button keine Links verdeckt */
  padding-right: 5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--fg-soft);
}

.footer-bottom a {
  color: var(--fg-soft);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp-Button
   -------------------------------------------------------------------------- */

.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #1a9c4d;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(20, 15, 10, 0.35);
  transition: transform var(--dur-base) var(--ease),
    background-color var(--dur-base) var(--ease);
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1fb257;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --------------------------------------------------------------------------
   Rechtstexte (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.legal h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 2.8rem;
  margin-bottom: 0.8rem;
}

.legal h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.legal p,
.legal ul {
  color: var(--fg-soft);
  margin-bottom: 0.9rem;
}

.legal ul {
  padding-left: 1.2rem;
}

/* --------------------------------------------------------------------------
   Diverses
   -------------------------------------------------------------------------- */

.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}
