:root {
  --deep: #020617;
  --ink: #0f172a;
  --panel: #111827;
  --panel-soft: #1f2937;
  --paper: #f8fafc;
  --stone: #e7e2d7;
  --muted: #94a3b8;
  --muted-dark: #475569;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(15, 23, 42, 0.12);
  --accent: #ef4444;
  --accent-strong: #dc2626;
  --yellow: #fbbf24;
  --green: #10b981;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(2, 6, 23, 0.26);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  background: var(--deep);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(190px, auto);
  gap: 20px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 0;
  padding-left: 18px;
}

.brand::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--yellow), var(--accent), var(--green));
  border-radius: var(--radius-pill);
  box-shadow: 0 0 22px rgba(251, 191, 36, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.04rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand small {
  overflow: hidden;
  max-width: 420px;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav a:hover,
.nav a:focus-visible,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  color: var(--yellow);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: max-content;
  min-width: 275px;
  max-width: min(88vw, 340px);
  gap: 4px;
  padding: 10px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.35);
  transform: translateX(-50%);
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 14px;
  color: #e2e8f0;
  line-height: 1.15;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}

.header-call {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #ff4b4b 0%, #ef4444 46%, #b91c1c 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  box-shadow:
    0 18px 42px rgba(185, 28, 28, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.header-call .js-phone-display {
  font-size: 0;
}

.header-call .js-phone-display::after {
  content: "Anrufen";
  font-size: 0.95rem;
}

.icon,
.button-icon,
.contact-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-weight: 950;
  line-height: 1;
  color: var(--ink);
  background:
    linear-gradient(135deg, #ffe08a, var(--yellow) 55%, #f59e0b);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.26);
}

.contact-icon {
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-icon {
  color: var(--white);
  background:
    linear-gradient(135deg, #36dc78, #16a34a 62%, #0f7a36);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 8px 18px rgba(22, 163, 74, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(620px, calc(100vh - 115px), 770px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.82) 38%, rgba(15, 23, 42, 0.28) 70%, rgba(15, 23, 42, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.34) 48%, rgba(2, 6, 23, 0.12) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(251, 191, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: screen;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 18%;
  transform: scale(1.22);
  transform-origin: 58% 16%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 76px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5.4vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  margin-bottom: 26px;
  color: #dbeafe;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible,
.header-call:hover,
.quick-number:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #ff4b4b 0%, #ef4444 50%, #b91c1c 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 46px rgba(185, 28, 28, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow:
    0 22px 54px rgba(185, 28, 28, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(15, 23, 42, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 32px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(12px);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(251, 191, 36, 0.8);
  color: #fff7d6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 38px rgba(2, 6, 23, 0.26);
}

.button.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--ink);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.18);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.hero-facts div {
  padding: 14px 14px 13px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.55);
  border-radius: var(--radius);
}

.hero-facts dt {
  margin-bottom: 3px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.92rem;
}

.quick-contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 54px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(239, 68, 68, 0.24), transparent 32%),
    linear-gradient(135deg, #111827 0%, #172033 54%, #0f172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 -18px 48px rgba(2, 6, 23, 0.18);
}

.team-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.team-welcome-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 40vw, 560px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

.team-welcome-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(15, 23, 42, 0.1), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 38%);
  pointer-events: none;
}

.team-welcome-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center bottom;
}

.team-welcome-copy {
  max-width: 610px;
}

.team-welcome-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.team-welcome-copy p {
  color: var(--muted-dark);
  font-size: 1.08rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--red);
  font-weight: 950;
}

.text-link::after {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.quick-contact::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--accent), #22c55e);
}

.quick-contact strong,
.quick-contact span {
  position: relative;
  display: block;
  z-index: 1;
}

.quick-contact strong {
  color: var(--white);
  font-size: 1.08rem;
}

.quick-contact span {
  color: rgba(226, 232, 240, 0.82);
}

.quick-contact .contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  color: var(--ink);
}

.quick-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--white);
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #ff4b4b, #ef4444 50%, #b91c1c);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.quick-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.quick-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.quick-secondary:hover,
.quick-secondary:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.section,
.split-section,
.contact-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 54px);
}

.section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.11);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.22);
}

.service-card-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--panel);
}

.service-card-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.38)),
    linear-gradient(90deg, rgba(239, 68, 68, 0.12), transparent 48%);
  pointer-events: none;
}

.service-card-photo {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-photo-pair {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(46%, 184px);
  padding: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(12px);
}

.service-photo-pair img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.service-card:hover .service-card-photo,
.service-card:focus-visible .service-card-photo {
  transform: scale(1.035);
}

.service-card.featured .service-card-media,
.service-card.featured .service-card-photo {
  min-height: 390px;
}

.service-card.featured .service-photo-pair {
  width: min(42%, 240px);
  padding: 10px;
  border-radius: 24px;
}

.service-icon {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.22);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-card.featured .service-card-body {
  justify-content: center;
  padding: clamp(24px, 4vw, 38px);
}

.service-kicker {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-card.featured h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.service-card p {
  flex: 1;
  color: var(--muted-dark);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 7px 10px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-pill);
}

.service-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.45;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.service-meta span {
  display: block;
}

.service-meta strong {
  color: var(--ink);
  font-weight: 950;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 950;
}

.card-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.service-card:hover .card-link::after,
.service-card:focus-visible .card-link::after {
  transform: translateX(3px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.94)),
    var(--deep);
}

.split-copy {
  max-width: 620px;
}

.split-copy p {
  color: #cbd5e1;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
  border-radius: var(--radius);
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  font-weight: 950;
  background: var(--yellow);
  border-radius: 16px;
}

.steps h3 {
  margin-bottom: 4px;
}

.steps p {
  margin-bottom: 0;
  color: #cbd5e1;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-band div {
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--panel);
}

.trust-band div:nth-child(1) {
  border-top: 4px solid var(--yellow);
}

.trust-band div:nth-child(2) {
  border-top: 4px solid var(--green);
}

.trust-band div:nth-child(3) {
  border-top: 4px solid var(--accent);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--white);
  font-size: 1.2rem;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 7vw, 100px);
  align-items: center;
  background: var(--paper);
}

.contact-copy {
  max-width: 720px;
}

.contact-copy p {
  color: var(--muted-dark);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  font-style: normal;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.88), rgba(15, 23, 42, 0.96)),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-panel span {
  font-weight: 950;
}

.contact-panel strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.contact-panel a,
.contact-panel small {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.service-page {
  background: var(--paper);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 54px);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a, #020617);
}

.service-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.service-hero h1 {
  font-size: clamp(2.45rem, 4.35vw, 3.9rem);
  line-height: 1.03;
  overflow-wrap: break-word;
}

.service-hero-visual {
  position: relative;
  display: grid;
  min-height: 100%;
}

.service-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.service-hero-stack {
  position: absolute;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(48%, 310px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(12px);
}

.service-hero-stack figure {
  margin: 0;
}

.service-hero-stack img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.service-hero-stack figcaption {
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 54px);
}

.service-detail > div:first-child {
  max-width: 820px;
}

.service-detail p {
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.service-expanded {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.service-highlight {
  padding: 20px 22px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(251, 191, 36, 0.16), transparent 42%),
    linear-gradient(135deg, #111827, #0f172a);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-left: 5px solid var(--yellow);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-info-grid article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.service-info-grid h3,
.service-points-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
}

.service-info-grid ul,
.service-info-grid ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted-dark);
}

.service-info-grid li::marker {
  color: var(--accent);
  font-weight: 950;
}

.service-points-title {
  margin: 0;
}

.service-points {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.service-detail-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.service-detail-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-detail-photo figcaption {
  padding: 13px 16px 15px;
  color: var(--muted-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.detail-contact {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.92), rgba(15, 23, 42, 0.98)),
    var(--ink);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-contact strong {
  font-size: 1.25rem;
}

.detail-contact span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.service-gallery-section {
  padding: 0 clamp(18px, 4vw, 54px) clamp(64px, 9vw, 112px);
}

.service-gallery-section > h2,
.service-gallery-section > .eyebrow {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 28px auto 0;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item-featured img {
  aspect-ratio: 16 / 9;
  min-height: 100%;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  padding: 12px 14px 14px;
  color: var(--muted-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 78px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.88)),
    radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.18), transparent 34%),
    var(--deep);
}

.page-hero::after {
  position: absolute;
  right: clamp(18px, 8vw, 100px);
  bottom: -46px;
  width: min(48vw, 420px);
  height: 130px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--accent), var(--green));
  border-radius: 999px 999px 0 0;
  filter: blur(1px);
  opacity: 0.9;
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  margin: 0 0 18px;
}

.legal-hero {
  padding-bottom: clamp(36px, 6vw, 64px);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  background: var(--paper);
}

.contact-form,
.legal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.contact-form h2 {
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 18px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(239, 68, 68, 0.62);
  box-shadow:
    0 0 0 4px rgba(239, 68, 68, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted-dark);
  font-size: 0.94rem;
}

.contact-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(155deg, #111827, #020617);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.contact-aside strong {
  color: var(--yellow);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.contact-aside .js-phone-display {
  font-size: 1.75rem;
  font-weight: 950;
  line-height: 1.1;
}

.contact-aside a {
  color: #e2e8f0;
  font-weight: 850;
}

.contact-aside small {
  color: var(--muted);
  font-weight: 800;
}

.legal-page {
  background: var(--paper);
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.legal-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.legal-card h3 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.08rem;
}

.legal-card p {
  max-width: 76ch;
  margin: 0 0 12px;
  color: var(--muted-dark);
}

.legal-card a {
  color: var(--accent-strong);
  font-weight: 850;
}

.missing {
  padding: 12px 14px;
  color: #7c2d12 !important;
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.42);
  border-radius: 16px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: 690px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.66)),
      linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.12) 58%, rgba(2, 6, 23, 0.34));
  }

  .section-heading,
  .split-section,
  .contact-section,
  .contact-page,
  .service-hero,
  .service-detail,
  .team-welcome {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
  }

  .service-hero-visual {
    max-width: 760px;
  }

  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .service-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .service-card.featured .service-card-media,
  .service-card.featured .service-card-photo {
    min-height: 300px;
  }

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-height: 38px;
    min-width: 0;
    padding-left: 13px;
  }

  .brand span {
    min-width: 0;
  }

  .brand::before {
    top: 6px;
    bottom: 6px;
    width: 3px;
  }

  .brand strong {
    font-size: 0.92rem;
    line-height: 1.08;
  }

  .brand small {
    max-width: 210px;
    font-size: 0.66rem;
    white-space: nowrap;
  }

  .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    font-size: 0.8rem;
  }

  .nav > a,
  .nav-dropdown summary {
    min-height: 38px;
    justify-content: center;
    padding: 9px 8px;
    color: #e2e8f0;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
  }

  .nav-dropdown {
    width: auto;
  }

  .nav-dropdown summary {
    gap: 6px;
  }

  .nav-menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin-top: 8px;
    border-radius: 18px;
    transform: none;
  }

  .header-call {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .header-call .contact-icon {
    width: 19px;
    height: 19px;
  }

  .hero {
    height: auto;
    min-height: 590px;
    max-height: none;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 96px 18px 28px;
  }

  .hero-media img {
    object-position: 56% 8%;
    transform: scale(1.62);
    transform-origin: 56% 12%;
  }

  .hero h1,
  .page-hero h1 {
    margin-bottom: 16px;
    font-size: 2.05rem;
    line-height: 1.04;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    font-size: 0.92rem;
  }

  .service-grid,
  .trust-band,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-stack {
    right: 12px;
    bottom: 12px;
    width: min(56%, 190px);
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .service-hero-stack figcaption {
    display: none;
  }

  .gallery-item-featured {
    grid-column: span 1;
  }

  .hero-facts {
    display: none;
  }

  .team-welcome {
    gap: 24px;
    padding: 42px 16px 44px;
  }

  .team-welcome-media {
    min-height: 430px;
    border-radius: 24px;
  }

  .team-welcome-copy h2 {
    font-size: 2rem;
  }

  .team-welcome-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .quick-contact,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-contact {
    gap: 14px;
    padding: 18px 16px;
  }

  .quick-contact strong {
    font-size: 1rem;
  }

  .quick-contact span {
    font-size: 0.94rem;
  }

  .quick-actions {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    width: 100%;
    gap: 10px;
  }

  .quick-number,
  .quick-secondary {
    width: 100%;
    justify-content: center;
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .service-card-media,
  .service-card-photo,
  .service-card.featured .service-card-media,
  .service-card.featured .service-card-photo {
    min-height: 220px;
  }

  .service-card-body,
  .service-card.featured .service-card-body {
    padding: 20px;
  }

  .service-hero {
    padding-top: 36px;
  }

  .service-hero h1 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  .legal-hero h1 {
    font-size: 1.95rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .service-hero-img,
  .gallery-item {
    border-radius: 24px;
  }
}
