/* ── ACCESSIBILITY ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── RESET & VARS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

:root {
  --teal:       #2e6b62;
  --teal-light: #3a8075;
  --rust:       #c4522a;
  --rust-dark:  #a03e1e;
  --cream:      #f0e3c0;
  --cream-mid:  #d9c8a0;
  --dark:       #1a0f08;
  --brown:      #2a1205;
  --gold:       #c89030;
  --ink:        #2a1a0e;
}

body {
  font-family: 'Oswald', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── WRAPPER ── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 3px solid var(--rust);
  overflow: visible;
  height: 64px;
}

.header-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.brand {
  display: flex;
  align-self: flex-start;   /* Logo hängt nach unten */
  align-items: flex-start;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
  overflow: visible;
}

.brand img {
  height: 156px;            /* größer als der Header → hängt nach unten über */
  width: auto;
  display: block;
  position: relative;
  z-index: 101;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.8));
  transition: height 0.4s ease, filter 0.4s ease;
}

.site-header.scrolled .brand img {
  height: 62px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.brand:hover img {
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.8)) brightness(1.08);
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
}

.site-header nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--rust); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal);
  color: var(--cream);
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-cta:hover { background: var(--teal-light); }

/* ── HERO ── */

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(58,32,10,0.75) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 28%, rgba(46,107,98,0.22) 0%, transparent 52%),
    var(--dark);
  padding: 3rem 2rem;
}

.hero-logo {
  width: min(300px, 75vw);
  margin: 0 auto 2.5rem;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.75));
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 2px 4px 16px rgba(0,0,0,0.65);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: clamp(0.85rem, 2.5vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mid);
  margin-bottom: 3rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.btn-rust {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--rust);
}
.btn-rust:hover {
  background: transparent;
  color: var(--rust);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream-mid);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── SECTION TITLE ── */
.sec-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.sec-title h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--ink);
}

.sec-title.light h2 { color: var(--cream); }

.star {
  color: var(--rust);
  font-size: 1.3rem;
  line-height: 1;
}

.sec-title.light .star { color: var(--gold); }

/* ── PAPER GRAIN + VIGNETTE TEXTURE ── */
.has-grain {
  position: relative;
}
/* Vergilbter Rand – Vignette */
.has-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent              42%,
      rgba(110,65,15,0.18)     68%,
      rgba(80, 44,  8,0.38)    100%);
}
/* Papierkörnung */
.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: multiply;
}
.has-grain > .wrap { position: relative; z-index: 3; }

/* ── LEISTUNGEN ── */
.leistungen {
  background: var(--teal);
  padding: 5rem 0;
  border-top: 4px solid var(--rust);
}

.leistungen .sec-title h2 { color: var(--cream); }
.leistungen .star          { color: var(--gold);  }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255,255,255,0.08);
  padding: 2rem;
  border-top: 4px solid var(--rust);
  box-shadow: 0 2px 18px rgba(0,0,0,0.2);
}

.card-icon {
  color: var(--gold);
  margin-bottom: 1.4rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(200,144,48,0.55);
  box-shadow: 0 0 0 5px rgba(200,144,48,0.12), inset 0 0 0 4px rgba(200,144,48,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.card p {
  font-weight: 300;
  color: rgba(240,227,192,0.82);
  line-height: 1.65;
  font-size: 0.95rem;
}

.card p strong {
  color: var(--cream);
  font-weight: 600;
}

/* ── IMAGE SECTIONS ── */
.img-section {
  line-height: 0;
  background: var(--dark);
}

.img-section img { width: 100%; }

/* ── FLYER ── */
.flyer-duo {
  background: var(--dark);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.flyer-duo img {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: auto;
}

/* ── VORTEILE ── */
.vorteile {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 4px solid var(--rust);
  border-bottom: 4px solid var(--cream-mid);
}
.vorteile .sec-title h2 { color: var(--ink); }
.vorteile .star          { color: var(--rust); }

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.check {
  width: 72px;
  height: 72px;
  border: 2px solid var(--brown);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(42,18,5,0.1), inset 0 0 0 4px rgba(42,18,5,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--rust);
}

.vorteil h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.vorteil p {
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: rgba(42,26,14,0.65);
}

/* ── VORTEILE EXTENDED ── */
.vorteil-einleitung {
  max-width: 740px;
  margin: 0 auto 3rem;
  text-align: center;
}
.vorteil-einleitung h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.vorteil-einleitung p {
  font-weight: 300;
  line-height: 1.8;
  color: rgba(42,26,14,0.75);
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
}
.vorteil-einleitung p strong { color: var(--ink); font-weight: 600; }


.preis-ablauf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  align-items: start;
}

.im-preis h3,
.ablauf h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rust);
}

.preis-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.preis-liste li {
  padding-left: 1.6rem;
  position: relative;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(42,26,14,0.75);
  font-size: 0.94rem;
}
.preis-liste li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}

.ablauf-liste {
  list-style: none;
  counter-reset: ablauf;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ablauf-liste li {
  padding-left: 2.4rem;
  position: relative;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(42,26,14,0.75);
  font-size: 0.94rem;
  counter-increment: ablauf;
}
.ablauf-liste li::before {
  content: counter(ablauf);
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--rust);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  border-radius: 50%;
  line-height: 1.6rem;
  text-align: center;
}

.neue-modelle-box {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: rgba(200,144,48,0.07);
  border: 1px solid rgba(200,144,48,0.25);
  border-left: 4px solid var(--gold);
}
.neue-modelle-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.neue-modelle-box p {
  font-weight: 300;
  line-height: 1.75;
  color: rgba(42,26,14,0.75);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.neue-modelle-box .btn-outline {
  color: var(--ink);
  border-color: var(--brown);
  margin-top: 0.5rem;
}
.neue-modelle-box .btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.hinweis-kasten {
  margin-top: 2.5rem;
  padding: 1rem 1.4rem;
  background: rgba(42,18,5,0.06);
  border-left: 3px solid rgba(42,18,5,0.25);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(42,26,14,0.6);
}
.hinweis-kasten strong { font-weight: 600; color: rgba(42,26,14,0.75); }

.passend-fuer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42,26,14,0.12);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(42,26,14,0.35);
  text-align: center;
  line-height: 2;
}

/* ── PRODUKT ── */
.produkt {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 4px solid var(--teal);
}

.split {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.split figure {
  flex: 1;
  min-width: 240px;
  max-width: 380px;
  text-align: center;
}

.split figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 3px solid var(--cream-mid);
  box-shadow: 0 4px 22px rgba(0,0,0,0.18);
}

.split figure figcaption {
  margin-top: 0.8rem;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.badge {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  padding: 0.25rem 1.2rem;
  margin-bottom: 0.75rem;
}

.badge-dark { background: var(--brown); color: var(--cream); }
.badge-rust  { background: var(--rust);  color: var(--cream); }

.split-arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--rust);
  align-self: center;
  line-height: 1;
  padding-top: 2.5rem;
}

.tagline {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  border-top: 2px solid var(--cream-mid);
  padding-top: 2rem;
}

/* ── WERKSTATT-SZENE ── */
.werkstatt-szene {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
  line-height: 0;
}
.werkstatt-szene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--brown) 0%,
    rgba(42,18,5,0.55) 18%,
    rgba(42,18,5,0.05) 42%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.werkstatt-szene img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.96;
}

/* ── ARBEITSPLATZ-FOTO ── */
.arbeitsplatz-szene {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
  line-height: 0;
}
.arbeitsplatz-szene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--brown) 0%,
    rgba(42,18,5,0.45) 14%,
    transparent 36%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.arbeitsplatz-szene img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── HOLZSCHILD ── */
.holzschild {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0,0,0,0.03) 30px, rgba(0,0,0,0.03) 31px),
    linear-gradient(160deg, #6b3a1a 0%, #3d2010 38%, #5c3018 65%, #3a1e0c 100%);
  padding: 4rem 2rem;
  border-top: 5px solid #7a4420;
  border-bottom: 5px solid #1e0c04;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.holzschild::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200,144,48,0.22);
  pointer-events: none;
  z-index: 1;
}
.holzschild-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.holzschild-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.15em;
  color: var(--cream);
  text-shadow: 0 3px 14px rgba(0,0,0,0.75), 0 1px 3px rgba(0,0,0,0.9);
}
.holzschild-inner .sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold);
  opacity: 0.65;
  letter-spacing: 0;
}

/* ── KONTAKT ── */
.kontakt {
  background: var(--brown);
  padding: 5rem 0 0;
  border-top: 4px solid var(--rust);
}

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-info h3 {
  font-family: 'Pacifico', cursive;
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.kontakt-info address {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.9;
  color: var(--cream-mid);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.kontakt-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.kontakt-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.kontakt-links a:hover { color: var(--cream); }

.kontakt-badge {
  margin-top: 2.5rem;
}
.kontakt-badge img {
  width: 180px;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,0.6));
}

/* ── KONTAKTFORMULAR ── */
.hp-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.form-msg {
  display: none;
  padding: 0.9rem 1.2rem;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.form-msg--ok  { display: block; background: rgba(46,107,98,0.3); border: 1px solid var(--teal); color: var(--cream); }
.form-msg--err { display: block; background: rgba(196,82,42,0.25); border: 1px solid var(--rust); color: var(--cream); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row--split > div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-row label,
.form-row--split label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mid);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,227,192,0.2);
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(240,227,192,0.3);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-row--checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,227,192,0.3);
  border-radius: 2px;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.form-row--checkbox input[type="checkbox"]:checked {
  background: var(--rust);
  border-color: var(--rust);
}
.form-row--checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--cream);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-row--checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--cream-mid);
}
.form-row--checkbox label a {
  color: var(--gold);
  text-decoration: underline;
}
.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.form-hint {
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.65;
}
.file-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.file-wrap input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.file-btn {
  display: inline-block;
  cursor: pointer;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(240,227,192,0.35);
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--cream-mid);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.file-btn:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(255,255,255,0.09);
}
.file-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(240,227,192,0.45);
  word-break: break-all;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 2px solid rgba(240,227,192,0.07);
  padding: 2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer p {
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(240,227,192,0.4);
}

.site-footer a {
  color: rgba(240,227,192,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--cream); }
.site-footer span { margin: 0 0.4rem; opacity: 0.3; }


/* ── SUBPAGES ── */
.subpage-hero {
  background: var(--dark);
  border-bottom: 3px solid var(--rust);
  padding: 4rem 0 3rem;
  text-align: center;
}

.subpage-hero .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}

.subpage-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--cream);
}

.prose {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  background: var(--cream);
  color: var(--ink);
}

.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--brown);
  margin: 2.5rem 0 0.75rem;
  border-bottom: 2px solid var(--cream-mid);
  padding-bottom: 0.4rem;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 1.5rem 0 0.4rem;
}

.prose p {
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.prose ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.2rem;
}

.prose ul li {
  padding: 0.25rem 0 0.25rem 1.6rem;
  position: relative;
  font-weight: 300;
  line-height: 1.75;
}

.prose ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-size: 0.7rem;
  top: 0.5rem;
}

.prose a { color: var(--teal); }
.prose a:hover { color: var(--rust); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .brand img { height: 120px; width: auto; }
  .site-header nav { gap: 1rem; }
}

@media (max-width: 1100px) {
  .brand img { height: 96px; width: auto; }
  .site-header nav { gap: 0.75rem; }
  .header-cta { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
}


@media (max-width: 720px) {
  .brand { align-self: center; margin-left: -15px; }
  .brand img,
  .site-header.scrolled .brand img { height: 48px; width: auto; }
  .site-header nav { display: none; }
  .cards           { grid-template-columns: 1fr; }
  .vorteile-grid   { grid-template-columns: 1fr; }
.preis-ablauf    { grid-template-columns: 1fr; }
  .neue-modelle-box { padding: 1.5rem; }
  .kontakt-layout  { grid-template-columns: 1fr; }
  .kontakt-badge   { display: none; }
  .form-row--split { grid-template-columns: 1fr; }
  .footer-wrap     { flex-direction: column; text-align: center; }
  .split-arrow     { width: 100%; text-align: center; padding-top: 0; }
}

@media (max-width: 480px) {
  .hero-logo { width: 210px; }
  .split figure img { height: 240px; }
}
