:root {
  --black: #020a13;
  --black-2: #0a1420;
  --yellow: #e8b920;
  --yellow-hover: #f5c93a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(232, 185, 32, 0.35);
  --navy: #0f2740;
  --font-display: "Oswald", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --max: 1100px;
  --header-h: 3.75rem;
  --pad-x: clamp(1rem, 4vw, 1.5rem);
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.wrap {
  width: min(100% - (var(--pad-x) * 2), var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0.55rem 0;
  background: rgba(2, 10, 19, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(100% - (var(--pad-x) * 2), var(--max));
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-size: clamp(0.78rem, 2.8vw, 1.05rem);
  line-height: 1.2;
}
.brand span {
  color: var(--yellow);
}
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
  min-height: 2.75rem;
  padding: 0.55rem 0.85rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}
.header-call:hover,
.header-call:focus-visible {
  background: var(--yellow-hover);
  outline: none;
}
.header-call svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}
.header-call__text-full {
  display: none;
}
@media (min-width: 480px) {
  .header-call {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  .header-call__text-short {
    display: none;
  }
  .header-call__text-full {
    display: inline;
  }
}

/* Hero — centered, laden.webp */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--pad-x) 5.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  transform: translateX(-50%);
  color: var(--yellow);
  text-decoration: none;
  border: 1px solid rgba(232, 185, 32, 0.45);
  border-radius: 999px;
  background: rgba(2, 10, 19, 0.4);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.hero__scroll:hover,
.hero__scroll:focus-visible {
  border-color: var(--yellow);
  background: rgba(2, 10, 19, 0.65);
  outline: none;
}
.hero__scroll-icon {
  display: flex;
  width: 1.35rem;
  height: 1.35rem;
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
.hero__scroll-icon svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .hero {
    padding-bottom: 6.5rem;
  }
  .hero__scroll {
    bottom: 2rem;
    width: 3.25rem;
    height: 3.25rem;
  }
  .hero__scroll-icon {
    width: 1.55rem;
    height: 1.55rem;
  }
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 85% 70% at 50% 45%,
      rgba(2, 10, 19, 0.35) 0%,
      rgba(2, 10, 19, 0.78) 70%
    ),
    linear-gradient(
      180deg,
      rgba(2, 10, 19, 0.72) 0%,
      rgba(2, 10, 19, 0.45) 40%,
      rgba(2, 10, 19, 0.88) 100%
    );
}
.hero__inner {
  width: min(100%, 80rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(232, 185, 32, 0.55);
  background: rgba(2, 10, 19, 0.45);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 2.2vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7.2vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  text-wrap: balance;
}
.hero__brand span {
  color: var(--yellow);
}
.hero h1 {
  font-size: clamp(1.05rem, 3.6vw, 1.55rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
  text-wrap: balance;
}
.hero__lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  max-width: 42ch;
  text-wrap: pretty;
}
.hero__lead--sub {
  margin: 0 0 1.75rem;
  font-size: clamp(0.88rem, 2.4vw, 1rem);
  color: rgba(184, 199, 214, 0.88);
  max-width: 40ch;
}
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 22rem;
}
@media (min-width: 480px) {
  .cta-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: none;
    width: auto;
  }
}
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.25rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  animation: pulse-cta 2.6s ease-in-out infinite;
}
.btn-call:hover,
.btn-call:focus-visible {
  background: var(--yellow-hover);
  outline: none;
}
.btn-call svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  background: rgba(2, 10, 19, 0.35);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--yellow);
  background: rgba(232, 185, 32, 0.1);
  outline: none;
}

@keyframes pulse-cta {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 185, 32, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(232, 185, 32, 0);
  }
}

/* Sections */
section {
  padding: clamp(3rem, 9vw, 5.25rem) 0;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
}
.section-label {
  display: inline-block;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}
.section-title {
  font-size: clamp(1.65rem, 5.5vw, 2.6rem);
  margin: 0 0 0.65rem;
  text-wrap: balance;
}
.section-lead {
  color: var(--muted);
  max-width: 38ch;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  text-wrap: pretty;
}

/* Trust / ad strip */
.trust {
  padding: 0;
  background: var(--black);
}
.trust__inner {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .trust__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    min-height: 380px;
  }
}
.trust__copy {
  padding: clamp(2.25rem, 6vw, 3.5rem) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(
      ellipse 80% 80% at 0% 50%,
      rgba(232, 185, 32, 0.12),
      transparent 55%
    ),
    var(--black-2);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
  .trust__copy {
    padding-left: max(
      var(--pad-x),
      calc((100vw - var(--max)) / 2 + var(--pad-x))
    );
    border-block: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
.trust__copy h2 {
  font-size: clamp(1.55rem, 4.5vw, 2.2rem);
  margin: 0 0 0.75rem;
  color: var(--yellow);
}
.trust__copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 42ch;
}
.trust__copy p + .trust__points {
  margin-top: 0.4rem;
}
.trust__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.trust__points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.trust__points li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--yellow);
  flex-shrink: 0;
}
.trust__visual {
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  min-height: 240px;
}
.trust__visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 768px) {
  .trust__visual,
  .trust__visual img {
    min-height: 100%;
  }
}

/* Services */
.services {
  background: var(--black);
}
.service-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.service-item {
  display: grid;
  gap: 0.9rem;
}
.service-item figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
@media (hover: hover) {
  .service-item:hover img {
    transform: scale(1.04);
  }
}
.service-item h3 {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  color: var(--yellow);
  margin-bottom: 0.3rem;
}
.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 560px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.98rem;
}
@media (min-width: 560px) {
  .service-list li:nth-child(odd) {
    padding-right: 1rem;
  }
  .service-list li:nth-child(even) {
    padding-left: 1rem;
  }
}
.service-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--yellow);
  flex-shrink: 0;
}

/* Reviews */
.reviews {
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 0%,
      rgba(232, 185, 32, 0.07),
      transparent 60%
    ),
    var(--black-2);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}
.review-list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 760px) {
  .review-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
.review {
  margin: 0;
  height: 100%;
  padding: 1.25rem 1.15rem 1.35rem;
  border-top: 3px solid var(--yellow);
  background: rgba(2, 10, 19, 0.55);
  border-inline: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.review blockquote {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.45;
}
.review figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}
.stars {
  color: var(--yellow);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

/* Einsatzgebiet */
.area {
  background: var(--black-2);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.area .section-lead {
  max-width: 46ch;
}
.area__body {
  max-width: 54ch;
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  text-align: center;
}
.area__body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  text-wrap: pretty;
}
.area__body p:last-child {
  margin-bottom: 0;
}
.area-subtitle {
  margin: clamp(1.5rem, 4vw, 2rem) 0 0.85rem;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: var(--yellow);
  text-align: center;
  letter-spacing: 0.06em;
}
.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}
.area-list--cities {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .area-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .area-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.area-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.area-list li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.55rem;
  background: var(--yellow);
  vertical-align: 0.15em;
}

/* Location */
.location {
  background: var(--black);
}
.location-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .location-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}
.location-info {
  padding: 1.35rem 1.2rem;
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.location-info h3 {
  font-size: 1.15rem;
  margin: 0 0 0.55rem;
  color: var(--yellow);
}
.location-info p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}
.location-info a.map-link {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.location-info a[href^="tel"] {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
}
.map-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: var(--navy);
  min-height: 240px;
}
.map-frame iframe {
  width: 100%;
  height: min(52vw, 320px);
  min-height: 240px;
  border: 0;
  display: block;
}

/* Final CTA band */
.final-cta {
  padding: clamp(2.5rem, 7vw, 3.5rem) 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(232, 185, 32, 0.12), transparent 70%),
    var(--black-2);
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-size: clamp(1.45rem, 5vw, 2.1rem);
  margin: 0 0 0.5rem;
}
.final-cta p {
  margin: 0 0 1.35rem;
  color: var(--muted);
}
.final-cta .btn-call {
  width: min(100%, 22rem);
  margin-inline: auto;
}

/* Footer */
.site-footer {
  padding: 2rem 0 calc(5.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #01060c;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-grid {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem 2.5rem;
  }
  .site-footer {
    padding-bottom: 2.5rem;
  }
}
.site-footer strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* Sticky call — mobile */
.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.65rem var(--pad-x) calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(2, 10, 19, 0.96);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-call.is-visible {
  transform: translateY(0);
}
.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  min-height: 3.1rem;
  padding: 0.85rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 4vw, 1.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
}
.sticky-call a:hover,
.sticky-call a:focus-visible {
  background: var(--yellow-hover);
  outline: none;
}
@media (min-width: 768px) {
  .sticky-call {
    display: none;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn-call {
    animation: none;
  }
  .hero__scroll-icon {
    animation: none;
    opacity: 1;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-item img {
    transition: none;
  }
}
