/* ════════════════════════════════════════════════════════════════
   DANWOOD SACHSEN — One-Pager
   Architektonisch-klar: warmes Papierweiß, Anthrazit, Danwood-Rot.
   Display: Archivo Expanded (wdth 125) · Body: Archivo
   ════════════════════════════════════════════════════════════════ */

:root {
  --red: #d2232a;
  --red-deep: #a51920;
  --ink: #1c1b1a;
  --ink-soft: #4c4845;
  --paper: #f7f3ec;
  --paper-warm: #efe9df;
  --white: #fffdf9;
  --line: rgba(28, 27, 26, .14);
  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --gable: polygon(50% 0%, 100% 26%, 100% 100%, 0% 100%, 0% 26%);
  --ease: cubic-bezier(.22, .8, .26, .99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -5%, rgba(210, 35, 42, .06), transparent 60%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  /* KEIN overflow-x auf body — das macht position:sticky am Header kaputt;
     horizontales Clipping übernimmt html { overflow-x: clip } */
}

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

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

h1, h2, h3 {
  font-family: var(--font-display); font-weight: 700; font-stretch: 125%;
  line-height: 1.06; letter-spacing: -.025em;
}
h1 em, h2 em { font-style: normal; color: var(--red); }

/* ── Scroll-Reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Bausteine ─────────────────────────────────────────────── */
.kicker {
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
}
.kicker-rule { width: 2.6rem; height: 2px; background: var(--red); flex: none; }
.kicker-light { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem;
  font: 600 .95rem/1 var(--font-body); letter-spacing: .02em;
  text-decoration: none; border-radius: 2px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 10px 24px -10px rgba(210, 35, 42, .55); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(28, 27, 26, .05); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { transform: translateY(-2px); }

.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head .kicker { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-top: 1rem; }
.section-sub { margin-top: 1rem; color: var(--ink-soft); }
.section-sub a { color: var(--red); font-weight: 600; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

/* ════════ HEADER ════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 2.5rem;
  padding: .9rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -18px rgba(28, 27, 26, .35); }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; fill: var(--red); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: .92rem; letter-spacing: .14em; }
.brand-text small { font-size: .64rem; letter-spacing: .06em; color: var(--ink-soft); }

.site-nav { display: flex; gap: 1.8rem; margin-left: auto; }
.site-nav a {
  position: relative; font-size: .92rem; font-weight: 600; text-decoration: none; padding: .3rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-yt {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1rem; border-radius: 2px;
  border: 1.5px solid var(--red); color: var(--red);
  font-size: .88rem; font-weight: 700; letter-spacing: .03em; text-decoration: none;
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.header-yt svg { width: 1.25em; height: 1.25em; fill: currentColor; }
.header-yt:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }

.header-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: 2px;
  background: var(--red); color: var(--white);
  font-size: .9rem; font-weight: 700; letter-spacing: .03em; text-decoration: none;
  transition: background .25s, transform .25s var(--ease);
}
.header-cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.header-cta svg { width: 1em; height: 1em; fill: currentColor; }

.nav-toggle { display: none; }

/* ════════ HERO ════════ */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem); }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  max-width: 1280px; margin: 0 auto;
}

.hero-copy h1 { font-size: clamp(2rem, 3.4vw, 3.1rem); margin: 1.3rem 0 1.5rem; max-width: 15ch; }
.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin-top: 2.4rem; }
.hero-chips li {
  padding: .45rem 1rem; border: 1px solid var(--line); border-radius: 99px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: var(--white);
}

/* Hero-Bild mit rot versetztem Rahmen */
.hero-figure { position: relative; margin: 0; }
.hero-figure img {
  aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(28, 27, 26, .45);
}
.hero-frame {
  position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  background: var(--red); border-radius: 4px;
  z-index: -1; opacity: .92;
}
.hero-figure figcaption {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  padding: .45rem 1rem; border-radius: 99px;
  background: rgba(28, 27, 26, .78); color: var(--white);
  font-size: .76rem; font-weight: 600; letter-spacing: .07em; white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ════════ ABLAUF ════════ */
.ablauf { padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1280px; margin: 0 auto; list-style: none;
  counter-reset: step;
}
.step {
  position: relative; padding: 2.4rem 2rem 2.2rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -24px rgba(28, 27, 26, .3); }
.step-num {
  font-weight: 800; font-stretch: 125%;
  font-size: 3.2rem; line-height: 1; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 2px var(--red);
}
.step h3 { font-size: 1.35rem; margin: 1rem 0 .7rem; min-height: 2.4em; display: flex; align-items: flex-start; }
.step p { font-size: .96rem; color: var(--ink-soft); }
.step::after {
  content: ""; position: absolute; top: 0; left: 2rem; width: 3.4rem; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.step:hover::after { transform: scaleX(1); }

/* ════════ HÄUSER ════════ */
.haeuser {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, transparent, rgba(28, 27, 26, .03) 12%, rgba(28, 27, 26, .03) 88%, transparent),
    var(--paper-warm);
}
.haus-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  max-width: 1280px; margin: 0 auto;
}
.haus-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  text-decoration: none; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.haus-card:hover { transform: translateY(-6px); box-shadow: 0 28px 44px -24px rgba(28, 27, 26, .35); }
.haus-img { position: relative; overflow: hidden; aspect-ratio: 1; }
.haus-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.haus-card:hover .haus-img img { transform: scale(1.06); }
.haus-badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 1;
  padding: .35rem .75rem; border-radius: 2px;
  background: var(--red); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.haus-meta { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.haus-line {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red);
}
.haus-meta h3 { font-size: 1.2rem; margin: .35rem 0 .15rem; }
.haus-meta p { font-size: .87rem; color: var(--ink-soft); }
.haus-go {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: auto; padding-top: 1rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--ink);
  transition: color .25s;
}
.haus-go svg { width: 1em; height: 1em; fill: currentColor; transition: transform .25s var(--ease); }
.haus-card:hover .haus-go { color: var(--red); }
.haus-card:hover .haus-go svg { transform: translateX(4px); }

/* Danwood-Verweis-Band */
.danwood-band {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  max-width: 1280px; margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.8rem, 4vw, 3rem);
  background: var(--red); color: var(--white); border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(210, 35, 42, .6);
}
.band-mark { width: 56px; height: 56px; fill: var(--white); flex: none; opacity: .95; }
.danwood-band p {
  flex: 1 1 22rem;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600; font-stretch: 110%; line-height: 1.4; letter-spacing: -.01em;
}

/* ════════ VIDEOS ════════ */
.videos { padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem); }
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  max-width: 1280px; margin: 0 auto;
}
.video-card { margin: 0; display: flex; flex-direction: column; }
.video-card iframe, .video-thumb {
  width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 4px;
  display: block;
}
.video-thumb {
  position: relative; overflow: hidden; cursor: pointer;
  padding: 0; background: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover; opacity: .92;
  transition: transform .6s var(--ease), opacity .3s;
}
.video-thumb:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -22px rgba(28, 27, 26, .45); }
.video-thumb:hover img { transform: scale(1.05); opacity: 1; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center;
  width: 4rem; height: 2.8rem; border-radius: 8px;
  background: var(--red); box-shadow: 0 10px 28px -8px rgba(210, 35, 42, .8);
  transition: transform .3s var(--ease), background .25s;
}
.video-play svg { width: 1.6rem; height: 1.6rem; fill: var(--white); }
.video-thumb:hover .video-play { transform: translate(-50%, -50%) scale(1.12); background: var(--red-deep); }
.video-card figcaption {
  margin-top: .9rem;
  font-size: .95rem; font-weight: 600; line-height: 1.4; letter-spacing: -.01em;
}
.video-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* Featured-Video: großes Embed + Textspalte */
.video-featured {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem); align-items: center;
  max-width: 1280px; margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
}
.video-featured figcaption { margin-top: 0; }
.video-tag {
  display: inline-block; margin-bottom: .9rem;
  padding: .35rem .8rem; border-radius: 2px;
  background: var(--red); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.video-featured strong {
  display: block;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; font-stretch: 118%;
  line-height: 1.2; letter-spacing: -.02em;
}
.video-sub { display: block; margin-top: .8rem; font-size: .95rem; font-weight: 400; color: var(--ink-soft); }

/* ════════ TEAM ════════ */
.team {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--ink); color: var(--paper);
}
.team .section-head h2 { color: var(--white); }
.team-lead-wrap {
  display: flex; justify-content: center;
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
}
.team-lead { width: min(320px, 72vw); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  max-width: 1080px; margin: 0 auto;
}
.team-card { margin: 0; }
.team-photo {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 1;
  clip-path: var(--gable);
  background: linear-gradient(160deg, #b71d24, #7e1117);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .6s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card figcaption { margin-top: 1rem; text-align: center; line-height: 1.35; }
.team-card figcaption strong { display: block; font-size: 1.08rem; font-weight: 700; font-stretch: 115%; letter-spacing: -.01em; color: var(--white); }
.team-card figcaption span { font-size: .82rem; letter-spacing: .05em; color: rgba(247, 243, 236, .65); }

/* Platzhalter — Foto folgt */
.team-dummy { display: grid; place-items: center; }
.dummy-initials {
  font-weight: 800; font-stretch: 125%;
  font-size: 3.6rem; letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 2px rgba(255, 253, 249, .9);
  transform: translateY(.4rem);
}
.dummy-tag {
  position: absolute; bottom: .9rem; left: 50%; transform: translateX(-50%);
  padding: .3rem .85rem; border-radius: 99px;
  background: rgba(28, 27, 26, .45); color: var(--white);
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.team-lead .team-photo { box-shadow: 0 0 0 3px var(--red); }

/* ════════ KONTAKT ════════ */
.kontakt {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(900px 500px at 12% 110%, rgba(210, 35, 42, .12), transparent 60%),
    var(--paper);
}
.kontakt-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  max-width: 1180px; margin: 0 auto;
}
.kontakt-copy h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin: 1rem 0 1.2rem; }
.kontakt-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--ink); color: var(--paper); border-radius: 4px;
  text-align: center;
  box-shadow: 0 36px 70px -36px rgba(28, 27, 26, .7);
}
.kontakt-phone {
  font-weight: 800; font-stretch: 120%;
  font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.1; letter-spacing: -.02em;
  color: var(--white); text-decoration: none;
  transition: color .25s;
}
.kontakt-phone:hover { color: #ff8d92; }
.kontakt-phone-label {
  display: block; margin-top: .4rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
}
.kontakt-card address {
  margin-top: 1.6rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(247, 243, 236, .18);
  font-style: normal; font-size: .95rem; line-height: 1.7;
  color: rgba(247, 243, 236, .8);
}
.kontakt-mail { color: var(--white); font-weight: 600; text-underline-offset: 3px; }
.kontakt-mail:hover { color: #ff8d92; }

/* ════════ FOOTER / IMPRESSUM ════════ */
.site-footer { background: var(--paper-warm); border-top: 1px solid var(--line); }
.impressum {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
}
.impressum h2 { font-size: 1.9rem; margin-bottom: 2rem; }
.impressum-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.impressum h3 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red);
  margin-bottom: .7rem;
}
.impressum p { font-size: .88rem; color: var(--ink-soft); line-height: 1.7; }
.impressum a { color: var(--red); font-weight: 600; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

.footer-base {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  max-width: 1180px; margin: 0 auto;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem) 2rem;
  border-top: 1px solid var(--line);
}
.brand-footer .brand-mark { width: 26px; height: 26px; }
.brand-footer .brand-text strong { font-size: .8rem; }
.footer-base p { font-size: .8rem; color: var(--ink-soft); margin-left: auto; }
.to-top {
  display: grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border: 1.5px solid var(--ink); border-radius: 50%;
  text-decoration: none; font-size: 1rem;
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.to-top:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1080px) {
  .haus-grid { grid-template-columns: repeat(3, 1fr); }
  .impressum-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { max-width: 540px; }
  .steps { grid-template-columns: 1fr; max-width: 560px; }
  .kontakt-inner { grid-template-columns: 1fr; }
  .haus-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; max-width: 560px; }
  .video-featured { grid-template-columns: 1fr; }

  /* Mobile-Nav */
  .site-header { gap: .8rem; }
  .header-yt { margin-left: auto; padding: .55rem .7rem; }
  .header-yt span { display: none; }

  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; flex: none;
    background: none; border: 1.5px solid var(--ink); border-radius: 2px; cursor: pointer;
    padding: 0 9px;
  }
  .nav-toggle span { height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Dropdown hängt direkt unter dem (sticky) Header — Höhe egal */
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px -18px rgba(28, 27, 26, .35);
    padding: .5rem 1.5rem 1rem;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav a:last-child { border-bottom: 0; }

  .header-cta span { display: none; }
  .header-cta { padding: .6rem .7rem; flex: none; }
}

@media (max-width: 540px) {
  .hero-copy h1 br { display: none; }   /* natürliche Umbrüche auf schmalen Screens */
  .hero-copy h1 { font-size: clamp(1.8rem, 7.6vw, 2.2rem); }
  .haus-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .dummy-initials { font-size: 3rem; }
  .impressum-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-base p { margin-left: 0; }
}
