
:root {
  --bg: #0b1220;
  --bg-soft: #111827;
  --surface: rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.09);
  --card: #ffffff;
  --line: rgba(148,163,184,0.18);
  --line-strong: rgba(148,163,184,0.28);
  --text: #e5edf8;
  --text-soft: #d2dced;
  --text-dark: #101827;
  --muted-dark: #4b5563;
  --accent: #ffb020;
  --accent-2: #ffd166;
  --success: #10b981;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 80px rgba(2, 8, 23, 0.34);
  --shadow-md: 0 16px 46px rgba(2, 8, 23, 0.18);
  --container: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(245,158,11,0.12), transparent 28%),
    radial-gradient(circle at right 10% bottom 20%, rgba(59,130,246,0.10), transparent 24%),
    #f3f6fb;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

main { overflow: clip; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 92px 0; }
.section--tight { padding: 68px 0; }
.surface-dark {
  background: linear-gradient(180deg, rgba(8,15,29,0.98), rgba(11,18,32,0.96));
  color: var(--text);
}
.surface-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72));
  backdrop-filter: blur(18px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245,158,11,0.12);
  color: #a85f00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(245,158,11,0.14);
}
.surface-dark .eyebrow {
  background: rgba(245,158,11,0.12);
  color: #ffd58a;
}
.h1, h1 {
  margin: 18px 0 18px;
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: .95;
  letter-spacing: -0.04em;
}
.h2, h2 {
  margin: 14px 0 16px;
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.h3, h3 {
  margin: 0 0 10px;
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 1rem;
  color: inherit;
  line-height: 1.7;
}
.lead {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-soft);
}
.body-copy {
  color: var(--muted-dark);
  max-width: 68ch;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-head p { max-width: 62ch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(8,15,29,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 58px;
  height: 80px;
  padding: 8px;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8c948, #f4b31f);
  box-shadow: 0 12px 28px rgba(245, 176, 32, 0.22);
}
.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}
.brand-copy strong {
  color: #ffffff;
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.brand-copy small {
  color: rgba(229,237,248,0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(229,237,248,0.9);
  font-weight: 600;
  font-size: 15px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.nav a:hover,
.nav a.is-active {
  background: rgba(255,255,255,0.08);
  color: white;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: white;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1c1200;
  box-shadow: 0 18px 36px rgba(245,158,11,0.24);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
}
.btn--light {
  background: white;
  color: var(--text-dark);
  border-color: rgba(15,23,42,0.10);
  box-shadow: var(--shadow-md);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  position: relative;
  padding: 44px 0 34px;
  background:
    radial-gradient(circle at top right, rgba(245,158,11,0.20), transparent 18%),
    radial-gradient(circle at left 10% 10%, rgba(59,130,246,0.14), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #0b1220 100%);
  color: var(--text);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(7,17,31,0), rgba(7,17,31,0.42));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
  gap: 36px;
  align-items: stretch;
}
.hero-copy {
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5,10,20,0.97), rgba(10,17,30,0.84));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow-lg);
}
.hero-copy .lead {
  max-width: 58ch;
  color: rgba(255,255,255,0.92);
}
.hero h1,
.hero h2 {
  max-width: 11.5ch;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.35vw, 4.9rem);
  line-height: 0.98;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-shadow: 0 10px 34px rgba(0,0,0,0.34);
}
.hero .eyebrow {
  background: rgba(255,209,102,0.16);
  color: #ffe7b7;
  border: 1px solid rgba(255,209,102,0.20);
}
.hero .eyebrow::before { box-shadow: 0 0 0 8px rgba(255,176,32,0.16); }
.hero-accent {
  color: #ffd97a;
}
.hero .badge { color: #ffffff; }
.hero .info-chip { color: #eef4ff; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}
.hero-copy > * {
  position: relative;
  z-index: 1;
}
.hero-side,
.visual-card {
  min-width: 0;
}
.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8,18,34,0.46);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.hero-side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
}
.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: none;
  box-shadow: 0 24px 56px rgba(2,8,23,0.22);
  background-clip: padding-box;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-grid.svg") center/cover no-repeat;
  opacity: .94;
}

.visual-card--photo {
  background-color: #091320;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
}

.visual-card--photo::before {
  background:
    linear-gradient(180deg, rgba(6,12,22,0.02), rgba(6,12,22,0.24)),
    linear-gradient(90deg, rgba(6,12,22,0.08), rgba(6,12,22,0.02));
  opacity: 1;
}

.visual-card--photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7,17,31,0), rgba(7,17,31,0.58));
  pointer-events: none;
}

.visual-card--home {
  background-image: url("../img/hero-home.jpg");
  background-position: 34% center;
}

.visual-card--angebote {
  background-image: url("../img/hero-angebote.jpg");
  background-position: 42% center;
}

.visual-card--standorte {
  background-image: url("../img/hero-standorte.jpg");
  background-position: 58% center;
}
.stat-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card {
  min-height: 126px;
  padding: 18px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(11,20,38,0.90), rgba(16,28,48,0.78));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 36px rgba(2,8,23,0.24);
}
.stat-card strong {
  display: block;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.28);
}
.stat-card span {
  max-width: 16ch;
  color: rgba(244,247,255,0.96);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.info-marquee {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info-chip {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9,18,34,0.86), rgba(14,27,48,0.76));
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(2,8,23,0.18);
}

.feature-band {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}
.feature-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 22px 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 156px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-md);
}
.feature-card strong {
  display: block;
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.12;
}
.feature-card p {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,0.12);
  color: #a85f00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card,
.value-card,
.location-card,
.info-card,
.legal-card,
.faq-item,
.process-card {
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-md);
}
.service-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-dark);
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .88fr);
  gap: 26px;
  align-items: stretch;
}
.split-panel {
  padding: 34px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.84));
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-md);
}
.split-panel--list {
  align-items: flex-start;
}
.split-panel-title {
  margin-bottom: 18px;
  color: #101827;
}
.bullet-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}
.bullet-list--dark {
  color: #101827;
}
.split-panel--dark {
  background: linear-gradient(180deg, rgba(8,15,29,0.96), rgba(11,18,32,0.96));
  color: var(--text);
  border-color: rgba(255,255,255,0.08);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.metric {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.metric strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.metric span { color: var(--text-soft); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.process-card {
  min-height: 100%;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,254,0.92));
}
.process-step {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(245,158,11,0.14);
  color: #a85f00;
  font-weight: 800;
  margin-bottom: 18px;
}
.process-card h3 {
  margin-bottom: 12px;
}
.process-card p {
  margin: 0;
  color: var(--muted-dark);
}

.dark-showcase {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0d1729, #0b1220);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.equipment-card {
  padding: 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 138px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.equipment-card strong {
  display: block;
  margin: 0;
  line-height: 1.12;
}
.equipment-card p {
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.location-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.location-card p { color: var(--muted-dark); margin: 0; }
.location-card a.inline-link,
.inline-link {
  color: #a85f00;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}
.filter-btn {
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.74);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.filter-btn.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1c1200;
  border-color: transparent;
}


.gallery-section {
  padding-top: 24px;
}
.gallery-slider {
  position: relative;
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-md);
}
.gallery-viewport {
  overflow: hidden;
  border-radius: 26px;
}
.gallery-track {
  display: flex;
  transition: transform .6s ease;
  touch-action: pan-y;
  will-change: transform;
}
.gallery-slide {
  min-width: 100%;
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 26px;
  background: #0b1220;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(2,8,23,0), rgba(2,8,23,0.72));
  pointer-events: none;
}
.gallery-slide figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.gallery-arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.82);
  color: #101827;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(2,8,23,0.10);
}
.gallery-dots {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.gallery-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148,163,184,0.45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.gallery-dot.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: scale(1.18);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 22px;
}
.info-card,
.legal-card,
.faq-item {
  padding: 28px;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}
.contact-item {
  display: grid;
  gap: 4px;
}
.contact-item span {
  color: var(--muted-dark);
  font-size: 14px;
}
.form-card {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 14px;
  font-weight: 700;
  color: #364152;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.34);
  background: rgba(255,255,255,0.88);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(245,158,11,0.7);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.16);
}
.field--full { grid-column: 1 / -1; }
.form-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted-dark);
}
.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(16,185,129,0.10);
  color: #065f46;
  font-weight: 700;
}
.form-success.is-visible { display: block; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.faq-item p { color: var(--muted-dark); margin: 0; }

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .52fr);
  gap: 22px;
}
.legal-stack {
  display: grid;
  gap: 18px;
}
.legal-card p,
.legal-card li { color: var(--muted-dark); }
.legal-card ul { margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.legal-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}
.small-note {
  font-size: 14px;
  color: var(--muted-dark);
}

.contact-panel-centered {
  align-items: center;
  text-align: center;
}
.contact-panel-centered .lead {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-panel-centered .btn-row {
  width: 100%;
  justify-content: center;
}

.site-footer {
  padding: 28px 0 34px;
  background: #08101d;
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 24px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .brand-mark {
  width: 64px;
  height: 88px;
}
.footer-brand-copy {
  display: grid;
  gap: 4px;
}
.footer-brand-copy strong {
  color: #ffffff;
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.footer-brand-copy span {
  color: rgba(229,237,248,0.82);
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-soft);
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-section,
  .contact-wrap,
  .legal-layout { grid-template-columns: 1fr; }
  .feature-grid,
  .card-grid,
  .process-grid,
  .faq-grid,
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-aside { position: static; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 76px; }
  .hero h1,
  .hero h2 { max-width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .burger { display: inline-grid; place-items: center; }
  .nav-wrap {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 24px;
    background: rgba(8,15,29,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .25s ease;
  }
  .nav-wrap.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav {
    flex-direction: column;
    align-items: stretch;
  }
  .nav a { border-radius: 16px; }
  .header-actions .btn { display: none; }
  .feature-grid,
  .card-grid,
  .process-grid,
  .faq-grid,
  .location-grid,
  .info-marquee,
  .stat-panel,
  .metric-grid,
  .equipment-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .visual-card { min-height: 320px; }
  .brand-copy strong { font-size: .94rem; }
  .brand-copy small { font-size: .82rem; }
}

@media (max-width: 860px) {
  .feature-card,
  .equipment-card {
    align-items: center;
    text-align: center;
  }
  .feature-card p,
  .equipment-card p {
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-head p,
  .section-head .lead {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  :root { --container: min(1180px, calc(100vw - 20px)); }
  .gallery-slider { padding: 14px; border-radius: 24px; }
  .gallery-slide { aspect-ratio: 4 / 5; border-radius: 20px; }
  .gallery-slide figcaption { left: 14px; right: 14px; bottom: 12px; font-size: 14px; }
  .gallery-controls { gap: 10px; margin-top: 14px; }
  .gallery-arrow { width: 46px; height: 46px; border-radius: 14px; }
  .hero { padding-top: 26px; }
  .brand { gap: 10px; }
  .brand-mark { width: 48px; height: 66px; padding: 7px; border-radius: 16px; }
  .brand-copy strong { font-size: .86rem; }
  .brand-copy small { font-size: .76rem; }
  .hero-copy,
  .split-panel,
  .dark-showcase,
  .form-card,
  .info-card,
  .legal-card,
  .faq-item,
  .process-card,
  .service-card,
  .location-card,
  .feature-card { padding: 22px; border-radius: 24px; }
  .btn { width: 100%; }
  .btn-row { display: grid; }
  .eyebrow { font-size: 11px; }
  .section-head {
    gap: 12px;
    margin-bottom: 22px;
  }
}
