/* =========================================================
   Bauunternehmen Günther – Design Tokens
   ========================================================= */
:root {
  /* Farben */
  --blue-900: #01173a;
  --blue-800: #012a66;
  --blue-700: #013280;
  --blue-600: #0047BB;   /* Primär */
  --blue-500: #2e66cf;
  --blue-100: #d9e4f7;
  --blue-50:  #eef3fb;
  --ink-900:  #0b0f19;
  --ink-700:  #232a35;
  --ink-500:  #4d5563;
  --line:     #e3e8f0;
  --surface:  #f6f8fb;
  --white:    #ffffff;
  /* Typografie */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  /* Form & Motion */
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(1, 23, 58, .08);
  --shadow-md: 0 10px 30px rgba(1, 23, 58, .12);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .3s;
}

/* =========================================================
   Reset
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1, h2, h3, h4, p,
ul, ol,
figure {
  margin: 0;
}

body {
  padding: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

html {
  scroll-padding-top: 88px;
}

/* =========================================================
   Base typography
   ========================================================= */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  color: var(--ink-500);
}

/* =========================================================
   Utilities
   ========================================================= */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.eyebrow--dark {
  color: var(--blue-100);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue-500);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--blue-600);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top var(--dur) var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--blue-600);
}

.btn-ghost:hover {
  background: var(--blue-50);
}

.btn-ghost--dark {
  color: var(--white);
}

.btn-ghost--dark:hover {
  background: var(--white);
  color: var(--blue-800);
}

.btn-white {
  background: var(--white);
  color: var(--blue-800);
}

.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: height var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: height var(--dur) var(--ease);
}

.site-header.scrolled .site-header__inner {
  height: 60px;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.brand__mark {
  width: 38px;
  height: 36px;
  min-width: 38px;
  color: var(--ink-900);
}

.brand--light .brand__mark {
  color: var(--white);
}

.brand__word {
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--ink-900);
  font-size: 15px;
  white-space: nowrap;
}

.brand__word span {
  color: var(--blue-600);
}

.brand--light .brand__word {
  color: var(--white);
}

.brand--light .brand__word span {
  color: var(--blue-100);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--blue-900);
  display: flex;
  flex-direction: column;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s var(--ease) var(--dur);
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s;
}

.mobile-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-close {
  position: relative;
  width: 40px;
  height: 40px;
}

.nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--white);
}

.nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__links ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.mobile-nav__links li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.mobile-nav.open .mobile-nav__links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__links a {
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
}

.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 48px;
}

.mobile-nav__contact a {
  color: var(--blue-100);
  font-size: 15px;
}

body.no-scroll {
  overflow: hidden;
}

/* =========================================================
   Footer / Quick actions
   ========================================================= */
.site-footer {
  background: var(--ink-900);
  color: var(--blue-100);
  padding-block: 72px 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.site-footer__brand p {
  color: var(--blue-100);
  margin: 14px 0;
  max-width: 34em;
}

.site-footer__social {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  color: var(--blue-100);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.quick-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.quick-actions.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-actions__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.quick-actions__btn:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

.quick-actions__btn--hammer {
  background: var(--white);
}

.quick-actions__btn--hammer img {
  width: 22px;
  height: 22px;
}

.quick-actions__btn--hammer:hover {
  background: var(--blue-50);
}

.quick-actions.visible .quick-actions__btn:nth-child(1) { transition-delay: 0ms; }
.quick-actions.visible .quick-actions__btn:nth-child(2) { transition-delay: 60ms; }
.quick-actions.visible .quick-actions__btn:nth-child(3) { transition-delay: 120ms; }
.quick-actions.visible .quick-actions__btn:nth-child(4) { transition-delay: 180ms; }

/* =========================================================
   Homepage – Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: var(--blue-900);
  color: var(--white);
  overflow: hidden;
  padding-block: 96px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0, rgba(255, 255, 255, .05) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0, rgba(255, 255, 255, .05) 1px, transparent 1px, transparent 72px);
}

.hero__inner {
  position: relative;
  max-width: 720px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up .8s var(--ease) .15s forwards;
}

.hero__title span {
  color: var(--blue-500);
}

.hero__eyebrow {
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards;
}

.hero__text {
  color: var(--blue-100);
  max-width: 560px;
  font-size: 1.05rem;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up .8s var(--ease) .3s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .8s var(--ease) .45s forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-mouse {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  position: relative;
}

.hero__scroll-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-cue 2s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 10px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* =========================================================
   Homepage – Leistungen
   ========================================================= */
.leistungen {
  background: var(--white);
  padding-block: 96px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head__text {
  font-size: 1.05rem;
  margin-top: 10px;
}

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

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

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  color: var(--ink-500);
}

/* =========================================================
   Homepage – Zahlen
   ========================================================= */
.zahlen {
  background: var(--surface);
  padding-block: 96px;
}

.zahlen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: 8px;
}

.stat__label {
  font-size: 15px;
  color: var(--ink-500);
}

/* =========================================================
   Homepage – Über uns Teaser
   ========================================================= */
.about-teaser {
  background: var(--white);
  padding-block: 96px;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-teaser__text p {
  font-size: 1.05rem;
  margin: 18px 0 28px;
}

.about-teaser__media {
  position: relative;
}

.about-teaser__frame {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--blue-100);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-teaser__media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  filter: grayscale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-teaser__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--blue-600);
  opacity: .18;
  mix-blend-mode: multiply;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* =========================================================
   Homepage – Ablauf
   ========================================================= */
.ablauf {
  background: var(--blue-50);
  padding-block: 96px;
}

.ablauf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ablauf__number {
  display: block;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--blue-100);
  -webkit-text-stroke: 1.5px var(--blue-600);
  margin-bottom: 12px;
}

.ablauf__step h3 {
  margin-bottom: 8px;
}

.ablauf__step p {
  font-size: 15px;
}

/* =========================================================
   Homepage – CTA Band
   ========================================================= */
.cta-band {
  background: var(--blue-800);
  padding-block: 96px;
  color: var(--white);
}

.cta-band__inner {
  text-align: center;
  max-width: 640px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: var(--blue-100);
  margin: 16px 0 32px;
  font-size: 1.05rem;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   Reveal system
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 890px) {
  .site-nav,
  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .leistungen__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-teaser__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-teaser__grid {
    gap: 48px;
  }

  .ablauf__grid,
  .zahlen__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid,
  .anfahrt-grid,
  .about-split__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-split__grid {
    gap: 48px;
  }

  .about-checklist__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews__grid {
    columns: 2;
  }

  section {
    padding-block: 72px;
  }

  .hero,
  .leistungen,
  .zahlen,
  .about-teaser,
  .ablauf,
  .cta-band,
  .contact-section,
  .anfahrt-section,
  .about-split,
  .about-checklist,
  .reviews {
    padding-block: 72px;
  }

  .page-hero {
    padding-block: 96px 64px;
  }

  .page-hero--sm {
    padding-block: 72px 48px;
  }
}

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

  .site-header__inner {
    height: 64px;
  }

  .brand__word {
    font-size: 13px;
  }

  .hero__actions {
    justify-content: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .quick-actions {
    right: 16px;
    bottom: 16px;
  }

  .hero,
  .leistungen,
  .zahlen,
  .about-teaser,
  .ablauf,
  .cta-band,
  .contact-section,
  .anfahrt-section,
  .about-split,
  .about-checklist,
  .reviews {
    padding-block: 56px;
  }

  .about-teaser__frame,
  .about-split__frame {
    display: none;
  }

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

  .reviews__grid {
    columns: 1;
  }

  .page-hero {
    padding-block: 80px 48px;
  }
}

/* =========================================================
   Page hero (subpages)
   ========================================================= */
.page-hero {
  position: relative;
  background: var(--blue-900);
  color: var(--white);
  overflow: hidden;
  padding-block: 120px 80px;
}

.page-hero--sm {
  padding-block: 88px 56px;
}

.page-hero__inner {
  position: relative;
  max-width: 720px;
}

.page-hero__eyebrow {
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up .8s var(--ease) .15s forwards;
}

.page-hero--sm .page-hero__title {
  margin-bottom: 0;
}

.page-hero__lead {
  color: var(--blue-100);
  max-width: 640px;
  font-size: 1.05rem;
  opacity: 0;
  animation: fade-up .8s var(--ease) .3s forwards;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-section {
  background: var(--white);
  padding-block: 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: border-color var(--dur) var(--ease);
}

.info-card:hover {
  border-color: var(--blue-600);
}

.info-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--blue-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-card__body strong {
  color: var(--ink-900);
  font-size: 14px;
}

.info-card__body a,
.info-card__body span {
  color: var(--ink-500);
  font-size: 15px;
}

.info-card__body a:hover {
  color: var(--blue-600);
}

.contact-note {
  font-size: 14px;
  color: var(--ink-500);
  margin-top: 8px;
}

.contact-note a {
  color: var(--blue-600);
  text-decoration: underline;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color var(--dur) var(--ease);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--blue-600);
}

.contact-form__submit {
  width: 100%;
}

.form-note {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 16px;
}

/* =========================================================
   Anfahrt page
   ========================================================= */
.anfahrt-section {
  background: var(--white);
  padding-block: 96px;
}

.anfahrt-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.anfahrt-info p {
  font-size: 15px;
  margin: 20px 0 24px;
}

.anfahrt-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.anfahrt-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   About page – split intro
   ========================================================= */
.about-split {
  background: var(--white);
  padding-block: 96px;
}

.about-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-split__text p {
  font-size: 1.05rem;
  margin-top: 18px;
}

.about-split__media {
  position: relative;
}

.about-split__frame {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--blue-100);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-split__media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  filter: grayscale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--blue-600);
  opacity: .18;
  mix-blend-mode: multiply;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* =========================================================
   About page – checklist
   ========================================================= */
.about-checklist {
  background: var(--surface);
  padding-block: 96px;
}

.about-checklist__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.checklist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.checklist-item__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item strong {
  display: block;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.checklist-item p {
  font-size: 15px;
}

/* =========================================================
   About page – reviews
   ========================================================= */
.reviews {
  background: var(--white);
  padding-block: 96px;
}

.reviews__grid {
  columns: 3;
  column-gap: 20px;
}

.reviews__item {
  break-inside: avoid;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.reviews__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reviews__item img {
  width: 100%;
  display: block;
}

.reviews__credit {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 24px;
}

.reviews__credit a {
  color: var(--blue-600);
  text-decoration: underline;
}

/* =========================================================
   Prose / legal pages
   ========================================================= */
.prose {
  max-width: 760px;
  padding-block: 64px 96px;
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

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

.prose h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.prose h4 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.prose p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.prose ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 16px;
}

.prose ul li {
  display: list-item;
  margin-bottom: 8px;
  color: var(--ink-500);
}

.prose a {
  color: var(--blue-600);
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__title,
  .hero__eyebrow,
  .hero__text,
  .hero__actions,
  .page-hero__title,
  .page-hero__eyebrow,
  .page-hero__lead {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .hero__scroll-mouse::before {
    animation: none;
  }
}
