/* ============================================
   Hofmann Bedachungen – Portfolio Demo CSS
   Namespace: --hw-* / .hw-*
   ============================================ */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/jakarta-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

/* --- Tokens --- */
:root {
  --hw-bg:         #f3f2ef;
  --hw-surface:    #ffffff;
  --hw-ink:        #1a1c1e;
  --hw-slate:      #23262a;
  --hw-muted:      #6b6f73;
  --hw-accent:     #c75b39;
  --hw-accent-dp:  #a8442a;
  --hw-line:       rgba(0,0,0,0.09);
  --hw-glass:      rgba(255,255,255,0.12);
  --hw-ease:       cubic-bezier(0.32,0.72,0,1);
  --hw-font-head:  'Plus Jakarta Sans', system-ui, sans-serif;
  --hw-font-body:  'Inter', system-ui, sans-serif;
  --hw-container:  1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--hw-font-body);
  font-size: 16px;
  color: var(--hw-ink);
  background: var(--hw-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
ul[role="list"] { list-style: none; }
a { color: inherit; }
img, picture { display: block; width: 100%; }

/* --- Skip link --- */
.hw-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hw-skip-link:focus {
  position: fixed;
  top: 16px; left: 16px;
  width: auto; height: auto;
  padding: 8px 16px;
  background: var(--hw-accent);
  color: #fff;
  border-radius: 8px;
  z-index: 9999;
  font-size: 14px;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.hw-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 16px 12px 24px;
  background: rgba(20,16,12,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9999px;
  transition: background 0.4s var(--hw-ease), top 0.4s var(--hw-ease), box-shadow 0.4s var(--hw-ease);
  width: max-content;
  max-width: calc(100vw - 32px);
}
.hw-nav.is-scrolled {
  background: rgba(30,25,20,0.92);
  top: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hw-nav-brand {
  font-family: var(--hw-font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}
.hw-nav-brand-sub {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.hw-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.hw-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s;
}
.hw-nav-links a:hover { color: #fff; }

.hw-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--hw-accent);
  border-radius: 9999px;
  color: #fff;
  font-family: var(--hw-font-head);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s var(--hw-ease);
}
.hw-nav-cta:hover { background: var(--hw-accent-dp); }

.hw-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hw-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.35s var(--hw-ease), opacity 0.25s;
  transform-origin: center;
}
.hw-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hw-burger.is-open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.hw-nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(20,16,12,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hw-nav-mobile.is-open { display: flex; }
.hw-mobile-link {
  font-family: var(--hw-font-head);
  font-size: 30px;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.2s;
}
.hw-nav-mobile.is-open .hw-mobile-link {
  animation: hw-slide-in 0.45s var(--hw-ease) forwards;
}
.hw-nav-mobile.is-open .hw-mobile-link:nth-child(1) { animation-delay: 0.06s; }
.hw-nav-mobile.is-open .hw-mobile-link:nth-child(2) { animation-delay: 0.12s; }
.hw-nav-mobile.is-open .hw-mobile-link:nth-child(3) { animation-delay: 0.18s; }
.hw-nav-mobile.is-open .hw-mobile-link:nth-child(4) { animation-delay: 0.24s; }
.hw-mobile-link:hover { color: #fff; }

@keyframes hw-slide-in {
  to { opacity: 1; transform: none; }
}

/* ===========================================
   HERO
   =========================================== */
.hw-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #1a1714;
}
.hw-hero-bg {
  position: absolute;
  inset: 0;
}
.hw-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,7,5,0.90) 0%,
    rgba(14,10,7,0.55) 45%,
    rgba(0,0,0,0.25) 100%
  );
}
.hw-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 230px;
  max-width: 880px;
}
.hw-hero-eyebrow {
  font-family: var(--hw-font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--hw-accent);
  margin-bottom: 20px;
  display: block;
}
.hw-hero-headline {
  font-family: var(--hw-font-head);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hw-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 40px;
}
.hw-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Primary CTA — Button-in-Button */
.hw-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 16px 28px;
  background: var(--hw-accent);
  border-radius: 9999px;
  color: #fff;
  font-family: var(--hw-font-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--hw-ease), transform 0.2s var(--hw-ease);
}
.hw-btn-primary:hover { background: var(--hw-accent-dp); }
.hw-btn-primary:active { transform: scale(0.98); }
.hw-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.20);
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s var(--hw-ease);
}
.hw-btn-primary:hover .hw-btn-icon,
.hw-btn-kontakt:hover .hw-btn-icon { transform: translate(2px,-2px) scale(1.08); }

/* Glass outline CTA */
.hw-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--hw-glass);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 9999px;
  color: #fff;
  font-family: var(--hw-font-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s var(--hw-ease);
}
.hw-btn-glass:hover { background: rgba(255,255,255,0.22); }

/* Stats bar */
.hw-stats {
  position: absolute;
  bottom: 40px;
  left: 64px;
  right: 64px;
  display: flex;
  background: rgba(12,10,8,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
}
.hw-stat {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.09);
}
.hw-stat:last-child { border-right: none; }
.hw-stat-value {
  font-family: var(--hw-font-head);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hw-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  margin-top: 5px;
  text-transform: uppercase;
}

/* ===========================================
   SHARED SECTION STYLES
   =========================================== */
.hw-section {
  padding: 96px 0;
}
.hw-section--light { background: var(--hw-bg); }
.hw-section--white { background: var(--hw-surface); }

.hw-container {
  max-width: var(--hw-container);
  margin: 0 auto;
  padding: 0 48px;
}
.hw-section-header { margin-bottom: 56px; }

.hw-eyebrow {
  display: block;
  font-family: var(--hw-font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--hw-accent);
  margin-bottom: 14px;
}
.hw-eyebrow--light { color: rgba(199,91,57,0.80); }

.hw-section-headline {
  font-family: var(--hw-font-head);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 700;
  color: var(--hw-ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hw-section-headline--sm {
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 24px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--hw-ease), transform 0.65s var(--hw-ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }

/* Honest placeholder styling */
.hw-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.hw-placeholder span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.55);
  padding: 6px 10px;
  border-radius: 6px;
  max-width: 280px;
}

.hw-placeholder--hero {
  background: linear-gradient(150deg, #3a3530 0%, #252119 50%, #1a1714 100%);
  position: absolute;
  inset: 0;
}
.hw-placeholder--hero span {
  color: rgba(255,255,255,0.50);
  background: rgba(0,0,0,0.40);
}

.hw-placeholder--portrait {
  background: linear-gradient(160deg, #c8c3bc 0%, #b0aaa3 100%);
  height: 100%;
  min-height: 100%;
}

.hw-placeholder--ref {
  background: linear-gradient(145deg, #bab5ae 0%, #9e9890 100%);
  position: absolute;
  inset: 0;
}

.hw-placeholder--kontakt {
  background: linear-gradient(150deg, #2e2c28 0%, #1e1c1a 100%);
  height: 100%;
  min-height: 100%;
}
.hw-placeholder--kontakt span {
  color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.35);
}

/* ===========================================
   LEISTUNGEN
   =========================================== */
.hw-leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Double-Bezel card */
.hw-card-outer {
  background: var(--hw-surface);
  border: 1px solid var(--hw-line);
  border-radius: 20px;
  padding: 3px;
  transition: border-color 0.35s var(--hw-ease), box-shadow 0.35s var(--hw-ease), transform 0.35s var(--hw-ease);
}
.hw-card-outer:hover {
  border-color: rgba(199,91,57,0.28);
  box-shadow: 0 8px 32px rgba(199,91,57,0.09);
  transform: translateY(-3px);
}
.hw-card-inner {
  background: var(--hw-surface);
  border-radius: 17px;
  padding: 28px 28px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  height: 100%;
  position: relative;
}
.hw-card-num {
  display: block;
  font-family: var(--hw-font-head);
  font-size: 52px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(199,91,57,0.18);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.hw-card-title {
  font-family: var(--hw-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--hw-ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.hw-card-text {
  font-size: 14px;
  color: var(--hw-muted);
  line-height: 1.65;
}

/* ===========================================
   ÜBER
   =========================================== */
.hw-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.hw-portrait-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.hw-divider {
  width: 36px;
  height: 3px;
  background: var(--hw-accent);
  margin-bottom: 24px;
  border-radius: 2px;
}
.hw-about-story {
  font-size: 15px;
  color: var(--hw-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.hw-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hw-badge {
  display: inline-block;
  padding: 7px 14px;
  border: 1.5px solid rgba(199,91,57,0.32);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hw-accent);
  letter-spacing: 0.02em;
}

/* ===========================================
   REFERENZEN
   =========================================== */
.hw-refs-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.hw-ref-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #c0bbb4;
}
.hw-ref-card--large {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 320px;
}
.hw-ref-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(14,10,7,0.82) 0%, transparent 100%);
}
.hw-ref-tag {
  display: inline-block;
  font-family: var(--hw-font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hw-accent);
  margin-bottom: 6px;
}
.hw-ref-title {
  font-family: var(--hw-font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ===========================================
   ABLAUF
   =========================================== */
.hw-ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  padding-top: 32px;
}
.hw-ablauf-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--hw-accent) 0%, var(--hw-accent-dp) 100%);
  opacity: 0.55;
}
.hw-step {
  padding: 0 20px 0 16px;
  text-align: center;
  position: relative;
}
.hw-step-ring {
  width: 56px;
  height: 56px;
  margin: -28px auto 22px;
  border-radius: 50%;
  background: var(--hw-surface);
  border: 2px solid var(--hw-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hw-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--hw-accent);
  box-shadow: 0 0 0 5px var(--hw-surface);
}
.hw-step-title {
  font-family: var(--hw-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--hw-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.hw-step-text {
  font-size: 13px;
  color: var(--hw-muted);
  line-height: 1.65;
}

/* ===========================================
   KONTAKT
   =========================================== */
.hw-kontakt {
  background: var(--hw-slate);
  padding: 96px 0;
}
.hw-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hw-kontakt-headline {
  font-family: var(--hw-font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hw-kontakt-list {
  list-style: none;
  margin-bottom: 40px;
}
.hw-kontakt-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hw-kontakt-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.hw-kontakt-item--notdienst {
  background: rgba(199,91,57,0.10);
  padding: 14px 12px;
  border-radius: 8px;
  border-top: none !important;
  border-bottom: none !important;
  margin: 6px 0;
}
.hw-kontakt-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.32);
}
.hw-kontakt-value {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
}
a.hw-kontakt-value { text-decoration: none; transition: color 0.2s; }
a.hw-kontakt-value:hover { color: #fff; }
.hw-kontakt-value--accent {
  color: var(--hw-accent);
  font-family: var(--hw-font-head);
  font-size: 20px;
  font-weight: 700;
}
a.hw-kontakt-value--accent:hover { color: #d97254; }

.hw-btn-kontakt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 16px 28px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 9999px;
  color: #fff;
  font-family: var(--hw-font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s var(--hw-ease), border-color 0.3s var(--hw-ease);
}
.hw-btn-kontakt:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.42);
}
.hw-btn-kontakt .hw-btn-icon { background: rgba(255,255,255,0.10); }

.hw-kontakt-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

/* Toast */
.hw-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: rgba(30,28,24,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 9999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--hw-ease), transform 0.35s var(--hw-ease);
  z-index: 200;
}
.hw-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================================
   FOOTER
   =========================================== */
.hw-footer {
  background: #191c1f;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hw-footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.hw-footer-link-main {
  color: rgba(255,255,255,0.48);
  text-decoration: none;
}
.hw-footer-link-main:hover { color: rgba(255,255,255,0.75); }
.hw-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hw-footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.hw-footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ===========================================
   RESPONSIVE 900px
   =========================================== */
@media (max-width: 900px) {
  .hw-nav-links,
  .hw-nav-cta { display: none; }
  .hw-burger { display: flex; }
  .hw-nav { padding: 10px 12px 10px 20px; top: 12px; }

  .hw-hero-content { padding: 0 32px 230px; }
  .hw-stats { left: 24px; right: 24px; bottom: 24px; }
  .hw-stat { padding: 16px 18px; }
  .hw-stat-value { font-size: 22px; }

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

  .hw-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hw-portrait-wrap { aspect-ratio: 3/2; }

  .hw-refs-grid { grid-template-columns: 1fr 1fr; }
  .hw-ref-card--large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
    min-height: auto;
  }

  .hw-ablauf-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hw-ablauf-grid::before { display: none; }
  .hw-step-ring { margin-top: 0; margin-bottom: 16px; }

  .hw-kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .hw-kontakt-img-wrap { clip-path: none; }
}

/* ===========================================
   RESPONSIVE 600px
   =========================================== */
@media (max-width: 600px) {
  .hw-container { padding: 0 20px; }
  .hw-section { padding: 64px 0; }

  .hw-hero-content { padding: 0 20px 220px; }
  .hw-hero-headline { letter-spacing: -0.02em; }

  .hw-stats {
    left: 12px;
    right: 12px;
    bottom: 16px;
    flex-direction: column;
    border-radius: 12px;
  }
  .hw-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hw-stat:last-child { border-bottom: none; }
  .hw-stat-value { font-size: 20px; }
  .hw-stat-label { margin-top: 0; }

  .hw-leistungen-grid { grid-template-columns: 1fr; }
  .hw-refs-grid { grid-template-columns: 1fr; }
  .hw-ref-card--large { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; min-height: auto; }
  .hw-ablauf-grid { grid-template-columns: 1fr; gap: 32px; }

  .hw-footer { flex-direction: column; align-items: flex-start; padding: 20px; }
  .hw-footer-links { gap: 14px; }
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hw-mobile-link {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
