/* ============================================================
   HOFFUTEC 2026 — Page Components
   File 2/2 — Hero, Trust, Service-Cards, Feature-Grid, Gallery,
   Image-Frame, Process, CTA-Band, Contact, Prose
   ============================================================ */

/* ---------- Joint motif (recurring "Fuge" line) ---------- */
.fuge-rule {
  height: 6px;
  width: 100%;
  background:
    linear-gradient(90deg, var(--brick) 0 36px, transparent 36px),
    repeating-linear-gradient(90deg, var(--line) 0 14px, transparent 14px 22px);
  background-position: 0 50%, 0 50%;
  background-size: 100% 2px, 100% 2px;
  background-repeat: no-repeat, repeat-x;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  /* faint vertical "joints" texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 88px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(closest-side, rgba(150,58,58,0.40), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brick-light);
  margin-bottom: 22px;
}
.hero__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brick-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  hyphens: auto;
}
.hero h1 .accent { color: var(--steel-light); }
.hero h1 .accent--brand { color: var(--brick-light); }
.hero__lead {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.74);
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media {
  position: relative;
}
.hero__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  background: #2a2a2e;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,16,16,0.5));
}
.hero__badge {
  position: absolute;
  left: -22px; bottom: 26px;
  background: #fff; color: var(--ink);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.hero__badge svg { width: 30px; height: 30px; color: var(--brick); flex: 0 0 auto; }
.hero__badge b { display: block; font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1; }
.hero__badge span { font-size: 12.5px; color: var(--text-soft); }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
  padding-block: 24px;
}
.trust__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-right: 6px;
}
.trust__item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.trust__item svg { width: 17px; height: 17px; color: var(--brick-light); }

/* ============================================================
   SERVICE CARDS (overview grid)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--brick);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleY(1); }
.svc-card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brick-tint);
  color: var(--brick);
  margin-bottom: 22px;
}
.svc-card__icon svg { width: 31px; height: 31px; }
.svc-card h3 { font-size: 21px; margin-bottom: 9px; letter-spacing: -0.01em; }
.svc-card p { color: var(--text-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.svc-card__more {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--brick);
  transition: gap 0.25s var(--ease);
}
.svc-card__more svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.svc-card:hover .svc-card__more { gap: 11px; }
.svc-card:hover .svc-card__more svg { transform: translateX(2px); }
.svc-card--inquiry {
  justify-content: center;
  background: var(--ink);
  border-color: transparent;
  color: #fff;
}
.svc-card--inquiry h3 {
  color: #fff;
  font-size: 23px;
}
.svc-card--inquiry p {
  color: rgba(255,255,255,0.72);
}
.svc-card--inquiry .btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* ============================================================
   SERVICE PAGE HERO (compact)
   ============================================================ */
.page-hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; top: -40%; right: -8%;
  width: 50%; height: 160%;
  background: radial-gradient(closest-side, rgba(150,58,58,0.34), transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(46px, 6vw, 78px);
}
.breadcrumb {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; opacity: 0.5; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5.5vw, 60px); hyphens: auto; }
.page-hero__lead {
  margin-top: 20px; max-width: 50ch;
  font-size: clamp(15.5px, 1.6vw, 18px);
  color: rgba(255,255,255,0.74); line-height: 1.65;
}
.page-hero__norms { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.norm-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9);
}
.norm-chip svg { width: 14px; height: 14px; color: var(--brick-light); }
.page-hero__media .hero__frame { aspect-ratio: 5 / 4; }
.page-hero__media .hero__frame--compare { aspect-ratio: 1456 / 1050; }

/* ============================================================
   FEATURE / CAPABILITY GRID
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 26px;
}
.feat {
  display: flex;
  gap: 16px;
  padding: 22px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.section--bone .feat { background: #fff; }
.feat:hover { border-color: transparent; box-shadow: var(--sh-sm); transform: translateY(-2px); }
.feat__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--brick-tint);
  color: var(--brick);
}
.feat__icon svg { width: 24px; height: 24px; }
.feat__body h3 { font-size: 17px; margin-bottom: 5px; letter-spacing: -0.01em; }
.feat__body p { font-size: 14px; color: var(--text-soft); line-height: 1.55; }

/* Checklist (compact bullet list, modern) */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.check-list.cols-2 { grid-template-columns: 1fr 1fr; gap: 13px 30px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; line-height: 1.5; color: var(--text);
}
.check-list li svg {
  flex: 0 0 auto; width: 21px; height: 21px; margin-top: 1px;
  color: var(--brick);
}
.check-list li b, .check-list li strong { font-weight: 700; color: var(--ink); }

/* Tag chips (Einsatzbereiche) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; color: var(--text);
}
.section--bone .chip { background: #fff; }
.chip svg { width: 15px; height: 15px; color: var(--brick); }

/* Grouped capability cards (z.B. Hochbau) */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-card {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.section--bone .cap-card { background: #fff; }
.cap-card__head {
  display: flex; align-items: center; gap: 13px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cap-card__icon {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 11px; background: var(--brick-tint); color: var(--brick);
}
.cap-card__icon svg { width: 23px; height: 23px; }
.cap-card__head h3 { font-size: 18px; letter-spacing: -0.01em; }

/* Split content: lead text + aside */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.split__sticky { position: sticky; top: calc(var(--nav-h) + 30px); }
.prose p { font-size: 16.5px; line-height: 1.75; color: var(--text-soft); }
.prose p + p { margin-top: 18px; }
.prose strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   IMAGE FRAME / GALLERY
   ============================================================ */
.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  background: var(--bone-2);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery a {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bone-2);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery a img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,16,0.35));
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.gallery a:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.gallery a:hover .gallery__cap { opacity: 1; transform: none; }

/* ============================================================
   PROCESS TIMELINE (Sanierung)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 14px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--brick);
  margin-bottom: 16px;
}
.process__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--brick-tint); color: var(--brick);
  margin-bottom: 16px;
}
.process__icon svg { width: 25px; height: 25px; }
.process__step h3 { font-size: 18px; margin-bottom: 7px; }
.process__step p { font-size: 14px; color: var(--text-soft); line-height: 1.55; }

/* Sanierung area cards (with photo) */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.area-card__img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--bone-2); }
.area-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.area-card:hover .area-card__img img { transform: scale(1.06); }
.area-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.area-card__body h3 { font-size: 17px; letter-spacing: -0.01em; }
.area-card__body span { font-size: 13.5px; color: var(--text-soft); }

/* Highlight callout (Wartungsvertrag, Zertifizierung) */
.callout {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, var(--brick) 0%, var(--brick-dark) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-brick);
  position: relative;
  overflow: hidden;
}
.callout::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(closest-side, rgba(255,255,255,0.12), transparent);
}
.callout__icon {
  flex: 0 0 auto;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
}
.callout__icon svg { width: 34px; height: 34px; color: #fff; }
.callout__body { flex: 1; position: relative; z-index: 1; }
.callout__body h3 { color: #fff; font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 8px; }
.callout__body p { color: rgba(255,255,255,0.86); max-width: 60ch; }
.callout .btn { flex: 0 0 auto; position: relative; z-index: 1; }

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: left; }
.stat b { display: block; font-size: clamp(34px, 4vw, 48px); font-weight: 800; color: var(--brick); line-height: 1; letter-spacing: -0.02em; }
.stat span { display: block; margin-top: 10px; font-size: 14.5px; color: var(--text-soft); }
.section--ink .stat span { color: rgba(255,255,255,0.66); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); max-width: 18ch; }
.cta-band p { margin-top: 18px; color: rgba(255,255,255,0.72); font-size: 18px; max-width: 52ch; }
.cta-band__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(150,58,58,0.34), transparent 70%);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: transparent; }
.contact-card__icon {
  flex: 0 0 auto; width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px; background: var(--brick-tint); color: var(--brick);
}
.contact-card__icon svg { width: 25px; height: 25px; }
.contact-card .lbl { font-size: 11.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: 3px; }
.contact-card .val { font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.35; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--sh-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 15px; color: var(--text);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bone);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brick);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(150,58,58,0.10);
}
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-privacy {
  grid-column: 1 / -1;
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13.5px; color: var(--text-soft); line-height: 1.5;
}
.form-privacy input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--brick); flex: 0 0 auto; }
.form-privacy a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }
.contact-form .btn { grid-column: 1 / -1; width: 100%; }
.form-note { grid-column: 1 / -1; font-size: 12.5px; color: var(--text-faint); margin: 0; }
.form-status { grid-column: 1 / -1; font-size: 14px; font-weight: 600; margin: 0; }
.form-status.is-ok { color: #1f8a4c; }
.form-status.is-error { color: var(--brick); }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.legal__toc { position: sticky; top: calc(var(--nav-h) + 30px); }
.legal__toc-title {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text-faint); margin: 0 0 14px;
}
.legal__toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.legal__toc li { margin-bottom: 2px; }
.legal__toc a {
  display: block; padding: 7px 12px; border-radius: var(--r-sm);
  font-size: 14px; color: var(--text-soft); line-height: 1.4;
  border-left: 2px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.legal__toc a:hover { background: var(--bone); color: var(--ink); border-left-color: var(--brick); }

.legal-prose { max-width: 760px; }
.legal-section { padding-block: 26px; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 24px); }
.legal-section:first-child { border-top: 0; padding-top: 0; }
.legal-section h2 {
  font-size: 21px; letter-spacing: -0.01em; margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 12px;
}
.legal-section h2 .sec-num {
  font-size: 13px; font-weight: 800; color: var(--brick);
  letter-spacing: 0.04em; flex: 0 0 auto;
}
.legal-section p { color: var(--text-soft); line-height: 1.75; margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }
.legal-section ul { list-style: none; margin: 6px 0 14px; padding: 0; display: grid; gap: 9px; }
.legal-section ul li {
  display: flex; align-items: flex-start; gap: 11px;
  color: var(--text-soft); line-height: 1.5;
}
.legal-section ul li::before {
  content: ""; flex: 0 0 auto; width: 6px; height: 6px; margin-top: 9px;
  border-radius: 50%; background: var(--brick);
}

/* Info cards (Impressum) */
.legal-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 28px; }
.legal-card {
  padding: 26px 28px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
}
.legal-card h2 { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--brick); margin-bottom: 12px; text-transform: uppercase; }
.legal-card p { color: var(--text); line-height: 1.7; margin: 0; }
.legal-card a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }
.legal-card.full { grid-column: 1 / -1; }
.legal-card .credits { font-size: 13px; color: var(--text-soft); line-height: 1.75; }

@media (max-width: 880px) {
  .legal { grid-template-columns: 1fr; }
  .legal__toc { position: static; display: none; }
  .legal-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
  .hero__badge { left: 18px; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__media { max-width: 520px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process, .area-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .split { grid-template-columns: 1fr; }
  .split__sticky { position: static; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .svc-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .check-list.cols-2 { grid-template-columns: 1fr; }
  .process, .area-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero__actions .btn, .cta-band__actions .btn { flex: 1 1 auto; }
}
@media (max-width: 440px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
