/* ============================================================
   Dellen Reparaturservice Herrmann GmbH — High-End Relaunch
   Mobile-first · Selbst gehostete Fonts · Keine externen Quellen
   Farbwelt (Original): Weinrot #8E2E2E · Hellrot #BA6363 ·
   Grau #707070 · Weiß
   ============================================================ */

/* ---------- Fonts (lokal, variable Archivo) ---------- */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* ---------- Design-Tokens ---------- */
:root {
  --weinrot: #8e2e2e;
  --weinrot-dark: #6e2222;
  --weinrot-deep: #541a1a;
  --rot-hell: #ba6363;
  --rot-accent: #d98a8a;
  --grau: #707070;
  --grau-hell: #e9e4e4;
  --anthrazit: #1d1a1a;
  --anthrazit-2: #262222;
  --weiss: #ffffff;
  --creme: #faf8f7;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(30, 10, 10, 0.12);
  --shadow-lg: 0 24px 70px rgba(30, 10, 10, 0.22);
  --transition: 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);

  --font: "Archivo", "Segoe UI", Arial, Helvetica, sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--anthrazit);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--weinrot);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--weinrot-dark);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

::selection {
  background: var(--weinrot);
  color: var(--weiss);
}

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

/* ---------- Typografie ---------- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--weinrot);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--weinrot);
  border-radius: 2px;
}

.eyebrow--light {
  color: var(--rot-accent);
}

.eyebrow--light::before {
  background: var(--rot-accent);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section--creme {
  background: var(--creme);
}

.section--dark {
  background: var(--anthrazit);
  color: var(--weiss);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--grau);
  font-size: 1.06rem;
}

.section-head--dark p {
  color: #b8abab;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
  will-change: transform;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--weinrot), var(--weinrot-dark));
  color: var(--weiss);
  box-shadow: 0 8px 24px rgba(142, 46, 46, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(142, 46, 46, 0.45);
  color: var(--weiss);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--weiss);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--weiss);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: var(--weinrot);
  color: var(--weinrot);
}

.btn--outline:hover {
  background: var(--weinrot);
  color: var(--weiss);
}

.btn--light {
  background: var(--weiss);
  color: var(--weinrot);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--weinrot-dark);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding-block: 1.1rem;
}

.header--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--grau-hell), 0 10px 30px rgba(20, 5, 5, 0.06);
  padding-block: 0.6rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 52px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.brand-text {
  line-height: 1.1;
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--weiss);
  letter-spacing: 0.01em;
  transition: color var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rot-accent);
  transition: color 0.3s ease;
}

.header--solid .brand-text strong {
  color: var(--anthrazit);
}

.header--solid .brand-text span {
  color: var(--weinrot);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-links {
  display: flex;
  gap: 1.7rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-block: 0.3rem;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--rot-accent);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--weiss);
}

.nav-links a:hover::after {
  width: 100%;
}

.header--solid .nav-links a {
  color: var(--anthrazit);
}

.header--solid .nav-links a:hover {
  color: var(--weinrot);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--weiss);
}

.header-tel svg {
  width: 18px;
  height: 18px;
}

.header--solid .header-tel {
  color: var(--weinrot);
}

.header-tel:hover {
  color: var(--rot-accent);
}

.header--solid .header-tel:hover {
  color: var(--weinrot-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 5px auto;
  background: var(--weiss);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.header--solid .nav-toggle span {
  background: var(--anthrazit);
}

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

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--weiss);
  overflow: hidden;
  background: var(--anthrazit);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(29, 26, 26, 0.92) 0%,
    rgba(29, 26, 26, 0.62) 45%,
    rgba(84, 26, 26, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(7rem, 14vh, 9rem) clamp(3.5rem, 8vh, 5rem);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rot-accent);
  margin-bottom: 1.6rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fcf97;
  box-shadow: 0 0 12px #6fcf97;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 15ch;
  margin-bottom: 1.4rem;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 800;
  color: var(--rot-accent);
}

.hero-claim {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--weiss);
  margin-bottom: 1.1rem;
}

.hero-text {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.2rem;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  max-width: 720px;
}

.hero-stat {
  background: rgba(29, 26, 26, 0.55);
  padding: 1.2rem 1.4rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--weiss);
  line-height: 1.1;
}

.hero-stat strong em {
  font-style: normal;
  color: var(--rot-accent);
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.05em;
}

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--weiss);
  box-shadow: var(--shadow);
  border: 1px solid var(--grau-hell);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.06);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 26, 26, 0.55), transparent 55%);
}

.service-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--weinrot);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.service-body {
  padding: 1.6rem 1.6rem 1.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.28rem;
  margin-bottom: 0.6rem;
  color: var(--anthrazit);
}

.service-body p {
  color: var(--grau);
  font-size: 0.97rem;
  flex: 1;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.service-points li {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--weinrot);
  background: #f7efef;
  border: 1px solid #eedddd;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ---------- Ablauf / So geht's ---------- */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.process-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  pointer-events: none;
}

.process-steps {
  display: grid;
  gap: 1.2rem;
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.2rem 1.4rem;
  background: var(--weiss);
  border: 1px solid var(--grau-hell);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process-step:hover {
  transform: translateX(4px);
  border-color: var(--rot-hell);
  box-shadow: var(--shadow);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--weinrot), var(--weinrot-dark));
  color: var(--weiss);
  font-weight: 900;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(142, 46, 46, 0.3);
}

.process-step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--grau);
}

/* ---------- Leasing-Band ---------- */
.leasing-band {
  position: relative;
  overflow: hidden;
}

.leasing-band .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.leasing-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.leasing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leasing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  pointer-events: none;
}

.leasing-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.leasing-content p {
  color: #c9bcbc;
  margin-bottom: 1.1rem;
  max-width: 52ch;
}

.leasing-content ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
}

.leasing-content li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.99rem;
  color: var(--weiss);
}

.leasing-content li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--rot-accent);
}

/* ---------- Hagel-Sektion ---------- */
.hagel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hagel-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1.1rem;
}

.hagel-content p {
  color: var(--grau);
  margin-bottom: 1.2rem;
  max-width: 52ch;
}

.hagel-content ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 2rem;
}

.hagel-content li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.99rem;
  color: var(--anthrazit);
}

.hagel-content li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--weinrot);
}

.hagel-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hagel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Gründe für DRS ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}

.reason-card {
  background: var(--weiss);
  border: 1px solid var(--grau-hell);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reason-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f7efef;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--weinrot);
}

.reason-ico svg {
  width: 26px;
  height: 26px;
}

.reason-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.reason-card p {
  font-size: 0.93rem;
  color: var(--grau);
}

/* ---------- Historie / Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.about-badge strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--weinrot);
  line-height: 1.1;
}

.about-badge span {
  font-size: 0.78rem;
  color: var(--grau);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1.1rem;
}

.about-content p {
  color: var(--grau);
  margin-bottom: 1rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.value {
  background: var(--creme);
  border: 1px solid var(--grau-hell);
  border-radius: var(--radius-sm);
  padding: 1.1rem 0.9rem;
  text-align: center;
}

.value strong {
  display: block;
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--weinrot);
}

.value span {
  font-size: 0.82rem;
  color: var(--grau);
}

/* ---------- Zertifikat / Zahlen ---------- */
.cert-band {
  background: linear-gradient(135deg, var(--weinrot-deep), var(--weinrot) 60%, var(--weinrot-dark));
  color: var(--weiss);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cert-band::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
  top: -160px;
  right: -120px;
}

.cert-seal {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: var(--weiss);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--weinrot);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cert-seal svg {
  width: 74px;
  height: 74px;
}

.cert-band h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.cert-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
}

.cert-band .cert-sub {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--rot-accent);
  margin-top: 0.6rem;
}

/* ---------- Garantie ---------- */
.garantie {
  text-align: center;
  background: var(--weiss);
  border: 2px solid var(--grau-hell);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.garantie::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--weinrot), var(--rot-hell), var(--weinrot));
}

.garantie .garantie-ico {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--weinrot), var(--weinrot-dark));
  display: grid;
  place-items: center;
  color: var(--weiss);
  box-shadow: 0 10px 30px rgba(142, 46, 46, 0.35);
}

.garantie .garantie-ico svg {
  width: 38px;
  height: 38px;
}

.garantie h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.garantie p {
  color: var(--grau);
  max-width: 60ch;
  margin: 0 auto 1.8rem;
  font-size: 1.06rem;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1.1rem;
}

.contact-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--weiss);
  border: 1px solid var(--grau-hell);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-card .c-ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f7efef;
  display: grid;
  place-items: center;
  color: var(--weinrot);
}

.contact-card .c-ico svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: var(--grau);
}

.contact-card a {
  font-weight: 700;
  color: var(--anthrazit);
}

.contact-card a:hover {
  color: var(--weinrot);
}

.contact-form {
  background: var(--weiss);
  border: 1px solid var(--grau-hell);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.contact-form .form-sub {
  color: var(--grau);
  font-size: 0.94rem;
  margin-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
  color: var(--anthrazit);
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1.05rem;
  border: 1.5px solid var(--grau-hell);
  border-radius: var(--radius-sm);
  background: var(--creme);
  color: var(--anthrazit);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--weinrot);
  background: var(--weiss);
  box-shadow: 0 0 0 4px rgba(142, 46, 46, 0.12);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--grau);
  margin-top: 0.8rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--anthrazit);
  color: #b8abab;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 56px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.93rem;
  max-width: 34ch;
}

.footer h4 {
  color: var(--weiss);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #b8abab;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--rot-accent);
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.94rem;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--rot-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.4rem;
  font-size: 0.82rem;
}

.footer-bottom .legal {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom a {
  color: #9c8f8f;
}

.footer-bottom a:hover {
  color: var(--rot-accent);
}

/* ---------- Rechtsseiten ---------- */
.legal-page {
  padding-top: clamp(7rem, 12vh, 9rem);
  padding-bottom: 5rem;
  min-height: 70vh;
}

.legal-wrap {
  background: var(--weiss);
  border: 1px solid var(--grau-hell);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 3.2rem);
  max-width: 860px;
  margin-inline: auto;
}

.legal-wrap h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--weinrot);
  margin-bottom: 0.4rem;
}

.legal-wrap .stand {
  color: var(--grau);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--grau-hell);
}

.legal-wrap h2 {
  font-size: 1.25rem;
  color: var(--anthrazit);
  margin: 2.2rem 0 0.8rem;
  font-weight: 800;
}

.legal-wrap h3 {
  font-size: 1.05rem;
  color: var(--weinrot);
  margin: 1.4rem 0 0.5rem;
  font-weight: 700;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--grau);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.legal-wrap ul,
.legal-wrap ol {
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}

.legal-wrap ul {
  list-style: disc;
}

.legal-wrap ol {
  list-style: decimal;
}

.legal-wrap a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-adresse {
  background: var(--creme);
  border-left: 4px solid var(--weinrot);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.2rem 0;
}

.legal-adresse p {
  margin-bottom: 0.25rem;
  color: var(--anthrazit);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
  font-weight: 700;
  color: var(--weinrot);
}

.legal-back:hover {
  color: var(--weinrot-dark);
}

/* ---------- Scroll-Reveal (nur mit JS aktiv) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

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

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links,
  .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 16, 0.97);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1001;
  }

  .nav-links--open a {
    font-size: 1.5rem;
    color: var(--weiss);
    font-weight: 700;
  }

  .nav-links--open a::after {
    display: none;
  }

  .header--solid .nav-links--open a {
    color: var(--weiss);
  }

  .process,
  .about-grid,
  .leasing-band .container,
  .contact-grid,
  .hagel-grid {
    grid-template-columns: 1fr;
  }

  .process-media {
    order: -1;
  }

  .about-media {
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .brand-text strong {
    font-size: 0.85rem;
  }

  .brand-text span {
    font-size: 0.64rem;
  }

  .header-tel {
    font-size: 0.9rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .cert-band {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cert-band .cert-seal {
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
