﻿:root {
  --bg: #11151c;
  --bg-soft: #1a212c;
  --bg-panel: rgba(23, 29, 39, 0.82);
  --surface: #f5efe6;
  --surface-alt: #e5ddd0;
  --text: #f5f1e9;
  --text-dark: #17202b;
  --muted: #a9b2bd;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(17, 21, 28, 0.12);
  --accent: #ff6b17;
  --accent-soft: #ffb27a;
  --accent-deep: #d75200;
  --max-width: 1240px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 23, 0.17), transparent 24rem),
    radial-gradient(circle at 80% 12%, rgba(255, 178, 122, 0.12), transparent 18rem),
    linear-gradient(135deg, #0d1016 0%, #151c26 55%, #10151d 100%);
  color: var(--text);
  font-family: Aptos, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-dark);
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 85%);
}

.site-header,
.hero,
.statement,
.services,
.showcase,
.process,
.trust,
.faq,
.contact,
.site-footer,
.legal-main,
.legal-hero {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(17, 21, 28, 0.1);
  border-radius: 999px;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(18px);
}

/* Die Kopfzeile ist hell, damit das freigestellte schwarz-rote Logo lesbar
   bleibt. Auf dunklem Grund verschwänden E und M vollständig. */
.site-header .site-nav a {
  color: var(--text-dark);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: var(--accent-deep);
}

.site-header .header-cta {
  border-color: rgba(17, 21, 28, 0.24);
  color: var(--text-dark);
}

.site-header .header-cta:hover,
.site-header .header-cta:focus-visible {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 3.8rem;
  flex: 0 0 auto;
}


.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 107, 23, 0.2), rgba(255, 255, 255, 0.08)),
    var(--bg-soft);
  border: 1px solid rgba(255, 107, 23, 0.45);
  color: var(--surface);
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a,
.button,
h1,
h2,
h3,
.hero-metrics dt,
.service-index,
.panel-number,
.faq-card h3,
.process-steps strong {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.video-button:hover,
.video-button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff8f2;
  box-shadow: 0 14px 32px rgba(255, 107, 23, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary,
.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 107, 23, 0.48);
  color: var(--accent-soft);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0;
  min-height: 48rem;
  padding: 5rem 0 3rem;
}

.hero::before {
  display: none;
}

.hero-media,
.hero-video-overlay {
  position: absolute;
  inset: 0;
  border-radius: 40px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090d14;
  box-shadow: var(--shadow);
  z-index: -2;
}

.hero-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transform: scale(1.24);
  transform-origin: center;
  pointer-events: none;
  filter: saturate(0.94) contrast(1.02);
}

.hero-video-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 12, 18, 0.88) 0%, rgba(9, 12, 18, 0.46) 34%, rgba(9, 12, 18, 0.78) 100%),
    linear-gradient(180deg, rgba(9, 12, 18, 0.05), rgba(9, 12, 18, 0.74));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-slider-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 24rem);
  gap: 1.5rem;
  align-items: end;
  min-height: 38rem;
  padding: 2.4rem;
}

.hero-slider-caption {
  align-self: end;
  max-width: 46rem;
}

.hero-slider-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slider-caption h1 {
  max-width: 11ch;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.hero-slider-caption .hero-lead {
  max-width: 40rem;
  color: rgba(245, 241, 233, 0.88);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-slider-note {
  align-self: end;
  padding: 1.4rem 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(10, 14, 21, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-slider-note h2 {
  max-width: 12ch;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.hero-slider-note p:last-child {
  margin-bottom: 0;
  color: rgba(245, 241, 233, 0.8);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.4rem 0 0;
}

.hero-slider-metrics {
  position: relative;
  z-index: 1;
  margin: 0 2.4rem 2.2rem;
}

.hero-metrics div {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-metrics dt {
  color: var(--surface);
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-metrics dd {
  margin: 0.4rem 0 0;
  color: rgba(245, 241, 233, 0.82);
  font-size: 0.95rem;
}

.hero-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  max-width: none;
}

.eyebrow,
.stage-kicker,
.hero-slider-kicker,
.video-badge,
.service-index,
.panel-number,
.service-index,
.process-steps strong,
.legal-hero .eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.stage-kicker {
  margin: 0 0 0.8rem;
  color: var(--accent-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.hero-lead,
.statement-card p,
.service-card p,
.showcase-copy p,
.faq-card p,
.trust-copy p,
.contact-card p,
.legal-card p,
.legal-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.4rem 0 0;
}

.hero-metrics div {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics dt {
  color: var(--surface);
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-metrics dd {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.8fr);
  gap: 1.25rem;
}

.hero-stage-frame,
.info-panel,
.statement-card,
.service-card,
.showcase-card,
.trust,
.faq-card,
.contact-card,
.contact-details,
.legal-card,
.legal-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.hero-stage-frame {
  padding: 1.4rem;
}

.hero-stage-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hero-stage-copy h2 {
  max-width: 10ch;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-stage-copy p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  aspect-ratio: 16 / 9;
  background: #090b0f;
}

.video-card img,
.video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.85rem;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(9, 11, 15, 0.04), rgba(9, 11, 15, 0.84) 76%),
    linear-gradient(135deg, rgba(255, 107, 23, 0.08), transparent 60%);
}

.video-badge {
  align-self: start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff7ef;
  font-size: 0.75rem;
  font-weight: 700;
}

.video-button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  align-self: start;
  padding: 0.95rem 1.15rem;
  border: none;
  border-radius: 999px;
  background: #fff7ef;
  color: var(--text-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-button-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}

.video-button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 0.36rem solid transparent;
  border-bottom: 0.36rem solid transparent;
  border-left: 0.58rem solid #fff;
  transform: translate(-36%, -50%);
}

.video-note {
  max-width: 32rem;
  margin: 0;
  color: rgba(245, 241, 233, 0.82);
  font-size: 0.9rem;
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.info-panel {
  padding: 1.3rem 1.3rem 1.5rem;
}

.info-panel.accent {
  background:
    linear-gradient(160deg, rgba(255, 107, 23, 0.16), rgba(17, 21, 28, 0.8)),
    var(--bg-panel);
}

.panel-number,
.service-index {
  margin: 0 0 0.9rem;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.statement,
.services,
.showcase,
.process,
.trust,
.faq,
.contact {
  padding: 3rem 0;
}

.statement-grid,
.service-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.statement-card,
.service-card,
.faq-card,
.contact-card,
.contact-details,
.legal-card,
.legal-hero {
  padding: 1.5rem;
}

.service-card.highlighted {
  background:
    linear-gradient(180deg, rgba(255, 107, 23, 0.14), rgba(17, 21, 28, 0.86)),
    var(--bg-panel);
}

.feature-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-top: 0.8rem;
  padding-left: 1.4rem;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Gleichmässiges 2x2-Raster. Die frühere Variante liess die erste Karte über
   zwei Reihen laufen - dadurch stand unter ihrem Text eine grosse Leerfläche
   und unten rechts blieb eine Zelle frei. */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.showcase-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.showcase-copy {
  padding: 1.35rem 1.4rem 1.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  gap: 0.75rem;
  padding: 1.4rem;
  border-top: 4px solid rgba(255, 107, 23, 0.54);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.process-steps strong {
  color: var(--surface);
  font-size: 1.1rem;
}

.process-steps span {
  color: var(--muted);
}

.trust {
  display: grid;
  gap: 2rem;
  padding: 2rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}

.logo-row img {
  width: auto;
  max-height: 3.25rem;
  filter: grayscale(1) brightness(1.12);
  opacity: 0.92;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  color: var(--text);
  font-style: normal;
}

.contact-details a {
  color: var(--accent-soft);
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0.25rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  text-decoration: none;
}

.page-legal {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 23, 0.12), transparent 20rem),
    linear-gradient(180deg, #0e1319 0%, #141b25 100%);
}

.legal-header {
  position: static;
}

.legal-main {
  display: grid;
  gap: 1rem;
  padding: 3rem 0 4rem;
}

.legal-hero {
  margin-bottom: 0;
}

.legal-card h2 {
  max-width: none;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.legal-card a {
  color: var(--accent-soft);
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .hero-slider-shell,
  .hero-content-grid,
  .hero-stage,
  .contact,
  .statement-grid,
  .service-grid,
  .faq-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .hero-stage-copy {
    flex-direction: column;
    align-items: start;
  }

  .hero-slider-note {
    max-width: 28rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: start;
  }

  .brand-logo {
    height: 3.1rem;
  }

  .site-nav,
  .header-cta {
    width: 100%;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .hero {
    min-height: 38rem;
    padding-top: 3.5rem;
  }

  .hero-slider-shell {
    min-height: 30rem;
    padding: 1.2rem;
  }

  .hero-slider-caption h1 {
    max-width: 12ch;
  }

  .hero-slider-note {
    padding: 1.15rem 1.2rem 1.3rem;
  }

  .hero-slider-metrics {
    margin: 0 1.2rem 1.2rem;
  }

  .hero-video-embed {
    transform: scale(1.5);
  }

  .hero-metrics,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }
}
