/* ==========================================================================
   SCHÄFER STEINTEPPICHE — Stylesheet
   Palette aus dem Material selbst abgeleitet: Anthrazit-Splitt, Kupfer/Terrakotta-
   Splitt, warmer Sandstein-Hintergrund und das Gold der Wortmarke.
   ========================================================================== */

:root{
  /* Farben */
  --ink:        #17161a;
  --ink-soft:   #221f1c;
  --ink-line:   #38352f;
  --stone:      #6f6a62;
  --stone-light:#a49d8f;
  --sand:       #efe8dc;
  --sand-dark:  #e2d8c4;
  --paper:      #faf8f3;
  --copper:     #a8623a;
  --copper-dark:#8a4e2d;
  --gold:       #c9a24a;
  --line:       #ddd3bf;
  --error:      #a83a2b;
  --ok:         #4c7a4f;

  /* Typografie */
  --font-display: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Sonstiges */
  --radius: 3px;
  --shadow-soft: 0 1px 2px rgba(23,22,26,.06), 0 8px 24px -12px rgba(23,22,26,.25);
  --shadow-strong: 0 20px 60px -20px rgba(23,22,26,.5);
  --container: 1180px;
  --speed: .25s;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 73px; /* Platz für den jetzt fest positionierten Header */
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p,figure{ margin: 0; }
button{ font: inherit; cursor: pointer; }
input, textarea, select{ font: inherit; }

/* visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--copper); color: #fff; padding: .8em 1.2em; border-radius: 0 0 4px 0;
}
.skip-link:focus{ left: 0; }

.container{ max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
@media (max-width: 640px){ .container{ padding-inline: 18px; } }

section{ position: relative; }

.eyebrow{
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper);
}
.on-dark .eyebrow{ color: var(--gold); }
.eyebrow::before{
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}

h1, .h1{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.01em;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}
h2, .h2{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.005em;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
}
h3, .h3{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.22;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}
.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--stone);
  line-height: 1.65;
  max-width: 54ch;
}
.on-dark .lede{ color: #c9c4b8; }
.section-head{ max-width: 640px; margin-bottom: 34px; }
.material-intro{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 40px;
}
.material-intro p{
  color: var(--stone); font-size: 1rem; line-height: 1.65; margin: 0;
}
@media (max-width: 900px){
  .material-intro{ grid-template-columns: 1fr; gap: 14px; }
}
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head > .eyebrow{ margin-bottom: 14px; }
.section-head > h2{ margin-top: 10px; }
.section-head > .lede{ margin-top: 16px; }
.wide-note{
  max-width: 920px;
  margin-top: 22px;
  color: var(--stone); font-size: .96rem; line-height: 1.7;
}
.on-dark .wide-note{ color: #a29c8c; }
.section-head.center .lede{ margin-inline: auto; }

.on-dark{ background: var(--ink); color: #f2efe7; }
.on-sand{ background: var(--sand); }
.on-paper{ background: var(--paper); }

.pad{ padding-block: 68px; }
@media (max-width: 780px){ .pad{ padding-block: 52px; } }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.7em;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .96rem;
  border: 1px solid transparent;
  transition: transform var(--speed) ease, background var(--speed) ease, border-color var(--speed) ease, box-shadow var(--speed) ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(168,98,58,.55);
}
.btn-primary:hover{ background: var(--copper-dark); transform: translateY(-1px); }
.btn-primary:active{ background: var(--copper-dark); transform: translateY(0) scale(.98); }
.btn-ghost{
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }
.btn-ghost:active{ background: rgba(255,255,255,.16); }
.on-paper .btn-ghost, .on-sand .btn-ghost{ border-color: var(--ink); }
.on-paper .btn-ghost:hover, .on-sand .btn-ghost:hover{ background: rgba(23,22,26,.06); }
.on-paper .btn-ghost:active, .on-sand .btn-ghost:active{ background: rgba(23,22,26,.12); }
.btn-block{ width: 100%; }
.btn-lg{ padding: 1.1em 2.1em; font-size: 1.02rem; }
.btn[disabled]{ opacity: .55; cursor: not-allowed; transform: none !important; }

.btn-icon{ width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(250,248,243,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--speed) ease;
}
.site-header.is-scrolled{ box-shadow: 0 6px 24px -14px rgba(23,22,26,.35); }
.site-header .container{
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 12px; flex: none; }
.brand img.wordmark-only{ height: 62px; width: auto; }
.brand:focus-visible{ outline-offset: 6px; }

.nav-links{ display: flex; align-items: center; gap: 30px; }
.nav-links a{
  font-size: .93rem; font-weight: 600; color: var(--ink);
  position: relative; padding-block: 4px;
}
.nav-links a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--copper); transition: right var(--speed) ease;
}
.nav-links a:hover::after{ right: 0; }

.header-right{ display: flex; align-items: center; gap: 18px; }
.header-phone{ display: flex; flex-direction: column; line-height: 1.2; font-size: .86rem; text-align: right; }
.header-phone a{ font-weight: 700; font-size: .98rem; color: var(--ink); }
.header-phone span{ color: var(--stone); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; }

.nav-toggle{
  display: none; background: none; border: none; padding: 14px; margin: -14px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 900px){
  .nav-links{
    position: fixed; inset: 72px 0 0 0; height: calc(100dvh - 72px);
    background: var(--paper);
    flex-direction: column; justify-content: flex-start; padding: 36px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--speed) ease;
    overflow-y: auto;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ width: 100%; padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links .btn{ margin-top: 16px; }
  .header-phone{ display: none; }
  .nav-toggle{ display: flex; }
  .brand img.wordmark-only{ height: 40px; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: calc(100vh - 73px);
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; background: #000; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(15,14,16,.94) 0%, rgba(15,14,16,.62) 38%, rgba(15,14,16,.28) 68%, rgba(15,14,16,.5) 100%);
}
.hero-content{ position: relative; z-index: 1; padding-block: 96px 64px; width: 100%; }
.hero-logo-mark{
  position: absolute;
  top: 50%;
  right: 4.5%;
  transform: translateY(-53%);
  z-index: 1;
  width: clamp(270px, 28vw, 480px);
  height: auto;
  opacity: .98;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
}
@media (max-width: 1100px){ .hero-logo-mark{ width: clamp(200px, 24vw, 340px); right: 3%; } }
@media (max-width: 780px){ .hero-logo-mark{ display: none; } }
.hero h1{ margin-top: 18px; }
.hero .lede{ color: #ded8c9; margin-top: 22px; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-ctas .btn{ padding: .68em 1.25em; font-size: .86rem; }
.hero-ctas .btn-ghost{ border-color: rgba(255,255,255,.55); color: #fff; }
.hero-ctas .btn-ghost:hover{ background: rgba(255,255,255,.12); }

.hero-facts{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 36px;
  max-width: 800px;
}
.hero-facts div{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.hero-facts .ic{ width: 24px; height: 24px; color: var(--gold); display: block; margin: 0 auto 8px; }
.hero-facts strong{ display: block; font-family: var(--font-display); font-size: .8rem; line-height: 1.25; }
@media (max-width: 900px){
  .hero-facts{ grid-template-columns: repeat(2, 1fr); max-width: 400px; }
}
@media (max-width: 560px){
  .hero-facts{ grid-template-columns: 1fr; max-width: 260px; }
  .hero-content{ padding-block: 100px 50px; }
}


/* ---------- Vorteile / Benefit grid ---------- */
.benefit-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--stone-light);
  border: 1px solid var(--stone-light);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 34px 6px rgba(23,22,26,.22);
}
.benefit-card{
  background: var(--sand-dark);
  padding: 28px 26px;
}
.benefit-card .ic{
  width: 36px; height: 36px; color: var(--copper); margin-bottom: 16px;
}
.benefit-card h3{ margin-bottom: 10px; }
.benefit-card p{ color: var(--stone); font-size: .96rem; }
@media (max-width: 900px){ .benefit-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .benefit-grid{ grid-template-columns: 1fr; } }

/* ---------- Anwendungsbereiche ---------- */
.area-grid{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.area-card{
  display: block; position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--ink-line);
}
.area-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.area-card:hover img{ transform: scale(1.06); }
.area-card::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,14,16,.92) 0%, rgba(15,14,16,.15) 55%, rgba(15,14,16,.1) 100%);
}
.area-card .label{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 18px 16px;
}
.area-card .label span{ font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; }
@media (max-width: 980px){ .area-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px){ .area-grid{ grid-template-columns: repeat(2,1fr); } }

/* ---------- Material swatches ---------- */
.material-strip{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.material-card{
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--stone-light); background: var(--sand-dark);
  box-shadow: 0 0 0 1px transparent, 0 20px 34px -16px rgba(23,22,26,.35), 0 8px 14px -8px rgba(23,22,26,.2);
  transition: box-shadow .3s ease;
}
.material-card .swatch{ aspect-ratio: 4/3; overflow: hidden; }
.material-card .swatch img{ width: 100%; height: 100%; object-fit: cover; }
.material-card .cap{ padding: 16px 18px; }
.material-card .cap strong{ display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 3px; }
.material-card .cap span{ color: var(--stone); font-size: .85rem; }
@media (max-width: 900px){ .material-strip{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .material-strip{ grid-template-columns: 1fr; } }

.material-card.tone-anthrazit:hover{
  box-shadow: 0 0 0 2px rgba(58,56,52,.5), 0 0 26px 6px rgba(58,56,52,.4), 0 0 52px 14px rgba(58,56,52,.25), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-anthrazit:active{
  box-shadow: 0 0 0 2px rgba(58,56,52,.5), 0 0 26px 6px rgba(58,56,52,.4), 0 0 52px 14px rgba(58,56,52,.25), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-sandbeige:hover{
  box-shadow: 0 0 0 2px rgba(196,172,138,.55), 0 0 26px 6px rgba(196,172,138,.45), 0 0 52px 14px rgba(196,172,138,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-sandbeige:active{
  box-shadow: 0 0 0 2px rgba(196,172,138,.55), 0 0 26px 6px rgba(196,172,138,.45), 0 0 52px 14px rgba(196,172,138,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-tiefschwarz:hover{
  box-shadow: 0 0 0 2px rgba(20,19,18,.6), 0 0 26px 6px rgba(20,19,18,.5), 0 0 52px 14px rgba(20,19,18,.32), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-tiefschwarz:active{
  box-shadow: 0 0 0 2px rgba(20,19,18,.6), 0 0 26px 6px rgba(20,19,18,.5), 0 0 52px 14px rgba(20,19,18,.32), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-kristallweiss:hover{
  box-shadow: 0 0 0 2px rgba(210,208,200,.65), 0 0 26px 6px rgba(210,208,200,.5), 0 0 52px 14px rgba(210,208,200,.3), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-kristallweiss:active{
  box-shadow: 0 0 0 2px rgba(210,208,200,.65), 0 0 26px 6px rgba(210,208,200,.5), 0 0 52px 14px rgba(210,208,200,.3), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-goldbraun:hover{
  box-shadow: 0 0 0 2px rgba(184,140,74,.55), 0 0 26px 6px rgba(184,140,74,.45), 0 0 52px 14px rgba(184,140,74,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-goldbraun:active{
  box-shadow: 0 0 0 2px rgba(184,140,74,.55), 0 0 26px 6px rgba(184,140,74,.45), 0 0 52px 14px rgba(184,140,74,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-champagner:hover{
  box-shadow: 0 0 0 2px rgba(201,186,145,.55), 0 0 26px 6px rgba(201,186,145,.45), 0 0 52px 14px rgba(201,186,145,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-champagner:active{
  box-shadow: 0 0 0 2px rgba(201,186,145,.55), 0 0 26px 6px rgba(201,186,145,.45), 0 0 52px 14px rgba(201,186,145,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-nussbraun:hover{
  box-shadow: 0 0 0 2px rgba(140,96,58,.55), 0 0 26px 6px rgba(140,96,58,.45), 0 0 52px 14px rgba(140,96,58,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-nussbraun:active{
  box-shadow: 0 0 0 2px rgba(140,96,58,.55), 0 0 26px 6px rgba(140,96,58,.45), 0 0 52px 14px rgba(140,96,58,.28), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-mahagoni:hover{
  box-shadow: 0 0 0 2px rgba(93,58,38,.6), 0 0 26px 6px rgba(93,58,38,.5), 0 0 52px 14px rgba(93,58,38,.3), 0 18px 30px -14px rgba(23,22,26,.35);
}
.material-card.tone-mahagoni:active{
  box-shadow: 0 0 0 2px rgba(93,58,38,.6), 0 0 26px 6px rgba(93,58,38,.5), 0 0 52px 14px rgba(93,58,38,.3), 0 18px 30px -14px rgba(23,22,26,.35);
}

/* ---------- Ablauf / Prozess ---------- */
.process-list{ display: grid; gap: 0; }
.process-item{
  display: grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding-block: 34px;
  border-top: 1px solid var(--ink-line);
}
.process-item:last-child{ border-bottom: 1px solid var(--ink-line); }
.process-num{
  font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); opacity: .85; line-height: 1;
}
.process-body{
  display: flex; flex-wrap: wrap; align-items: center; gap: 36px;
}
.process-text{
  flex: 1 1 320px; min-height: 300px;
  display: flex; flex-direction: column; justify-content: center;
}
.process-text h3{ margin-bottom: 12px; color: #fff; }
.process-text p{ color: #c9c4b8; max-width: 60ch; line-height: 1.7; font-size: 1rem; }
.process-thumb{
  flex: 0 0 330px; width: 330px; height: 300px; border-radius: var(--radius);
  border: 1px solid var(--ink-line); overflow: hidden;
}
.process-thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }
/* abwechselnde Seite: gerade Schritte zeigen das Bild links, Text rechts */
.process-item:nth-child(even) .process-thumb{ order: -1; }
@media (max-width: 640px){
  .process-item{ grid-template-columns: 1fr; gap: 8px; }
  .process-body{ gap: 16px; }
  .process-thumb{ flex-basis: 100%; width: 100%; height: 220px; order: 0 !important; }
}

/* ---------- Vorher/Nachher ---------- */
.compare-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 460px; margin-inline: auto;
}
.compare-card{ position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.compare-card img{ display: block; width: 100%; height: 260px; object-fit: cover; }
.compare-tag{
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(23,22,26,.82); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 7px 12px; border-radius: 2px;
}
.compare-card.after .compare-tag{ background: var(--copper); }
.compare-feature{
  margin-top: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  max-width: 240px; margin-inline: auto;
}
.compare-feature img{ width: 100%; height: auto; display: block; }
@media (max-width: 640px){
  .compare-grid{ grid-template-columns: 1fr 1fr; max-width: 300px; gap: 10px; }
  .compare-card img{ height: 190px; }
}

/* ---------- Materialvergleich ---------- */
.pad-compare{ padding-block: 36px; }
.section-head.compact{ margin-bottom: 20px; }
.section-head.compact .lede{ margin-top: 8px; }
.compare-cards-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 1160px; margin-inline: auto;
  align-items: start;
}
.compare-card-v2{
  border: 1px solid var(--stone-light); border-radius: 20px; overflow: hidden;
  background: var(--sand-dark); display: flex; flex-direction: column; padding-bottom: 6px;
  box-shadow: 0 30px 46px -14px rgba(23,22,26,.4), 0 10px 18px -8px rgba(23,22,26,.22);
  transition: box-shadow .35s ease;
}
.compare-card-v2:hover{
  box-shadow:
    0 0 0 2px rgba(23,22,26,.14),
    0 0 30px 6px rgba(23,22,26,.24),
    0 0 60px 16px rgba(23,22,26,.16),
    0 20px 40px -14px rgba(23,22,26,.35);
}
.compare-card-v2.featured{
  border-color: var(--copper);
  box-shadow: 0 0 0 2px rgba(168,98,58,.18), 0 30px 46px -14px rgba(23,22,26,.4), 0 10px 18px -8px rgba(23,22,26,.22);
}
.compare-card-v2.featured:hover{
  box-shadow:
    0 0 0 2px rgba(201,162,74,.55),
    0 0 30px 6px rgba(201,162,74,.55),
    0 0 60px 16px rgba(233,157,62,.4),
    0 20px 40px -14px rgba(23,22,26,.35);
}
.cc-title{
  padding: 14px 16px 10px; font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  text-align: center;
}
.compare-card-v2.featured .cc-title{ color: var(--copper-dark); }
.cc-media{
  position: relative;
  height: 0; padding-top: 100%; /* erzwingt ein Quadrat, ohne aspect-ratio zu nutzen */
  overflow: hidden; border-radius: 12px;
  margin: 0 14px 12px;
}
.cc-media img{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.compare-card-v2:hover .cc-media img{ transform: scale(1.05); }
.cc-metrics{ padding: 0 16px 14px; }
.cc-metric{ margin-bottom: 9px; }
.cc-metric:last-child{ margin-bottom: 0; }
.cc-metric-label{
  display: flex; justify-content: space-between; gap: 10px;
  font-size: .72rem; font-weight: 600; margin-bottom: 4px; color: var(--ink);
}
.cc-metric-track{ height: 5px; border-radius: 4px; background: var(--line); overflow: hidden; }
.cc-metric-fill{ height: 100%; border-radius: 4px; background: var(--stone); }
.cc-metric-fill.gold{ background: linear-gradient(90deg, var(--copper), var(--gold)); }

@media (max-width: 900px){ .compare-cards-grid{ grid-template-columns: repeat(2,1fr); max-width: 560px; } }
@media (max-width: 560px){ .compare-cards-grid{ grid-template-columns: 1fr; } }

/* ---------- Vorher/Nachher-Regler (interaktiver Slider) ---------- */
.ba-intro{
  text-align: center; max-width: 480px; margin: 20px auto 0;
  font-weight: 400; color: var(--stone);
}
.ba-slider{ max-width: 480px; margin: 20px auto 0; }
.ba-media{
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--sand); user-select: none;
}
.ba-before{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after-wrap{
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba-after-wrap img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-line{
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.18);
  transform: translateX(-1px); pointer-events: none;
}
.ba-sparkle{
  position: absolute; z-index: 5; pointer-events: none;
  background: radial-gradient(circle, #ffffff 0%, var(--gold) 55%, transparent 72%);
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  filter: drop-shadow(0 0 3px rgba(255,255,255,.95)) drop-shadow(0 0 7px rgba(201,162,74,.75));
  animation: baSparklePop .45s ease-out forwards;
  transform-origin: center;
}
@keyframes baSparklePop{
  0%   { opacity: 0;   transform: translateY(0)    scale(.15) rotate(var(--rot, 0deg)); }
  15%  { opacity: 1;   transform: translateY(-8px)  scale(1.1) rotate(var(--rot, 0deg)); }
  100% { opacity: 0;   transform: translateY(-46px) scale(.2)  rotate(var(--rot, 0deg)); }
}
@media (prefers-reduced-motion: reduce){
  .ba-sparkle{ display: none; }
}
.ba-control{ display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.ba-label{
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--stone); flex: none;
}
.ba-range{
  flex: 1; -webkit-appearance: none; appearance: none; height: 4px; border-radius: 4px;
  background: var(--line); outline: none; cursor: pointer;
}
.ba-range::-webkit-slider-thumb{
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--copper); border: 3px solid #fff; box-shadow: var(--shadow-soft); cursor: pointer;
}
.ba-range::-moz-range-thumb{
  width: 22px; height: 22px; border-radius: 50%; background: var(--copper);
  border: 3px solid #fff; box-shadow: var(--shadow-soft); cursor: pointer;
}

/* ---------- Systemaufbau ---------- */
.system-row{
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.system-media{ position: relative; text-align: center; }
.system-media img{ width: 100%; max-width: 420px; height: auto; display: block; margin: 0 auto; }
.system-text h2{ margin-top: 22px; }
.system-text .lede{ margin-top: 14px; }
.system-steps{
  list-style: none; margin: 26px 0 0; padding: 0;
  counter-reset: sysstep;
}
.system-steps li{
  position: relative; padding-left: 40px; margin-bottom: 18px;
  counter-increment: sysstep;
  border-radius: 10px;
  padding-top: 6px; padding-bottom: 6px; padding-right: 6px;
  margin-left: -6px;
  transition: background-color .25s ease;
}
.system-steps li:last-child{ margin-bottom: 0; }
.system-steps li::before{
  content: counter(sysstep);
  position: absolute; left: 0; top: 7px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--copper); color: #fff;
  font-family: var(--font-display); font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .25s ease;
}
.system-steps strong{ display: block; font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 3px; }
.system-steps span{ color: var(--stone); font-size: .92rem; line-height: 1.5; }
.system-note{
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--stone); font-size: .94rem; line-height: 1.65;
}
.system-steps li:hover{ background: rgba(168,98,58,.08); cursor: default; }
.system-steps li:hover::before{
  box-shadow: 0 0 0 4px rgba(168,98,58,.22);
}

.system-marker{
  position: absolute; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--copper); color: #fff;
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(23,22,26,.35);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.system-marker.is-active{
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,162,74,.35), 0 0 22px 4px rgba(201,162,74,.55);
}

@media (max-width: 900px){
  .system-row{ grid-template-columns: 1fr; gap: 30px; }
  .system-media img{ max-width: 260px; }
}

/* ---------- Signature (Handwerk mit Namen) ---------- */
.signature-row{
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start;
}
.signature-text .eyebrow{ margin-bottom: 14px; }
.signature-text h2{ margin-bottom: 16px; }
.signature-text .lede{ margin-bottom: 18px; }
.signature-text p{
  color: #c9c4b8; margin-bottom: 14px; font-size: .98rem; line-height: 1.65;
}
.signature-text p:last-child{ margin-bottom: 0; }
.signature-media{
  position: relative; height: 0; padding-top: 133%;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--ink-line);
}
.signature-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px){
  .signature-row{ grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Galerie: endlos swipebares Karussell ---------- */
.gallery-carousel{ position: relative; }
.gallery-track{
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar{ display: none; }
.gallery-item{
  flex: 0 0 auto; width: 260px; aspect-ratio: 4/5;
  scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--sand);
  margin: 0;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-arrow{
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: background var(--speed) ease;
}
.gallery-arrow:hover{ background: var(--sand); }
.gallery-arrow svg{ width: 20px; height: 20px; }
.gallery-prev{ left: -8px; }
.gallery-next{ right: -8px; }
@media (max-width: 900px){
  .gallery-arrow{ display: none; }
}
@media (max-width: 640px){
  .gallery-item{ width: 200px; }
}

/* ---------- Vertrauen / Versprechen ---------- */
.promise-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.promise-card{ padding: 8px 4px; }
.promise-card .ic{ width: 34px; height: 34px; color: var(--copper); margin-bottom: 16px; }
.promise-card h3{ margin-bottom: 8px; font-size: 1.1rem; }
.promise-card p{ color: var(--stone); font-size: .92rem; }
@media (max-width: 900px){ .promise-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .promise-grid{ grid-template-columns: 1fr; } }

/* ---------- CTA Banner ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--copper-dark), var(--copper) 60%, #b8734a);
  color: #fff; padding-block: 64px;
}
.cta-band h2{ color: #fff; }
.cta-band .lede{ color: #fbe9dd; }
.cta-band .btn-primary{ background: #17161a; box-shadow: 0 12px 26px -10px rgba(0,0,0,.5); }
.cta-band .btn-primary:hover{ background: #000; }
.cta-band .btn-ghost{ border-color: rgba(255,255,255,.6); color: #fff; }
.cta-band .actions{ margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }

.offer-block{
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center;
}
.offer-card-stage{ display: flex; justify-content: center; perspective: 1300px; }
.offer-card{
  position: relative; width: 260px; height: 164px;
  transform-style: preserve-3d;
  animation: offerSpin 10s linear infinite;
}
@keyframes offerSpin{
  from{ transform: rotateY(0deg); }
  to{ transform: rotateY(360deg); }
}
.offer-face{
  position: absolute; inset: 0; border-radius: 14px; backface-visibility: hidden;
  display: flex; flex-direction: column; justify-content: center; padding: 24px 26px;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.14);
}
.offer-face.front{
  background: linear-gradient(135deg, var(--ink) 0%, #2a2722 55%, var(--copper-dark) 130%);
  color: #fff;
}
.offer-face.back{
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 130%);
  color: #201a12;
  transform: rotateY(180deg);
}
.offer-eyebrow{
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; margin-bottom: 8px;
}
.offer-face strong{
  font-family: var(--font-display); font-size: 1.22rem; line-height: 1.22; margin-bottom: 6px;
}
.offer-sub{ font-size: .8rem; opacity: .9; }
@media (prefers-reduced-motion: reduce){
  .offer-card{ animation: none; }
}
@media (max-width: 900px){
  .offer-block{ grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .cta-band .actions{ justify-content: center; }
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: #cfc9ba; padding-block: 44px 20px; }
.footer-grid{
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 32px;
  padding-bottom: 30px; border-bottom: 1px solid var(--ink-line);
}
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand .footer-wordmark{ height: 38px; }
.footer-brand p{ color: var(--stone-light); font-size: .92rem; max-width: 34ch; }
.footer-col h4{
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem;
  color: var(--gold); margin-bottom: 12px; font-weight: 700;
}
.footer-col li{ margin-bottom: 8px; }
.footer-col a{ font-size: .93rem; color: #cfc9ba; }
.footer-col a:hover{ color: #fff; }
.footer-bottom{
  padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: var(--stone-light);
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 900;
  max-width: 560px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow-strong);
  padding: 22px 24px;
  transform: translateY(140%);
  transition: transform .4s ease;
}
.cookie-banner.is-visible{ transform: translateY(0); }
.cookie-banner h3{ font-size: 1.02rem; margin-bottom: 8px; }
.cookie-banner p{ font-size: .87rem; color: var(--stone); line-height: 1.55; }
.cookie-banner p a{ text-decoration: underline; color: var(--ink); }
.cookie-actions{ display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.cookie-actions .btn{ padding: .7em 1.3em; font-size: .88rem; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.center-text{ text-align: center; }
.mt-lg{ margin-top: 38px; }
.small-print{ font-size: .82rem; color: var(--stone); }
.badge-row{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: #ded8c9;
  border: 1px solid rgba(255,255,255,.25); border-radius: 30px; padding: 7px 14px;
}
.badge svg{ width: 14px; height: 14px; color: var(--gold); }

/* ---------- Anfrage / Multi-step form ---------- */
.quiz-hero{
  background: var(--ink); color: #fff;
  padding-block: 128px 44px;
}
.quiz-hero .eyebrow{ color: var(--gold); }
.quiz-hero h1{ font-size: clamp(2rem, 4vw, 2.9rem); margin-top: 14px; max-width: 20ch; }
.quiz-hero .lede{ color: #c9c4b8; margin-top: 14px; }

.quiz-wrap{ padding-block: 0 110px; }
.quiz-card{
  max-width: 760px; margin: -54px auto 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-strong);
  padding: 44px 46px 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px){ .quiz-card{ padding: 30px 20px 26px; margin-top: -34px; } }

.quiz-progress{ margin-bottom: 34px; }
.quiz-progress-track{
  height: 4px; border-radius: 4px; background: var(--line); overflow: hidden;
}
.quiz-progress-fill{
  height: 100%; background: var(--copper); width: 20%;
  transition: width .35s ease;
}
.quiz-progress-label{
  display: flex; justify-content: space-between; margin-top: 10px;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); font-weight: 700;
}

.quiz-step{ display: none; }
.quiz-step.is-active{ display: block; animation: stepIn .35s ease; }
@keyframes stepIn{ from{ opacity: 0; transform: translateX(14px); } to{ opacity: 1; transform: none; } }

.quiz-step h2{ font-size: clamp(1.4rem,2.6vw,1.85rem); }
.quiz-step .step-hint{ color: var(--stone); margin-top: 8px; font-size: .95rem; }

.option-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 28px;
}
.option-card{
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid var(--line); border-radius: 8px; background: #fff;
  padding: 18px 18px; text-align: left;
  transition: border-color var(--speed) ease, background var(--speed) ease, transform var(--speed) ease;
}
.option-card:hover{ border-color: var(--copper); transform: translateY(-1px); }
.option-card:active{ border-color: var(--copper); background: rgba(168,98,58,.05); }
.option-card.is-selected{ border-color: var(--copper); background: #fbf1ea; box-shadow: 0 0 0 3px rgba(168,98,58,.12); }
.option-card .ic{ width: 26px; height: 26px; color: var(--copper); flex: none; }
.option-card .txt{ font-weight: 700; font-size: .98rem; }
.option-card .check{
  margin-left: auto; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line);
  flex: none; display: flex; align-items: center; justify-content: center;
}
.option-card.is-selected .check{ border-color: var(--copper); background: var(--copper); }
.option-card.is-selected .check svg{ width: 12px; height: 12px; color: #fff; }
@media (max-width: 560px){ .option-grid{ grid-template-columns: 1fr; } }

.field{ margin-top: 22px; }
.field label{ display: block; font-weight: 700; font-size: .92rem; margin-bottom: 8px; }
.field .optional{ font-weight: 400; color: var(--stone); text-transform: none; letter-spacing: 0; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=number], .field textarea{
  width: 100%; border: 1.5px solid var(--line); border-radius: 6px; padding: 13px 14px;
  background: #fff; color: var(--ink);
  transition: border-color var(--speed) ease;
}
.field input:focus, .field textarea:focus{ border-color: var(--copper); }
.field textarea{ min-height: 110px; resize: vertical; }
.field-hint{ font-size: .8rem; color: var(--stone); margin-top: 6px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px){ .field-row{ grid-template-columns: 1fr; } }

.consent{ display: flex; gap: 12px; margin-top: 26px; align-items: flex-start; }
.consent input{ margin-top: 4px; width: 17px; height: 17px; accent-color: var(--copper); flex: none; }
.consent label{ font-size: .87rem; color: var(--stone); line-height: 1.5; }
.consent a{ text-decoration: underline; color: var(--ink); }

.quiz-nav{ display: flex; justify-content: space-between; align-items: center; margin-top: 34px; gap: 14px; }
.quiz-back{
  background: none; border: none; color: var(--stone); font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; gap: 6px; padding: 10px 4px;
}
.quiz-back svg{ width: 16px; height: 16px; }
.quiz-back:hover{ color: var(--ink); }
.quiz-back[hidden]{ visibility: hidden; }

.summary-card{
  background: var(--sand); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px;
  margin-top: 26px; margin-bottom: 6px;
}
.summary-card h3{ font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--stone); margin-bottom: 10px; }
.summary-list{ display: flex; flex-direction: column; gap: 6px; font-size: .92rem; }
.summary-list span.k{ color: var(--stone); }
.summary-list span.v{ font-weight: 700; }
.summary-row{ display: flex; justify-content: space-between; gap: 12px; }

.form-msg{
  display: none; margin-top: 20px; padding: 14px 16px; border-radius: 6px; font-size: .9rem;
}
.form-msg.is-visible{ display: block; }
.form-msg.error{ background: #fbeae6; color: var(--error); border: 1px solid #f0c9bd; }

.thanks{ display: none; text-align: center; padding-block: 20px 6px; }
.thanks.is-active{ display: block; animation: stepIn .4s ease; }
.thanks .ic-wrap{
  width: 66px; height: 66px; border-radius: 50%; background: #eef4ee; color: var(--ok);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.thanks .ic-wrap svg{ width: 32px; height: 32px; }
.thanks h2{ margin-bottom: 12px; }
.thanks p{ color: var(--stone); max-width: 46ch; margin-inline: auto; }
.thanks .btn{ margin-top: 28px; }

.quiz-noscript{
  background: #fff7e0; border: 1px solid #e9cd7a; border-radius: 6px; padding: 14px 18px;
  font-size: .9rem; margin-bottom: 26px;
}

/* ---------- Legal pages ---------- */
.legal-hero{ padding-block: 130px 60px; background: var(--ink); color: #fff; }
.legal-body{ padding-block: 60px 100px; }
.legal-body .container{ max-width: 820px; }
.legal-body h2{ font-size: 1.5rem; margin-top: 44px; margin-bottom: 14px; }
.legal-body h2:first-child{ margin-top: 0; }
.legal-body h3{ font-size: 1.1rem; margin-top: 26px; margin-bottom: 8px; }
.legal-body p{ margin-bottom: 14px; color: var(--ink); }
.legal-body ul{ margin-bottom: 14px; padding-left: 1.2em; list-style: disc; }
.legal-body li{ margin-bottom: 6px; }
.legal-body a{ text-decoration: underline; }
.todo-box{
  background: #fff7e0; border: 1px solid #e9cd7a; border-radius: 6px;
  padding: 18px 20px; margin-bottom: 36px; font-size: .92rem;
}
.todo-box strong{ display: block; margin-bottom: 6px; }
.fill{
  background: #fff2c4; padding: .05em .35em; border-radius: 3px; font-weight: 700;
  box-decoration-break: clone;
}

/* ---------- Bildschutz ---------- */
img{
  -webkit-touch-callout: none;   /* verhindert Kontextmenü bei langem Antippen auf iOS */
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
