/* ============================================================
   Binghatti-style landing page
   - 100vw x 100vh, no scrollbars
   - fullscreen background video
   - minimal luxury UI on top
   ============================================================ */

/* ============================================================
   GLOBAL SCROLL-REVEAL
   ============================================================ */
.sr-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.sr-hidden.sr-from-top {
  transform: translateY(-28px);
}
.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Richer staggered text reveal for content-row sections (all subpages):
   eyebrow/title and each paragraph glide in individually with blur.
   Gated on .sr-hidden (added by JS) so text stays visible without JS. ── */
.content-row__title-col.sr-hidden,
.content-row__text-col.sr-hidden {
  opacity: 1 !important;
  transform: none !important;
}
.content-row__title-col.sr-hidden > *,
.content-row__text-col.sr-hidden > p {
  opacity: 0;
  transform: translateY(54px);
  filter: blur(8px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.content-row__title-col.sr-visible > *,
.content-row__text-col.sr-visible > p {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.content-row__title-col.sr-visible .content-row__eyebrow { transition-delay: 0.08s; }
.content-row__title-col.sr-visible .content-row__index  { transition-delay: 0s; }
.content-row__title-col.sr-visible .content-row__title   { transition-delay: 0.30s; }
.content-row__text-col.sr-visible > p:nth-of-type(1) { transition-delay: 0.20s; }
.content-row__text-col.sr-visible > p:nth-of-type(2) { transition-delay: 0.46s; }
.content-row__text-col.sr-visible > p:nth-of-type(3) { transition-delay: 0.72s; }
.content-row__text-col.sr-visible > p:nth-of-type(4) { transition-delay: 0.98s; }
.content-row__text-col.sr-visible > p:nth-of-type(5) { transition-delay: 1.24s; }

.content-row__title-col.sr-hidden > .content-row__index,
.content-row__text-col.sr-hidden > .content-row__points,
.content-row__text-col.sr-hidden > .principles,
.content-row__text-col.sr-hidden .content-row__points li,
.content-row__text-col.sr-hidden .principle {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(7px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.content-row__text-col.sr-visible .content-row__points li:nth-child(1) { transition-delay: 0.58s; }
.content-row__text-col.sr-visible .content-row__points li:nth-child(2) { transition-delay: 0.74s; }
.content-row__text-col.sr-visible .content-row__points li:nth-child(3) { transition-delay: 0.90s; }
.content-row__text-col.sr-visible .content-row__points li:nth-child(4) { transition-delay: 1.06s; }
.content-row__text-col.sr-visible > .principles,
.content-row__text-col.sr-visible > .content-row__points {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.content-row__text-col.sr-visible .principle:nth-child(1) { transition-delay: 0.24s; }
.content-row__text-col.sr-visible .principle:nth-child(2) { transition-delay: 0.40s; }
.content-row__text-col.sr-visible .principle:nth-child(3) { transition-delay: 0.56s; }
.content-row__text-col.sr-visible .principle:nth-child(4) { transition-delay: 0.72s; }
.content-row__text-col.sr-visible .principle:nth-child(5) { transition-delay: 0.88s; }
.content-row__text-col.sr-visible .content-row__points li,
.content-row__text-col.sr-visible .principle {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Lead + CTA staggered text reveal */
.article__lead.sr-hidden > p,
.article__lead.sr-hidden .article__lead-actions,
.article__breadcrumb.sr-hidden > *,
.page-banner__content.sr-hidden > *,
.cta-band__content.sr-hidden > * {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(7px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.article__lead.sr-hidden,
.article__breadcrumb.sr-hidden,
.page-banner__content.sr-hidden,
.cta-band__content.sr-hidden {
  opacity: 1 !important;
  transform: none !important;
}
.article__lead.sr-visible > p,
.article__breadcrumb.sr-visible > *,
.page-banner__content.sr-visible > *,
.cta-band__content.sr-visible > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.page-banner__content.sr-visible .page-banner__eyebrow    { transition-delay: 0.10s; }
.page-banner__content.sr-visible .page-banner__title     { transition-delay: 0.28s; }
.page-banner__content.sr-visible .page-banner__subtitle  { transition-delay: 0.48s; }
.article__breadcrumb.sr-visible > *:nth-child(1)         { transition-delay: 0.06s; }
.article__breadcrumb.sr-visible > *:nth-child(2)         { transition-delay: 0.14s; }
.article__breadcrumb.sr-visible > *:nth-child(3)         { transition-delay: 0.22s; }
.article__lead.sr-visible > p                            { transition-delay: 0.18s; }
.article__lead.sr-visible .article__lead-actions         { transition-delay: 0.42s; }
.cta-band__content.sr-visible .feature-eyebrow           { transition-delay: 0.10s; }
.cta-band__content.sr-visible .cta-band__title             { transition-delay: 0.28s; }
.cta-band__content.sr-visible .cta-band__text              { transition-delay: 0.46s; }
.cta-band__content.sr-visible .cta-band__actions           { transition-delay: 0.64s; }

.principle.sr-hidden {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.principle.sr-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

:root {
  --page-bg: #050505;
  --ui-white: #ffffff;
  --ui-soft: rgba(255, 255, 255, 0.85);
  --ui-mute: rgba(255, 255, 255, 0.65);
  --ui-border: rgba(255, 255, 255, 0.55);
  --ui-border-soft: rgba(255, 255, 255, 0.35);
  --accent-blue: #2f6cf6;
  --content-tone-top: #101010;
  --content-tone-bottom: #181818;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  /* allow vertical scroll (for slide section), no horizontal scroll */
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Hide native scrollbar for a cleaner luxury look (still scrollable) */
html {
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar {
  width: 0;
  height: 0; /* Chrome / Safari */
}

/* Lock scroll while the menu is open */
body.menu-open {
  overflow: hidden;
}

body {
  font-family: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   PAGE BANNER (slim hero strip used on news.php etc.)
   ============================================================ */
.page-banner {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  background: var(--page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 200px;
  padding: 60px 6vw;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
}
.page-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.page-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent     0%,
    transparent     35%,
    var(--page-bg) 100%
  );
}
.page-banner__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  text-align: center;
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 180px;
    margin-top: 140px;
    padding: 50px 6vw;
  }
  .page-banner__title {
    letter-spacing: 0.22em;
  }
}

/* ============================================================
   PAGE BANNER — HERO VARIANT
   (used on Stig Rock content subpages: system, ueber-uns,
    sicherheit, mitglied-werden, standorte)
   Tall cinematic image header with strong vertical fade into
   the dark page body below.
   ============================================================ */
.page-banner--hero {
  margin-top: 0;
  min-height: 70vh;
  padding: 180px 6vw 90px;
  align-items: flex-end;
  justify-content: flex-start;
}
.page-banner--hero .page-banner__bg {
  transform: scale(1.06);
  animation: pageBannerKenBurns 18s ease-out forwards;
}
@keyframes pageBannerKenBurns {
  0%   { transform: scale(1.12); }
  100% { transform: scale(1.02); }
}
.page-banner--hero .page-banner__scrim {
  background: linear-gradient(
    to bottom,
    transparent     0%,
    transparent     25%,
    var(--page-bg) 100%
  );
}
.page-banner--hero .page-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.page-banner--hero .page-banner__eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.page-banner--hero .page-banner__title {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: left;
  max-width: 880px;
}
.page-banner--hero .page-banner__subtitle {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 768px) {
  .page-banner--hero {
    margin-top: 0;
    min-height: 56vh;
    padding: 130px 6vw 60px;
  }
  .page-banner--hero .page-banner__title {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: 0.06em;
  }
  .page-banner--hero .page-banner__eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.24em;
  }
  .page-banner--hero .page-banner__subtitle {
    margin-top: 16px;
    font-size: 14px;
  }
}

/* ============================================================
   ARTICLE DETAIL PAGE (news_article.php)
   ============================================================ */
.article-page {
  position: relative;
  width: 100%;
  background: #050505;
  color: #fff;
  padding-top: 120px;
}
.article {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw 60px;
}
.article__head {
  margin-bottom: 36px;
}
.article__title {
  margin: 0 0 22px;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #fff;
  max-width: 920px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}
.article__meta-sep {
  opacity: 0.5;
}
.article__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.article__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.article__breadcrumb a:hover {
  color: #fff;
}
.article__breadcrumb-current {
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 96px;
  align-items: start;
}
.article__hero {
  margin: 0 0 32px;
}
.article__hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background-color: #111;
  background-size: cover;
  background-position: center;
}
.article__summary {
  margin: 8px 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Lead paragraph at the top of an article body — bigger, lighter weight */
.article__lead {
  margin: 8px 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.article__lead p {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

/* ============================================================
   ARTICLE — single centered column variant (no sidebar)
   ============================================================ */
.article--centered .article__head--center {
  text-align: center;
}
.article--centered .article__head--center .article__title {
  max-width: 880px;
  margin: 0 auto 22px;
}
.article--centered .article__head--center .article__breadcrumb {
  justify-content: center;
}
.article--centered .article__head--center .article__breadcrumb-current {
  max-width: none;
}

/* Single centered article column — one consistent width for ALL content
   inside (paragraphs, headings, lists, pull-quote, pillars, stats, etc.)
   so every element shares the same left + right edges. */
.article__single {
  max-width: 720px;
  margin: 0 auto;
}
.article__single .article__hero {
  margin-bottom: 36px;
}

/* Centered body: everything centered and fills the same column width */
.article__body--center {
  text-align: center;
}
.article__body--center > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.article__body--center h2,
.article__body--center h3 {
  text-align: center;
}

/* Lead intro variant when centered */
.article__lead--center {
  text-align: center;
}
.article__lead--center p {
  margin-left: auto;
  margin-right: auto;
}
.article__lead--large p {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.75;
  max-width: 52ch;
}

/* Centered breadcrumb (used above an article with banner header) */
.article__breadcrumb--center {
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* When the article sits below a page-banner, drop the top padding
   (the banner already provides the top spacing). */
.system-page .article {
  padding-top: 30px;
}
.system-page .page-banner + .article {
  padding-top: 20px;
}

/* Highlight box reads well when centered */
.article__body--center .highlight-box {
  text-align: center;
}
.article__body--center .highlight-box__text {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Pillars (3 small cards) ---- */
/* ============================================================
   PILLARS — editorial row-stack used on all Stig Rock
   subpages (system / sicherheit / ueber-uns / mitglied-werden).
   Each pillar is a horizontal row with: big numeric index left,
   icon + title + text on the right, separated by a vertical
   hairline. Rows are stacked with thin horizontal dividers.
   ============================================================ */
.pillars,
.article__body--center > .pillars,
.article__body > .pillars {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  counter-reset: pillar;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Break out of the narrow article column so the pillars stretch wider,
     centered on the viewport. */
  position: relative;
  width: min(1200px, 92vw);
  max-width: none;
  margin: 64px auto 72px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.pillar {
  position: relative;
  counter-increment: pillar;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 36px 36px;
  min-height: 130px;
  text-align: center;
  overflow: hidden;
  transition: background 0.4s ease;
}
.pillar + .pillar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Decorative background image layer — fades out from right to left
   using mask-image so the text on the left sits on plain dark space. */
.pillar__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: brightness(0.6) saturate(0.9);
  transform: scale(1.03);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease,
    opacity 0.4s ease;
  will-change: transform;
}
.pillar:hover .pillar__bg {
  transform: scale(1.07);
  filter: brightness(0.8) saturate(1);
  opacity: 1;
}

/* Hover background tint that fades in from the left (kept as ::before
   so the bg image and the hover tint can coexist) */
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.012) 50%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.pillar:hover::before {
  opacity: 1;
}

/* Accent line that slides in from the left on hover */
.pillar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar:hover::after {
  transform: scaleY(1);
}

/* Big numeric index sits as a decorative element in the top-left corner */
.pillar__icon {
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
/* Big number generated via CSS counter — no markup changes */
.pillar__icon::before {
  content: "0" counter(pillar);
  font-size: clamp(40px, 3.6vw, 56px);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  font-feature-settings: "tnum";
  transition: color 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar:hover .pillar__icon::before {
  color: #fff;
}
/* Original SVG icon hidden — index number alone serves as the marker */
.pillar__icon svg {
  display: none;
}

/* Title + text are centered in the full pillar row */
.pillar__title {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.pillar__text {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  max-width: 640px;
}

@media (max-width: 880px) {
  .pillars,
  .article__body--center > .pillars,
  .article__body > .pillars {
    width: 92vw;
    margin: 40px auto 56px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .pillar {
    padding: 36px 18px 32px;
    min-height: 0;
  }
  /* On mobile, move the index out of the corner and put it on top */
  .pillar__icon {
    position: static;
    transform: none;
    justify-content: center;
    margin-bottom: 12px;
  }
  .pillar__icon::before {
    font-size: 36px;
  }
}

/* ---- Lead actions (2 buttons right under the lead paragraph) ---- */
.article__lead-actions {
  margin-top: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---- Values list (5-item vertical list with thin dividers) ---- */
.values {
  list-style: none;
  margin: 36px 0 44px;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.value {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.value:first-child {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.value:last-child {
  padding-bottom: 12px;
}
.value__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
}
.value__text {
  margin: 0 auto;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* ---- Inquiry form (used inline inside an article) ---- */
.inquiry-form {
  width: 100%;
  margin: 32px auto 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.inquiry-form__row {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.inquiry-form__row--split {
  flex-direction: row;
  gap: 22px;
}
.inquiry-form__row--split .inquiry-form__field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.inquiry-form__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.inquiry-form__input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 2px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.inquiry-form__input:focus {
  border-bottom-color: #fff;
}
.inquiry-form__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.inquiry-form__input--textarea {
  min-height: 96px;
}
.inquiry-form__disclaimer {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
.inquiry-form__disclaimer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inquiry-form__submit {
  align-self: center;
  margin-top: 12px;
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 600px) {
  .inquiry-form__row--split {
    flex-direction: column;
    gap: 22px;
  }
}

/* ---- Trust boxes (4 items, 2x2 grid with icon + title + text) ---- */
.trust-boxes {
  list-style: none;
  margin: 40px 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
.trust-box {
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.trust-box:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.22);
}
.trust-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 16px;
  color: #fff;
}
.trust-box__icon svg {
  width: 28px;
  height: 28px;
}
.trust-box__title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.trust-box__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

/* ---- Locations grid (used on Stig Rock standorte page) ---- */
.locations {
  list-style: none;
  margin: 48px 0 56px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.location {
  position: relative;
  padding: 32px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}
.location:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.location__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.location__icon svg {
  width: 26px;
  height: 26px;
}
.location__region {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.location__title {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.location__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

/* Featured location (Headquarter) */
.location--featured {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}
.location--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
}
.location--featured .location__region {
  color: rgba(255, 255, 255, 0.78);
}
.location--featured .location__icon {
  color: #fff;
}

@media (max-width: 768px) {
  .locations {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 36px 0 44px;
  }
  .location {
    padding: 26px 22px;
  }
  .location__title {
    font-size: 22px;
  }
  .location__text {
    font-size: 14px;
  }
}

/* ============================================================
   LOCATION SECTIONS (full-bleed, used on Stig Rock
   standorte.php — title left / description right, compact
   height with subtle hover zoom on the background image.)
   ============================================================ */
.location-section {
  position: relative;
  width: 100vw;
  min-height: 42vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

/* Small black gap between consecutive location sections
   and the element that follows the last location section (CTA band). */
.location-section + .location-section,
.location-section + .cta-band {
  margin-top: 8px;
}
.location-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.78);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
  will-change: transform;
}
.location-section:hover .location-section__bg {
  transform: scale(1.07);
  filter: brightness(0.85);
}
.location-section__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.55) 100%
    );
}

/* Two-column row: title left / text right */
.location-section__row {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 7vw;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.4fr);
  gap: 6vw;
  align-items: center;
}
.location-section__title-col {
  text-align: left;
}
.location-section__text-col {
  text-align: left;
}
.location-section__region {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.location-section__title {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.location-section__text {
  margin: 0;
  font-size: clamp(14.5px, 1.15vw, 16.5px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
}

/* Featured (Headquarter) — slightly brighter eyebrow */
.location-section--featured .location-section__region {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 880px) {
  .location-section {
    min-height: auto;
  }
  .location-section__row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 56px 8vw;
  }
  .location-section__title {
    font-size: clamp(28px, 7vw, 38px);
  }
  .location-section__scrim {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }
}

/* ============================================================
   PROCESS CARDS (full-bleed, used on Stig Rock
   /system.php — 5 horizontal cards with bg image + hover zoom)
   ============================================================ */
/* ============================================================
   COLLECTION SLIDER (system.php)
   ============================================================ */

/* ── sys-text-section: text-only replacement for col-slider ── */
.sys-text-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
}
.sys-text-section__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.08);
  z-index: 0;
}
.sys-text-section__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.48) 100%);
  z-index: 1;
}
.sys-text-section__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  padding: 110px 6vw 120px;
  text-align: center;
  margin: 0 auto;
}
.sys-text-section__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 20px;
}
.sys-text-section__title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 36px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.sys-text-section__lead {
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
}
.sys-text-section__body {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  margin: 0;
}

.col-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
}
.col-slider__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22) saturate(0.7);
  pointer-events: none;
  z-index: 0;
}
.col-slider__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.20) 40%,
    rgba(0,0,0,0.20) 70%,
    rgba(0,0,0,0.60) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.col-slider__inner {
  position: relative;
  z-index: 2;
  width: min(860px, 90vw);
  margin: 0 auto;
  padding: 100px 0 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header */
.col-slider__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin: 0 0 18px;
}
.col-slider__title {
  margin: 0 0 28px;
  font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing: 0.12em;
  line-height: 1.15;
}
.col-slider__title--bold,
.hw-bold {
  font-weight: 700;
  color: #fff;
}
.col-slider__title--light,
.hw-light {
  font-weight: 300;
  color: rgba(255,255,255,0.82);
}
.col-slider__lead {
  margin: 0 auto 14px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 58ch;
  text-align: center;
}
.col-slider__body {
  margin: 0 auto 52px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 56ch;
  text-align: center;
}

/* Stage */
.col-slider__stage {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.col-slider__track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
}
.col-slider__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.col-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.col-slider__img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
}

/* Arrows */
.col-slider__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-radius: 0;
}
.col-slider__arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
}

/* Dots */
.col-slider__dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.col-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.col-slider__dot.is-active {
  background: #fff;
  border-color: #fff;
}

/* Caption */
.col-slider__caption {
  margin-top: 32px;
  text-align: center;
}
.col-slider__cap-num {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.32);
}
.col-slider__cap-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.col-slider__cap-text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .col-slider__img { height: 260px; }
  .col-slider__arrow { width: 36px; height: 36px; }
}

/* ============================================================
   SYS-TRIO — compact 3-column image+text inside content-row (system.php)
   ============================================================ */
.sys-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.sys-trio__item {
  display: flex;
  flex-direction: column;
}
.sys-trio__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
  transform: scale(1);
  overflow: hidden;
}
.sys-trio__item:hover .sys-trio__img {
  filter: brightness(0.75) saturate(1);
  transform: scale(1.03);
}
.sys-trio__num {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.30);
}
.sys-trio__label {
  margin: 8px 0 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.sys-trio__text {
  margin: 0;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
}

@media (max-width: 600px) {
  .sys-trio {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sys-trio__img {
    aspect-ratio: 16 / 9;
  }
}

/* ============================================================
   SYS-INTRO — text header + 3-col image cards (system.php)
   ============================================================ */
.sys-intro {
  width: 100%;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sys-intro__top {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 100px 0 72px;
  display: grid;
  grid-template-columns: 1fr;
}
.sys-intro__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 22px;
}
.sys-intro__title {
  margin: 0 0 36px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: #fff;
  max-width: 14ch;
}
.sys-intro__lead {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 68ch;
}
.sys-intro__body {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 64ch;
}

/* 3-column image cards — edge to edge, no gap */
.sys-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}
.sys-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.sys-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.8);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
}
.sys-card:hover .sys-card__bg {
  transform: scale(1.09);
  filter: brightness(0.60) saturate(1);
}
.sys-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.0) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* subtle vertical hairline dividers between cards */
.sys-card + .sys-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 100%;
  background: rgba(255,255,255,0.10);
  z-index: 2;
}
.sys-card__body {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}
.sys-card__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 12px;
}
.sys-card__title {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.sys-card__text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 26ch;
}

@media (max-width: 700px) {
  .sys-intro__cards {
    grid-template-columns: 1fr;
  }
  .sys-card {
    aspect-ratio: 4 / 3;
  }
  .sys-card + .sys-card::before {
    width: 100%; height: 1px;
    top: 0; left: 0;
  }
}

/* Vision quote inside content-row (system.php) */
.sys-vision-quote {
  margin: 32px 0 0;
  padding: 28px 32px;
  border-left: 2px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.03);
}
.sys-vision-quote p {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}

/* ============================================================
   KUNDE SECTION — editorial split (system.php)
   ============================================================ */
.kunde-section {
  width: 100%;
  background: #070707;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.kunde-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 110px 0;
  align-items: center;
}
.kunde-section__text-col {
  display: flex;
  flex-direction: column;
}
.kunde-section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.kunde-section__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff;
}
.kunde-section__rule {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.28);
  margin-bottom: 32px;
}
.kunde-section__lead {
  margin: 0 0 22px;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.01em;
}
.kunde-section__body {
  margin: 0 0 18px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.kunde-section__tags {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.kunde-section__tags li {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* Image column */
.kunde-section__img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Tilt card ---- */
.tilt-card {
  perspective: 900px;
  width: 100%;
  max-width: 520px;
}
.tilt-card__inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.08s linear, box-shadow 0.3s ease;
  box-shadow: 0 24px 72px rgba(0,0,0,0.65), 0 4px 20px rgba(0,0,0,0.4);
  will-change: transform;
}
.tilt-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.9);
}
.tilt-card__glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 30% 30%,
    rgba(255,255,255,0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.1s linear;
}

@media (max-width: 860px) {
  .kunde-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 0;
  }
  .kunde-section__img-col {
    order: -1;
  }
  .tilt-card {
    max-width: 100%;
  }
}

/* ============================================================
   PORTRAIT PILLARS — tall vertical cards (system.php)
   ============================================================ */
.portrait-pillars {
  list-style: none;
  margin: 48px 0 56px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
}
.portrait-pillar {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  cursor: default;
}
.portrait-pillar__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1), filter 0.6s ease;
}
.portrait-pillar:hover .portrait-pillar__bg {
  transform: scale(1.10);
  filter: brightness(0.62) saturate(1);
}
/* bottom-up dark gradient so text always reads */
.portrait-pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.30) 55%,
    rgba(0,0,0,0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.portrait-pillar__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}
.portrait-pillar__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
  font-feature-settings: "tnum";
}
.portrait-pillar__title {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}
.portrait-pillar__text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.70);
  max-width: 28ch;
}

@media (max-width: 700px) {
  .portrait-pillars {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .portrait-pillar {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   PROCESS VERTICAL TIMELINE (system.php)
   ============================================================ */
.process-vt {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #1c1c1c 0%,
    #2a2a2a 48%,
    #222222 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.process-vt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 42%,
      rgba(255, 255, 255, 0.04) 100%
    ),
    radial-gradient(
      ellipse 85% 65% at 50% 0%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 72%
    );
}
.process-vt__inner {
  position: relative;
  z-index: 1;
  width: min(900px, 90vw);
  margin: 0 auto;
  padding: 100px 0 110px;
}
.process-vt__header {
  margin-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 40px;
}
.process-vt__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.process-vt__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
}
.process-vt__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-vt__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.process-vt__item:last-child {
  border-bottom: none;
}
.process-vt__num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  font-feature-settings: "tnum";
  transition: color 0.4s ease;
  padding-top: 4px;
}
.process-vt__item:hover .process-vt__num {
  color: rgba(255,255,255,0.55);
}
.process-vt__body {
  padding-top: 6px;
}
.process-vt__step-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.process-vt__text {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 600px) {
  .process-vt__item {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
  .process-vt__num {
    font-size: 30px;
  }
}

.process-section {
  position: relative;
  width: 100%;
  background: #050505;
  padding: 90px 6vw 100px;
}
.process-section__inner {
  max-width: 1700px;
  margin: 0 auto;
}
.process-section__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.process-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.process-card {
  position: relative;
  aspect-ratio: 4 / 6.5;
  min-height: 460px;
  overflow: hidden;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.process-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.process-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
  will-change: transform;
}
.process-card:hover .process-card__bg {
  transform: scale(1.12);
  filter: brightness(0.78);
}
.process-card__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.process-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.process-card__number {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}
.process-card:hover .process-card__number {
  color: rgba(255, 255, 255, 0.85);
}
.process-card__title {
  margin: 0 0 14px;
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-card__text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-card:hover .process-card__text {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}
.process-card:hover .process-card__title {
  transform: translateY(-2px);
}

/* Bottom block (title + text) groups together at the base */
.process-card__content > .process-card__title,
.process-card__content > .process-card__text {
  align-self: stretch;
}

/* Article modifier — used when an article block follows a
   breakout section and should not add its usual top padding */
.article--no-top {
  padding-top: 0 !important;
}
.article--no-top .article__single {
  padding-top: 0;
}

/* ============================================================
   SECURITY TRIO — vertical stack with huge display titles
   left + compact description right. Used on
   /stig-rock/sicherheit.php.
   ============================================================ */
.security-trio,
.article__body--center > .security-trio,
.article__body > .security-trio {
  list-style: none;
  padding: 0;
  margin: 64px auto 72px;
  margin-left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  max-width: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.security-trio__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 48px 36px;
  overflow: hidden;
  transition: background 0.4s ease;
}
.security-trio__item + .security-trio__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle hover sweep — gradient fades in from the left */
.security-trio__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 60%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.security-trio__item:hover::before {
  opacity: 1;
}

/* Roman numeral hidden (kept in markup for backward compat) */
.security-trio__roman {
  display: none;
}

.security-trio__content {
  position: relative;
  z-index: 2;
  display: contents;
}

/* LEFT column — huge display title */
.security-trio__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.security-trio__title::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-left: 18px;
  vertical-align: middle;
  transform: translateY(-2px);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}
.security-trio__item:hover .security-trio__title::after {
  width: 96px;
  background: #fff;
}

/* RIGHT column — small description */
.security-trio__text {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
  position: relative;
  z-index: 2;
}

@media (max-width: 880px) {
  .security-trio,
  .article__body--center > .security-trio,
  .article__body > .security-trio {
    width: 92vw;
    margin: 40px auto 48px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .security-trio__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 24px;
  }
  .security-trio__title {
    font-size: clamp(28px, 9vw, 44px);
  }
  .security-trio__title::after {
    width: 28px;
    margin-left: 14px;
  }
}

/* ============================================================
   STEP TRACK — horizontal numbered milestone visualization
   with a thin connecting line. Used on
   /stig-rock/mitglied-werden.php for the 4-step
   onboarding journey.
   ============================================================ */
.step-track,
.article__body--center > .step-track,
.article__body > .step-track {
  list-style: none;
  margin: 72px auto 88px;
  margin-left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  max-width: none;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
/* Horizontal connecting line that runs across all nodes */
.step-track::before {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(100% / 4 / 2);
  right: calc(100% / 4 / 2);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.15) 100%
  );
  pointer-events: none;
}
.step-track__item {
  position: relative;
  padding-top: 56px;
  text-align: center;
  cursor: default;
}
/* Node marker on the timeline */
.step-track__node {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.55);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.step-track__node::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s ease;
}
.step-track__item:hover .step-track__node {
  border-color: #fff;
  transform: translateX(-50%) rotate(45deg);
}
.step-track__item:hover .step-track__node::after {
  background: #fff;
}

.step-track__num {
  display: block;
  margin-bottom: 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}
.step-track__item:hover .step-track__num {
  color: #fff;
}
.step-track__title {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.step-track .step-track__text,
.article__body .step-track__text {
  margin: 0 auto;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 220px;
}

@media (max-width: 880px) {
  .step-track,
  .article__body--center > .step-track,
  .article__body > .step-track {
    grid-template-columns: 1fr;
    gap: 48px;
    width: 92vw;
    margin: 48px auto 56px;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-left: 36px;
  }
  /* Convert horizontal line to vertical for mobile stack */
  .step-track::before {
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.15) 100%
    );
  }
  .step-track__item {
    padding-top: 0;
    padding-left: 28px;
  }
  .step-track__node {
    top: 4px;
    left: -36px;
    transform: none;
  }
  .step-track__item:hover .step-track__node {
    transform: rotate(45deg);
  }
  .step-track__num,
  .step-track__title,
  .step-track .step-track__text,
  .article__body .step-track__text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================================================
   BENTO GRID — asymmetric card layout used for the Vorteile
   block on /stig-rock/mitglied-werden.php. 5 items in
   varied sizes (1 large, 1 wide, 3 normal).
   ============================================================ */
.bento-grid,
.article__body--center > .bento-grid,
.article__body > .bento-grid {
  list-style: none;
  padding: 0;
  margin: 56px auto 64px;
  margin-left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
}
.bento-grid__item {
  position: relative;
  padding: 32px 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  counter-increment: bento;
}
.bento-grid {
  counter-reset: bento;
}
.bento-grid__item:hover {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 100%
    );
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

/* Size variations */
.bento-grid__item--large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 44px 36px;
}
.bento-grid__item--wide {
  grid-column: span 2;
}

/* Top hairline accent that grows on hover */
.bento-grid__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}
.bento-grid__item:hover::after {
  width: 64px;
  background: #fff;
}

.bento-grid__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.4);
  font-feature-settings: "tnum";
}
.bento-grid__num::before {
  content: "0" counter(bento);
}

.bento-grid__title {
  margin: 0 0 10px;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #fff;
}
.bento-grid__item--large .bento-grid__title {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.bento-grid__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}
.bento-grid__item--large .bento-grid__text {
  font-size: clamp(14.5px, 1.05vw, 16px);
  max-width: 420px;
}

@media (max-width: 880px) {
  .bento-grid,
  .article__body--center > .bento-grid,
  .article__body > .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    width: 92vw;
    margin: 40px auto 48px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .bento-grid__item--large,
  .bento-grid__item--wide {
    grid-column: span 1;
    grid-row: span 1;
    padding: 32px 26px;
  }
}

/* ============================================================
   EDITORIAL CALLOUT — full-bleed centered callout with bg image
   Used on /stig-rock/mitglied-werden.php for the
   "Beratung & Begleitung" section.
   ============================================================ */
.editorial-callout {
  position: relative;
  width: 100%;
  padding: 130px 6vw;
  background: #050505;
  overflow: hidden;
}
.editorial-callout__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(0.85);
  transform: scale(1.04);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
.editorial-callout:hover .editorial-callout__bg {
  transform: scale(1.07);
}
.editorial-callout__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 90% at center,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.7) 100%
    );
  pointer-events: none;
  z-index: 1;
}
.editorial-callout__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
/* Top + bottom hairline framing */
.editorial-callout__inner::before,
.editorial-callout__inner::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
}
.editorial-callout__inner::before { margin-bottom: 32px; }
.editorial-callout__inner::after  { margin-top: 32px; }

.editorial-callout__eyebrow {
  display: block;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.editorial-callout__title {
  margin: 0 0 30px;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.editorial-callout__text {
  margin: 0 auto 16px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
}
.editorial-callout__actions {
  margin-top: 36px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 880px) {
  .editorial-callout {
    padding: 80px 6vw;
  }
}

/* ============================================================
   VALUE STRIPES — horizontal manifesto rows
   Used on /stig-rock/mitglied-werden.php for the
   "Die Vorteile einer Mitgliedschaft" section. Each row spans
   full width with the title on the left and description on
   the right, separated by a vertical hairline; rows stack with
   horizontal hairlines between them.
   ============================================================ */
.value-stripes,
.article__body--center > .value-stripes,
.article__body > .value-stripes {
  list-style: none;
  padding: 0;
  margin: 56px auto 64px;
  margin-left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  max-width: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.value-stripe {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 56px;
  align-items: center;
  padding: 32px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.4s ease, padding-left 0.4s ease;
}
.value-stripe:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 44px;
}

/* Left column: title with growing inline underline */
.value-stripe__title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  position: relative;
}
.value-stripe__title::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin-left: 16px;
  vertical-align: middle;
  transform: translateY(-3px);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}
.value-stripe:hover .value-stripe__title::after {
  width: 72px;
  background: #fff;
}

/* Right column: description text */
.value-stripe__text {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  text-align: left;
}

@media (max-width: 880px) {
  .value-stripes,
  .article__body--center > .value-stripes,
  .article__body > .value-stripes {
    width: 92vw;
    margin: 40px auto 48px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .value-stripe {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 18px;
  }
  .value-stripe:hover {
    padding-left: 18px;
  }
  .value-stripe__title {
    font-size: clamp(20px, 6vw, 26px);
  }
}

/* ============================================================
   TRUST TRIO — simple 3-column editorial layout
   Used on /stig-rock/sicherheit.php for the three
   security principles (Übersicht / Prüfbarkeit / Kundenposition).
   ============================================================ */
.trust-trio,
.article__body--center > .trust-trio,
.article__body > .trust-trio {
  list-style: none;
  padding: 0;
  margin: 64px auto 72px;
  margin-left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-trio__item {
  padding: 44px 36px 40px;
  text-align: left;
}
.trust-trio__item + .trust-trio__item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-trio__item-inner {
  display: contents;
}

/* Hide all the leftover cube faces — only front + right are used */
.trust-trio__face--back,
.trust-trio__face--left,
.trust-trio__face--top,
.trust-trio__face--bottom,
.trust-trio__hint {
  display: none;
}
.trust-trio__face--front,
.trust-trio__face--right {
  display: contents;
}

.trust-trio__eyebrow {
  display: block;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-feature-settings: "tnum";
}
/* Eyebrow on the back content is hidden (duplicate of front) */
.trust-trio__face--right .trust-trio__eyebrow {
  display: none;
}

.trust-trio__title {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
}
.trust-trio__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.trust-trio__back-title {
  display: none;
}

.trust-trio__text {
  margin: 0 0 10px;
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}
.trust-trio__text:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .trust-trio,
  .article__body--center > .trust-trio,
  .article__body > .trust-trio {
    grid-template-columns: 1fr;
    width: 92vw;
    margin: 40px auto 48px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .trust-trio__item + .trust-trio__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .trust-trio__item {
    padding: 36px 28px 32px;
  }
}

/* ============================================================
   PRINCIPLES — compact numbered editorial grid (2-col)
   Used on the Stig Rock "Über das Unternehmen" page
   for the values block.
   ============================================================ */
.principles {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: principle;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.principle {
  position: relative;
  counter-increment: principle;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}
/* Vertical hairline between the two columns */
.principle:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.principle:hover {
  background: rgba(255, 255, 255, 0.03);
}
/* Inline numeric prefix before the title, generated via CSS counter */
.principle__title {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.principle__title::before {
  content: "0" counter(principle);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  font-feature-settings: "tnum";
  transition: color 0.3s ease;
}
.principle:hover .principle__title::before {
  color: #fff;
}
.principle__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}

/* The 5th (last) item spans both columns to fill the grid cleanly */
.principle:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: none;
}

@media (max-width: 560px) {
  .principles {
    grid-template-columns: 1fr;
  }
  .principle:nth-child(odd) {
    border-right: none;
  }
  .principle:last-child:nth-child(odd) {
    grid-column: 1;
  }
  .principle {
    padding: 16px 0;
  }
}

/* ============================================================
   CONTENT ROW — editorial 2-column layout for content sections
   Headline + eyebrow on the LEFT, body text on the RIGHT.
   Compact magazine-style alternative to centered article columns.
   ============================================================ */
.content-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.7fr);
  gap: 80px;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 80px 6vw;
  align-items: start;
}
.content-row + .content-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.content-row__title-col {
  position: sticky;
  top: 140px;
  text-align: left;
}
.content-row__eyebrow {
  display: block;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.content-row__title {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: #fff;
}
.content-row__title::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.35);
}
.content-row__text-col {
  text-align: left;
}
.content-row__text-col p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.content-row__text-col p:last-child {
  margin-bottom: 0;
}
.content-row__points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-row__points li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.content-row__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

/* ---- Content-row layout variants (text position only) ---- */
.content-row--reverse {
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
}
.content-row--reverse .content-row__title-col {
  order: 2;
  text-align: right;
}
.content-row--reverse .content-row__text-col {
  order: 1;
}
.content-row--reverse .content-row__title::after {
  margin-left: auto;
}

.content-row--stack {
  grid-template-columns: 1fr;
  gap: 36px;
}
.content-row--stack .content-row__title-col {
  position: static;
  top: auto;
  max-width: 520px;
}

.content-row--center {
  grid-template-columns: 1fr;
  gap: 28px;
  width: min(760px, 92vw);
  text-align: center;
}
.content-row--center .content-row__title-col,
.content-row--center .content-row__text-col {
  text-align: center;
}
.content-row--center .content-row__title-col {
  position: static;
  top: auto;
}
.content-row--center .content-row__title::after {
  margin-left: auto;
  margin-right: auto;
}

.content-row--tone {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
  padding-right: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
  background: linear-gradient(180deg, var(--content-tone-top) 0%, var(--content-tone-bottom) 100%);
}
.content-row--tone + .content-row {
  border-top: none;
}

.content-row--values {
  grid-template-columns: 1fr;
  gap: 40px;
}
.content-row--values .content-row__title-col {
  position: static;
  top: auto;
  max-width: 520px;
}
.content-row--values .principles {
  margin-top: 0;
}

.content-row__points--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.content-row__points--inline li {
  padding: 8px 14px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.content-row__points--inline li::before {
  display: none;
}
.content-row__points--center {
  justify-content: center;
}

/* Intro section — centered headline + 3-point strip (ueber-uns section 01) */
.content-row--intro {
  grid-template-columns: 1fr;
  gap: 32px;
  width: min(960px, 92vw);
  margin-inline: auto;
  text-align: center;
}
.content-row--intro.content-row--tone {
  width: 100%;
  max-width: 100%;
  padding-inline: max(6vw, calc((100vw - 960px) / 2));
}
.content-row--intro .content-row__title-col,
.content-row--intro .content-row__text-col {
  position: static;
  top: auto;
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
}
.content-row--intro .content-row__title::after {
  margin-inline: auto;
}
.intro-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.intro-points__item {
  padding: 28px 20px;
  text-align: center;
}
.intro-points__item + .intro-points__item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.intro-points__num {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.32);
  font-feature-settings: "tnum";
}
.intro-points__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 880px) {
  .intro-points {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .intro-points__item + .intro-points__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .intro-points__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Values showcase — bento mosaic (ueber-uns section 03) */
.content-row--values-showcase {
  grid-template-columns: 1fr;
  gap: 48px;
  width: min(1100px, 94vw);
  margin-inline: auto;
  text-align: center;
}
.content-row--values-showcase.content-row--bg,
.content-row--global.content-row--bg,
.content-row--intro.content-row--bg {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  overflow: hidden;
}
.content-row--values-showcase.content-row--bg {
  padding-inline: max(4vw, calc((100vw - 1100px) / 2));
}
.content-row--global.content-row--bg {
  padding-inline: max(6vw, calc((100vw - 1080px) / 2));
}
.content-row--values-showcase.content-row--bg .content-row__bg,
.content-row--global.content-row--bg .content-row__bg,
.content-row--intro.content-row--bg .content-row__bg {
  opacity: 0.18;
  filter: saturate(0.82);
  transform: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 46%,
    #000 54%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 46%,
    #000 54%,
    transparent 100%
  );
  transition: opacity 0.5s ease;
}
@media (min-width: 881px) {
  .content-row--values-showcase.content-row--bg .content-row__bg,
  .content-row--global.content-row--bg .content-row__bg,
  .content-row--intro.content-row--bg .content-row__bg {
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 38%,
      #000 62%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 38%,
      #000 62%,
      transparent 100%
    );
  }
}

/* Über-uns page — one continuous tone bg (section 06 look, no banding between rows) */
.ueber-uns-page {
  background: linear-gradient(180deg, var(--content-tone-top) 0%, var(--content-tone-bottom) 100%);
}
.ueber-uns-page .article,
.ueber-uns-page .content-row.content-row--tone {
  background: transparent;
}
.ueber-uns-page .content-row + .content-row {
  border-top: none;
}
.content-row--values-showcase.content-row--bg:hover .content-row__bg,
.content-row--global.content-row--bg:hover .content-row__bg,
.content-row--intro.content-row--bg:hover .content-row__bg {
  opacity: 0.24;
  filter: saturate(0.9);
  transform: none;
}
.content-row--values-showcase.content-row--bg::before,
.content-row--global.content-row--bg::before,
.content-row--intro.content-row--bg::before {
  display: none;
}
.content-row--values-showcase.content-row--bg::after,
.content-row--global.content-row--bg::after,
.content-row--intro.content-row--bg::after {
  display: none;
}
.content-row--values-showcase.content-row--bg .content-row__title-col,
.content-row--values-showcase.content-row--bg .values-mosaic,
.content-row--global.content-row--bg .content-row__title-col,
.content-row--global.content-row--bg .content-row__text-col,
.content-row--global.content-row--bg .global-leaders,
.content-row--intro.content-row--bg .content-row__title-col,
.content-row--intro.content-row--bg .content-row__text-col,
.content-row--intro.content-row--bg .intro-points {
  position: relative;
  z-index: 2;
}
.content-row--values-showcase.content-row--bg .content-row__title,
.content-row--global.content-row--bg .content-row__title,
.content-row--intro.content-row--bg .content-row__title {
  text-shadow: none;
}
.content-row--values-showcase.content-row--bg .content-row__text-col p,
.content-row--global.content-row--bg .content-row__text-col p,
.content-row--intro.content-row--bg .content-row__text-col p {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: none;
}
.content-row__bg--video {
  background-image: none;
}
.content-row__bg--video .content-row__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.content-row--values-showcase .content-row__title-col {
  position: static;
  top: auto;
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
}
.content-row--values-showcase .content-row__title::after {
  margin-inline: auto;
}
.values-mosaic {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(148px, auto);
  gap: 3px;
}
.values-mosaic__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 148px;
  padding: 28px 26px;
  overflow: hidden;
  text-align: left;
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.values-mosaic__tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
  transition: width 0.4s ease;
}
.values-mosaic__tile:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.values-mosaic__tile:hover::before {
  width: 100%;
}
.values-mosaic__tile:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  min-height: 100%;
  padding: 36px 30px;
}
.values-mosaic__tile:nth-child(2) { grid-column: 6 / 13; grid-row: 1 / 2; }
.values-mosaic__tile:nth-child(3) { grid-column: 6 / 13; grid-row: 2 / 3; }
.values-mosaic__tile:nth-child(4) { grid-column: 1 / 5; grid-row: 3 / 4; }
.values-mosaic__tile:nth-child(5) { grid-column: 5 / 13; grid-row: 3 / 4; }
.values-mosaic__num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.07);
  font-feature-settings: "tnum";
  pointer-events: none;
  transition: color 0.35s ease;
}
.values-mosaic__tile--hero .values-mosaic__num {
  top: auto;
  bottom: -8px;
  right: 8px;
  font-size: clamp(88px, 11vw, 140px);
  color: rgba(255, 255, 255, 0.06);
}
.values-mosaic__tile:hover .values-mosaic__num {
  color: rgba(255, 255, 255, 0.16);
}
.values-mosaic__body {
  position: relative;
  z-index: 1;
}
.values-mosaic__title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.values-mosaic__tile--hero .values-mosaic__title {
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.14em;
}
.values-mosaic__text {
  margin: 0;
  max-width: 34ch;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
}
.values-mosaic__tile--hero .values-mosaic__text {
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 28ch;
}
.values-mosaic__tile--wide .values-mosaic__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
}
.values-mosaic__tile--wide .values-mosaic__title {
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .values-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .values-mosaic__tile:nth-child(n) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 132px;
  }
  .values-mosaic__tile--wide .values-mosaic__body {
    display: block;
  }
  .values-mosaic__tile--wide .values-mosaic__title {
    margin-bottom: 8px;
    white-space: normal;
  }
}

/* Global section — centered layout with leadership portraits */
.content-row--global {
  grid-template-columns: 1fr;
  gap: 36px;
  width: min(1080px, 92vw);
  margin-inline: auto;
  text-align: center;
}
.content-row--global.content-row--tone {
  width: 100%;
  max-width: 100%;
  padding-inline: max(6vw, calc((100vw - 1080px) / 2));
}
.content-row--global .content-row__title-col,
.content-row--global .content-row__text-col {
  position: static;
  top: auto;
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
}
.content-row--global .content-row__title::after {
  margin-inline: auto;
}

/* Global leaders — gray placeholder portraits (ueber-uns section 04) */
.global-leaders {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  width: 100%;
}
.global-leaders__item {
  text-align: center;
}
.global-leaders__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #161616;
}
.global-leaders__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) brightness(0.5);
}
.global-leaders__region {
  margin: 14px 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.global-leaders__label {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 880px) {
  .global-leaders {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .global-leaders__photo {
    aspect-ratio: 16 / 10;
  }
  .content-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 6vw;
  }
  .content-row__title-col {
    position: static;
    top: auto;
  }
  .content-row__title::after {
    margin-top: 16px;
  }
  .content-row--reverse .content-row__title-col,
  .content-row--reverse .content-row__text-col {
    order: unset;
    text-align: left;
  }
  .content-row--reverse .content-row__title::after {
    margin-left: 0;
  }
  .content-row--center .content-row__title-col,
  .content-row--center .content-row__text-col {
    text-align: left;
  }
  .content-row--center .content-row__title::after {
    margin-left: 0;
    margin-right: 0;
  }
  .content-row--stack .content-row__title-col,
  .content-row--values .content-row__title-col {
    max-width: none;
  }
}

/* ---- Content-row with background image (vignette fade + hover zoom) ---- */
/* Video-background variant of content-row */
.content-row--video-bg {
  overflow: hidden;
  position: relative;
  align-items: start;
  /* Break out of the centered max-width so the video fills edge-to-edge */
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
  padding-right: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
}
.content-row--video-bg + .content-row {
  border-top: none;
}
.content-row__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.30) saturate(0.8);
  pointer-events: none;
  z-index: 0;
}
.content-row__video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.content-row--video-bg .content-row__title-col,
.content-row--video-bg .content-row__text-col {
  position: relative;
  z-index: 2;
}
.content-row--video-bg .content-row__title-col {
  position: relative;
  top: auto;
}
.content-row--video-bg .content-row__title {
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.content-row--video-bg .content-row__eyebrow {
  color: rgba(255,255,255,0.6);
}
.content-row--video-bg .content-row__text-col p {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

.content-row--bg {
  overflow: hidden;
  align-items: start;
}
/* Stronger all-edge vignette + extra bottom spacing */
.content-row--bg-deep-fade {
  /* Break out of the centered max-width so bg reaches full viewport width */
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
  padding-right: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
  padding-bottom: 220px;
}
.content-row--bg-deep-fade .content-row__bg {
  -webkit-mask-image: radial-gradient(
    ellipse 60% 58% at center,
    rgba(0,0,0,1)    0%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,0.35) 58%,
    transparent      80%
  );
  mask-image: radial-gradient(
    ellipse 60% 58% at center,
    rgba(0,0,0,1)    0%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,0.35) 58%,
    transparent      80%
  );
  transform: scale(1.10);
}
/* In the BG variant, disable the sticky behaviour so the title sits at
   the very top of the row instead of being vertically pinned. */
.content-row--bg .content-row__title-col {
  position: static;
  top: auto;
}
.content-row--bg + .content-row {
  border-top: none;
}
.content-row__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.32) saturate(0.85);
  transform: scale(1.04);
  /* Vignette mask — soft fade on all four edges (radial) */
  -webkit-mask-image: radial-gradient(
    ellipse 88% 80% at center,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0.85) 60%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 88% 80% at center,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0.85) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  transition:
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
  will-change: transform;
}
.content-row--bg:hover .content-row__bg {
  transform: scale(1.08);
  filter: brightness(0.48) saturate(1);
}
/* Additional dark overlay on top of the bg image for extra depth */
.content-row--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* Make sure the content sits above the bg layer */
.content-row--bg .content-row__title-col,
.content-row--bg .content-row__text-col {
  position: relative;
  z-index: 2;
}
/* Slightly brighten title text against the now-darkened bg */
.content-row--bg .content-row__title {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.content-row--bg .content-row__text-col p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

/* Über-uns soft BG (sections 01/03/04) — keep tone visible, no generic dark vignette/hover zoom */
.content-row--values-showcase.content-row--bg::after,
.content-row--global.content-row--bg::after,
.content-row--intro.content-row--bg::after {
  display: none;
}
.content-row--values-showcase.content-row--bg:hover .content-row__bg,
.content-row--global.content-row--bg:hover .content-row__bg,
.content-row--intro.content-row--bg:hover .content-row__bg {
  transform: none;
  filter: saturate(0.9);
}

@media (max-width: 880px) {
  /* Tighter vignette on mobile so the bg fills the narrower card */
  .content-row__bg {
    -webkit-mask-image: radial-gradient(
      ellipse 95% 78% at center,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 0.85) 65%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 95% 78% at center,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 0.85) 65%,
      transparent 100%
    );
  }
}

/* ============================================================
   STATS BAND — modern minimal display-typography strip
   Full-bleed, no card containers, focus on huge numbers.
   Used on Stig Rock /system.php below process cards.
   ============================================================ */
.stats-band {
  position: relative;
  width: 100%;
  background: #050505;
  padding: 120px 6vw 130px;
  overflow: hidden;
}
.stats-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Video variant — replaces the subtle gradient bg with a looping clip */
.stats-band--video .stats-band__bg {
  background:
    radial-gradient(
      ellipse 50% 70% at 50% 0%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 70%
    );
}
.stats-band__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.65) saturate(0.85);
  z-index: 0;
}
.stats-band__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.stats-band__video.is-playing {
  opacity: 1;
}
.stats-band__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.22) 50%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    radial-gradient(
      ellipse 70% 100% at 50% 50%,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 100%
    );
  z-index: 2;
}

/* Make sure the stat content sits ABOVE the video / scrim */
.stats-band--video .stats-band__header,
.stats-band--video .stats-band__list {
  position: relative;
  z-index: 3;
}

/* ---- Header ---- */
.stats-band__header {
  position: relative;
  text-align: center;
  margin: 0 auto 96px;
  max-width: 720px;
}
.stats-band__eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.stats-band__heading {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
  color: #fff;
}

/* ---- Stats grid — no cards, just clean typography ---- */
.stats-band__list {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.stats-band__item {
  position: relative;
  padding: 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Subtle vertical hairline divider between items */
.stats-band__item + .stats-band__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
}
.stats-band__item:hover {
  transform: translateY(-4px);
}

/* ---- Index — small discrete corner marker ---- */
.stats-band__index {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.35);
  font-feature-settings: "tnum";
  transition: color 0.4s ease;
}
.stats-band__item:hover .stats-band__index {
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Diamond ornament hidden in modern variant ---- */
.stats-band__ornament {
  display: none;
}

/* ---- Value — refined display number ---- */
.stats-band__value {
  display: block;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  font-feature-settings: "tnum" 1, "ss01" 1;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats-band__value-suffix {
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 1px;
}

/* ---- Hairline rule under the value ---- */
.stats-band__rule {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transition:
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}
.stats-band__item:hover .stats-band__rule {
  width: 56px;
  background: rgba(255, 255, 255, 0.8);
}

/* ---- Label — small refined caption ---- */
.stats-band__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}
.stats-band__item:hover .stats-band__label {
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .stats-band {
    padding: 90px 6vw 100px;
  }
  .stats-band__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 0;
  }
  .stats-band__item:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 760px) {
  .stats-band {
    padding: 64px 6vw 72px;
  }
  .stats-band__header {
    margin-bottom: 56px;
  }
  .stats-band__list {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }
  .stats-band__item {
    gap: 18px;
  }
  .stats-band__item::before {
    display: none !important;
  }
  /* On mobile, show a horizontal divider between items instead */
  .stats-band__item + .stats-band__item {
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stats-band__value {
    font-size: clamp(32px, 9vw, 44px);
  }
  .stats-band__label {
    letter-spacing: 0.22em;
  }
}

@media (max-width: 1100px) {
  .process-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process-card {
    aspect-ratio: 4 / 5;
  }
}
@media (max-width: 760px) {
  .process-section {
    padding: 60px 6vw 70px;
  }
  .process-section__title {
    margin-bottom: 32px;
    letter-spacing: 0.12em;
  }
  .process-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-card {
    aspect-ratio: auto;
    min-height: 220px;
  }
  /* On touch / mobile, expand the text by default since there is no hover */
  .process-card__text {
    max-height: 240px;
    opacity: 1;
    transform: none;
  }
  .process-card__number {
    color: rgba(255, 255, 255, 0.78);
  }
}

/* ---- Pull quote ---- */
/* ============================================================
   PULL QUOTE — editorial statement block used across Diamond
   Solution subpages. Oversized ghosted quote mark behind a
   centered display headline, flanked by hairline ornaments.
   ============================================================ */
.pull-quote,
.article__body--center > .pull-quote,
.article__body > .pull-quote {
  position: relative;
  margin: 96px auto;
  padding: 96px 60px;
  width: min(960px, 92vw);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border: none;
  background:
    radial-gradient(
      ellipse 75% 110% at 50% 50%,
      rgba(255, 255, 255, 0.045) 0%,
      transparent 70%
    );
  overflow: hidden;
}
/* Top + bottom hairline ornaments */
.pull-quote::before,
.pull-quote::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
}
.pull-quote::before { top: 36px; }
.pull-quote::after  { bottom: 36px; }

/* Huge ghosted quotation mark behind the text */
.pull-quote__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  background: none;
  transform: translate(-50%, -55%);
  font-family: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(220px, 26vw, 320px);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: rgba(255, 255, 255, 0.055);
  pointer-events: none;
  z-index: 0;
  display: block;
}

/* The actual quote text — display-size, refined typography */
.pull-quote__text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 300;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: 0.01em;
  color: #fff;
  max-width: 760px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

@media (max-width: 880px) {
  .pull-quote,
  .article__body--center > .pull-quote,
  .article__body > .pull-quote {
    width: 92vw;
    margin: 56px auto;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 72px 28px;
  }
  .pull-quote::before,
  .pull-quote::after {
    width: 140px;
  }
  .pull-quote::before { top: 26px; }
  .pull-quote::after  { bottom: 26px; }
  .pull-quote__mark {
    font-size: clamp(160px, 50vw, 220px);
  }
  .pull-quote__text {
    font-size: clamp(20px, 6.4vw, 30px);
  }
}

/* ---- Stats strip (4 quick value props) ---- */
.stats-strip {
  list-style: none;
  margin: 52px 0;
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  width: 100%;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat__value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
}
.stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Highlight callout box ---- */
.highlight-box {
  margin: 56px 0 8px;
  padding: 32px 32px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.highlight-box__label {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.highlight-box__title {
  margin: 0 0 14px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: #fff;
}
.highlight-box__text {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0 32px;
  }
  .pull-quote {
    margin: 48px auto;
    padding: 28px 16px 22px;
  }
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
    margin: 40px 0;
    padding: 26px 0;
  }
  .highlight-box {
    padding: 26px 22px;
    margin: 42px 0 4px;
  }
  .values {
    margin: 24px 0 32px;
  }
  .value {
    padding: 20px 0;
  }
  .trust-boxes {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 36px;
  }
  .article__lead-actions {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .article__lead-actions .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
.article__summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article__summary li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
}
.article__summary li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: rgba(255, 255, 255, 0.85);
}

.article__body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.005em;
}
.article__body p {
  margin: 0 0 18px;
}
.article__body h2 {
  margin: 36px 0 14px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}
.article__body h3 {
  margin: 28px 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.article__body ul,
.article__body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.article__body li {
  margin-bottom: 6px;
}
.article__body a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article__body blockquote {
  margin: 24px 0;
  padding: 6px 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}
.article__body strong {
  color: #fff;
  font-weight: 600;
}

/* ---- Bottom big share row ---- */
.article__share-row {
  margin: 56px 0 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.article-share {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 4px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.article-share:hover { opacity: 0.75; }
.article-share__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.article-share__icon svg {
  width: 17px;
  height: 17px;
}

/* ---- Sidebar ---- */
.article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: sticky;
  top: 110px;
}
.article-side {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}
.article-side:first-child {
  border-top: 0;
  padding-top: 0;
}
.article-side__title {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.article-side__share {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}
.article-side__share a,
.article-side__share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.article-side__share svg {
  width: 18px;
  height: 18px;
}
.article-side__share a:hover,
.article-side__share button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.article-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.article-side__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.article-side__list li:last-child {
  border-bottom: 0;
}
.article-side__list a {
  display: block;
  padding: 18px 0;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}
.article-side__list a:hover {
  opacity: 0.78;
}
.article-side__item-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.article-side__item-meta {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.article-side__dot { opacity: 0.65; }

.article-latest {
  padding-top: 30px;
  padding-bottom: 80px;
}

/* ---- Article page on mobile ---- */
@media (max-width: 900px) {
  .article-page {
    padding-top: 100px;
  }
  .article__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .article__sidebar {
    position: static;
  }
  .article__share-row {
    justify-content: flex-start;
    gap: 14px;
  }
  .article-share {
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 8px;
  }
}

/* ============================================================
   ADMIN PANEL (content manager)
   - Sidebar nav + dedicated list / edit views per section
   ============================================================ */
.admin-body {
  background: #07070a;
  color: rgba(255, 255, 255, 0.92);
  min-height: 100vh;
  margin: 0;
  font-family: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

/* ---- Sidebar ---- */
.admin-sidebar {
  background: #0c0c10;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.admin-sidebar__brand {
  display: block;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-sidebar__brand img {
  height: 30px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}
.admin-sidebar__toggle {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.admin-sidebar__toggle svg {
  width: 18px;
  height: 18px;
}

.admin-brand-switch {
  padding: 18px 24px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-brand-switch__tabs {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px;
}
.admin-brand-switch__tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.admin-brand-switch__tab:hover {
  color: #fff;
}
.admin-brand-switch__tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-nav {
  padding: 18px 0;
  flex: 1;
  overflow-y: auto;
}
.admin-nav__group {
  margin-bottom: 22px;
}
.admin-nav__group-title {
  margin: 0;
  padding: 0 24px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.admin-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-left: 2px solid transparent;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.admin-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.admin-nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #fff;
}
.admin-nav__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}
.admin-nav__link.is-active .admin-nav__dot {
  opacity: 1;
}

.admin-sidebar__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-sidebar__action {
  display: block;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}
.admin-sidebar__action:hover {
  color: #fff;
}
.admin-sidebar__action--logout {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 150, 150, 0.75);
}
.admin-sidebar__action--logout:hover {
  color: #ff9090;
}

/* ---- Main content ---- */
.admin-content {
  padding: 36px 44px 80px;
  min-width: 0; /* allow flex children to shrink */
}
.admin-content__head {
  margin-bottom: 28px;
}
.admin-content__title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}
.admin-content__hint {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  max-width: 560px;
}
.admin-content__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.admin-content__count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.admin-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}
.admin-btn--ghost {
  background: transparent;
}
.admin-btn--primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.admin-btn--primary:hover {
  background: #e4e4e4;
  border-color: #e4e4e4;
}
.admin-btn--danger {
  border-color: rgba(255, 90, 90, 0.5);
  color: #ff8080;
}
.admin-btn--danger:hover {
  background: rgba(255, 90, 90, 0.1);
  border-color: #ff8080;
}

/* ---- Card-form (edit + featured editor) ---- */
.admin-card-form {
  max-width: 720px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 30px 30px;
}
.admin-form__heading {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.admin-form__preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.admin-form__preview-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.admin-form__preview-thumb {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  background-color: #111;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Form base ---- */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.admin-form__row {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.admin-form__grid {
  display: grid;
  gap: 18px;
}
.admin-form__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-form__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin-form__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.admin-form__input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 11px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.admin-form__input:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.5);
}
.admin-form__input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.admin-form__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-form__hint {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
.admin-form__input--summary {
  font-family: inherit;
  line-height: 1.5;
}

/* ---- File upload ---- */
.admin-upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: fit-content;
}
.admin-upload:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.admin-upload input[type="file"] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 240px;
}
.admin-upload__label {
  display: inline-block;
}

/* ---- Quill editor dark theme ---- */
.admin-editor-wrap {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.admin-editor-wrap .ql-toolbar {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
}
.admin-editor-wrap .ql-toolbar .ql-stroke { stroke: rgba(255, 255, 255, 0.65); }
.admin-editor-wrap .ql-toolbar .ql-fill   { fill:   rgba(255, 255, 255, 0.65); }
.admin-editor-wrap .ql-toolbar .ql-picker-label { color: rgba(255, 255, 255, 0.65); }
.admin-editor-wrap .ql-toolbar button:hover .ql-stroke,
.admin-editor-wrap .ql-toolbar button.ql-active .ql-stroke,
.admin-editor-wrap .ql-toolbar .ql-picker-label:hover {
  stroke: #fff; color: #fff;
}
.admin-editor-wrap .ql-toolbar button:hover .ql-fill,
.admin-editor-wrap .ql-toolbar button.ql-active .ql-fill {
  fill: #fff;
}
.admin-editor-wrap .ql-toolbar .ql-picker-options {
  background: #15151a;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.admin-editor-wrap .ql-container {
  border: 0;
  min-height: 280px;
  font-family: inherit;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
}
.admin-editor-wrap .ql-editor {
  min-height: 280px;
  padding: 18px 16px;
}
.admin-editor-wrap .ql-editor.ql-blank::before {
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
}
.admin-editor-wrap .ql-editor h2,
.admin-editor-wrap .ql-editor h3 {
  color: #fff;
}
.admin-editor-wrap .ql-editor a {
  color: #fff;
  text-decoration: underline;
}
.admin-editor-wrap .ql-snow .ql-tooltip {
  background: #15151a;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.admin-editor-wrap .ql-snow .ql-tooltip input[type="text"] {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ---- Item list ---- */
.admin-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.admin-inline-form {
  display: inline-block;
}
.admin-card {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.admin-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.admin-card__thumb {
  flex: 0 0 96px;
  width: 96px;
  height: 72px;
  background-size: cover;
  background-position: center;
  background-color: #111;
}
.admin-card__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}
.admin-card__title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.admin-card__caption {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.admin-card__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.admin-pill {
  display: inline-block;
  padding: 3px 8px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}
.admin-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-link {
  background: transparent;
  border: 0;
  padding: 4px 0;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color 0.2s ease;
}
.admin-link:hover:not(:disabled) {
  color: #fff;
}
.admin-link:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.admin-link--danger {
  color: rgba(255, 120, 120, 0.85);
}
.admin-link--danger:hover {
  color: #ff8080;
}

/* ---- Toast notification ---- */
.admin-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  padding: 12px 22px;
  background: rgba(20, 20, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.admin-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.admin-toast--error {
  border-color: rgba(255, 90, 90, 0.6);
  color: #ff8080;
}

.admin-empty {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ---- Login page ---- */
.admin-login {
  max-width: 360px;
  margin: 0 auto;
  padding: 100px 28px;
  text-align: center;
}
.admin-login__logo {
  display: inline-block;
  margin-bottom: 36px;
}
.admin-login__logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}
.admin-login__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.admin-login__title {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.admin-login__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.admin-login__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.admin-login__error {
  margin: 0 0 18px;
  padding: 10px 14px;
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.4);
  color: #ff9090;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 240px;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 60;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.5);
  }
  .admin-sidebar.is-open {
    transform: translateX(0);
  }
  .admin-sidebar__toggle {
    display: inline-flex;
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 65;
  }
  .admin-content {
    padding: 70px 18px 80px;
  }
  .admin-content__title {
    font-size: 22px;
  }
  .admin-card-form {
    padding: 22px 18px 24px;
  }
  .admin-form__grid--2,
  .admin-form__grid--3 {
    grid-template-columns: 1fr;
  }
  .admin-card {
    flex-direction: column;
  }
  .admin-card__thumb {
    width: 100%;
    height: 140px;
    flex: 0 0 auto;
  }
}

/* ============================================================
   PAGE TRANSITION OVERLAY
   - Solid black fullscreen layer on top of everything
   - Starts visible on every page so navigation reveals
     content via a clean fade-in
   - JS adds .is-revealed once the new page is rendered
   - JS removes .is-revealed before navigating away
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-transition.is-revealed {
  opacity: 0;
}

/* Reduced-motion users get an instant cut */
@media (prefers-reduced-motion: reduce) {
  .page-transition {
    transition: none !important;
  }
}

/* ============================================================
   GLOBAL: minimal darkening across every BG image / video
   so the white UI / text stays readable on bright frames.
   Applied via `filter: brightness()` so it doesn't require
   extra DOM elements and stacks cleanly with section scrims.
   ============================================================ */
.bg-video,
.bg-fallback,
.feature-bg,
.newsletter-bg,
.contact-bg,
.error-bg,
.featured-event__image,
.highlight-card__image,
.news-card__image {
  filter: brightness(0.88);
}

/* ============================================================
   BACKGROUND STAGE
   ============================================================ */
.bg-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Dark fallback shown while the video loads or if it fails.
   Uses a moody gradient that hints at a cinematic luxury vibe. */
.bg-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      120% 80% at 70% 60%,
      rgba(255, 90, 30, 0.55) 0%,
      rgba(120, 25, 10, 0.4) 35%,
      rgba(10, 5, 5, 0.95) 75%,
      #050202 100%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

/* subtle darken overlay so white UI stays readable on any frame */
.bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

/* ============================================================
   TOP DARK FADE (sits behind the header to lift logo + icons)
   ============================================================ */
.top-fade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 10; /* above the bg-stage (0), below the menu overlay (30) */
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.12) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  pointer-events: none; /* let the video receive pointer events */
}
.site-header > * {
  pointer-events: auto;
}

/* ---- Logo ---- */
.logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  user-select: none;
  line-height: 0;
}
.logo__img {
  display: block;
  width: 145px;
  height: auto;
  margin-top: 14px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.logo:hover .logo__img {
  opacity: 0.92;
}

/* ---- Header actions (top-right icons) ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── Header language switch (DE / EN) ── */
.header-lang-switch {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.header-lang-switch__btn {
  min-width: 34px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}
.header-lang-switch__btn:hover {
  color: rgba(255, 255, 255, 0.85);
}
.header-lang-switch__btn.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.header-lang-switch__sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  user-select: none;
}

.icon-btn {
  background: transparent;
  border: 0;
  padding: 4px;
  color: #fff;
  line-height: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0.95;
}
.icon-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ── Sound toggle button ── */
.sound-btn .ico--sound-on  { display: none; }
.sound-btn .ico--sound-off { display: block; }
.sound-btn[aria-pressed="true"] .ico--sound-on  { display: block; }
.sound-btn[aria-pressed="true"] .ico--sound-off { display: none; }
.sound-btn[aria-pressed="true"] { color: rgba(255,255,255,0.9); }
/* Subtle pulse on the icon when music is playing */
@keyframes soundPulse {
  0%, 100% { opacity: 0.9; }
  50%       { opacity: 0.5; }
}
.sound-btn[aria-pressed="true"] .ico--sound-on {
  animation: soundPulse 2.5s ease-in-out infinite;
}

/* Generic inline-SVG icon class used in the header */
.ico {
  width: 30px;
  height: 30px;
  display: block;
}

/* Hamburger ↔ X swap, kept in same slot */
.icon-swap {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.icon-swap .icon-bars,
.icon-swap .icon-close {
  position: absolute;
  inset: 0;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.icon-swap .icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.9);
}
body.menu-open .icon-swap .icon-bars {
  opacity: 0;
  transform: rotate(90deg) scale(0.9);
}
body.menu-open .icon-swap .icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* ============================================================
   MENU OVERLAY (split blur, vertical cut at 50%)
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 50% 50%;
  pointer-events: none;
  visibility: hidden;
}
.menu-overlay__left,
.menu-overlay__right {
  opacity: 0;
  transition: opacity 0.55s ease, backdrop-filter 0.55s ease,
    -webkit-backdrop-filter 0.55s ease;
}

/* Left half: strong dark + blur. The gradient fades on the right edge
   so the cut into the clear-video half looks soft and cinematic
   (matches the milky/diffused vertical seam on binghatti.com). */
.menu-overlay__left {
  background: linear-gradient(
    to right,
    rgba(6, 6, 8, 0.78) 0%,
    rgba(8, 8, 10, 0.72) 70%,
    rgba(10, 10, 12, 0.55) 100%
  );
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}

/* Right half: almost no scrim — let the video breathe */
.menu-overlay__right {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.04) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Open state */
body.menu-open .menu-overlay {
  visibility: visible;
  pointer-events: auto;
}
body.menu-open .menu-overlay__left {
  opacity: 1;
  -webkit-backdrop-filter: blur(20px) saturate(115%) brightness(0.85);
  backdrop-filter: blur(20px) saturate(115%) brightness(0.85);
}
body.menu-open .menu-overlay__right {
  opacity: 1;
}

/* ---- Navigation ---- */
.menu-nav {
  position: absolute;
  top: 50%;
  /* slightly right of the vertical split */
  left: 50%;
  transform: translate(-105%, -50%);
  text-align: right;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-nav__list {
  list-style: none;
  margin: 0;
  padding: 0 28px 0 0;
  border-right: 0;
}
.menu-nav__list li {
  margin: 0;
  /* Each item starts offset to the right + invisible.
     They individually glide in with a stagger when the menu opens. */
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-nav__link {
  display: inline-block;
  color: var(--ui-soft);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.22em;
  line-height: 34px;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.menu-nav__link:hover {
  color: #fff;
  letter-spacing: 0.26em;
}

/* Reveal navigation when open */
body.menu-open .menu-nav {
  opacity: 1;
  transition-delay: 0.15s;
}
body.menu-open .menu-nav__list li {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger each item slightly so they cascade in from the right */
body.menu-open .menu-nav__list li:nth-child(1) {
  transition-delay: 0.30s;
}
body.menu-open .menu-nav__list li:nth-child(2) {
  transition-delay: 0.38s;
}
body.menu-open .menu-nav__list li:nth-child(3) {
  transition-delay: 0.46s;
}
body.menu-open .menu-nav__list li:nth-child(4) {
  transition-delay: 0.54s;
}
body.menu-open .menu-nav__list li:nth-child(5) {
  transition-delay: 0.62s;
}
body.menu-open .menu-nav__list li:nth-child(6) {
  transition-delay: 0.70s;
}
body.menu-open .menu-nav__list li:nth-child(7) {
  transition-delay: 0.78s;
}
body.menu-open .menu-nav__list li:nth-child(8) {
  transition-delay: 0.86s;
}

/* ============================================================
   BOTTOM-LEFT: a11y button + social icons
   ============================================================ */
.bottom-left {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}
.social svg {
  width: 17px;
  height: 17px;
  display: block;
}
.social:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   BOTTOM-RIGHT: floating contact buttons
   ============================================================ */
.floating-contacts {
  position: fixed;
  right: 16px;
  bottom: 35px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fc-btn {
  width: 46px;
  height: 42px;
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--ui-border-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.fc-btn svg {
  width: 19px;
  height: 19px;
  display: block;
}
.fc-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateX(-1px);
}

/* ============================================================
   SCROLLABLE SECTIONS
   ============================================================ */
main {
  position: relative;
}

/* Hero hosts the background video stage and scrolls naturally
   away when the user scrolls down. */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* ============================================================
   FEATURE SECTIONS (stacked, alternating left/right text layout)
   ============================================================ */
.feature-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #050505;
}

.feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.16);
  transform-origin: center center;
  will-change: transform;
}
.feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  pointer-events: none;
  z-index: 0;
}
/* Slow cinematic Ken-Burns zoom-out when the section enters view */
.feature-section.is-active .feature-bg {
  animation: featureZoomOut 5000ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes featureZoomOut {
  from {
    transform: scale(1.16);
  }
  to {
    transform: scale(1);
  }
}

/* Side-aware scrim: darker on the side where the text sits,
   lighter on the opposite side. */
.feature-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.feature-scrim--right {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* Text block, vertically centered, side aligned.
   Uses left/right offsets directly (no padding hack) so the block sits
   symmetrically the same distance from its respective edge. */
.feature-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  width: min(520px, 80vw);
  z-index: 3;
}
.feature-content--wide {
  max-width: 680px;
  width: min(680px, 84vw);
}
.feature-section--left .feature-content {
  left: 7vw;
  text-align: left;
}
.feature-section--right .feature-content {
  right: 7vw;
  text-align: right;
}

.feature-title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(18px);
}
.feature-sub {
  margin: 18px 0 0 0;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(18px);
}

/* CTA button */
.feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  padding: 13px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 8px 26px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(18px);
  transition: background 0.25s ease, border-color 0.25s ease,
    letter-spacing 0.25s ease;
}
.feature-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.32em;
}

/* Text fade-up when the section becomes active */
.feature-section.is-active .feature-title {
  animation: featureFadeUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) 500ms forwards;
}
.feature-section.is-active .feature-sub {
  animation: featureFadeUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) 850ms forwards;
}
.feature-section.is-active .feature-cta {
  animation: featureFadeUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1200ms
    forwards;
}
@keyframes featureFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   EVENTS PAGE — Featured Events + Recent Highlights
   ============================================================ */
.events-section {
  position: relative;
  width: 100%;
  background: #050505;
  padding: 90px 8vw 80px;
  color: #fff;
}
.events-section + .events-section {
  padding-top: 40px;
}

.events-section__header {
  text-align: center;
  margin: 0 0 36px;
}
.events-section__title {
  display: inline-block;
  margin: 0;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.events-section__title-main {
  color: #fff;
}
.events-section__title-sub {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}
/* Whichever span comes 2nd gets a small left gap */
.events-section__title > span + span {
  margin-left: 8px;
}

/* "View all ..." link aligned bottom-right of a section */
.events-section__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-right: 4px;
  width: 100%;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.view-all-link:hover {
  opacity: 1;
  gap: 12px;
}

/* ----- Featured Event (single hero card, wide cinematic) ----- */
.featured-event {
  width: 100%;
  margin: 0 auto;
}
.featured-event__card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 24 / 9;
  background-color: #111;
  overflow: hidden;
  text-decoration: none;
}
.featured-event__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.featured-event__card:hover .featured-event__image {
  transform: scale(1.035);
}
.featured-event__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}
.featured-event__meta {
  margin-top: 18px;
  padding: 0 4px;
}
.featured-event__name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.featured-event__date {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* ----- Recent Highlights (3-card grid) ----- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.highlight-card {
  display: flex;
  flex-direction: column;
}
.highlight-card__link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #111;
  overflow: hidden;
  text-decoration: none;
}
.highlight-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.highlight-card__link:hover .highlight-card__image {
  transform: scale(1.05);
}
.highlight-card__enquire {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  opacity: 0.95;
  transition: gap 0.25s ease, opacity 0.2s ease;
}
.highlight-card__enquire-caret {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}
.highlight-card__link:hover .highlight-card__enquire {
  gap: 10px;
  opacity: 1;
}
.highlight-card__caption {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ----- News page: horizontal scrollable card rows ----- */
.news-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding: 4px 4px 12px;
  /* hide scrollbar but keep functional */
  scrollbar-width: none;
  /* Use the full section width so cards fill the page edge-to-edge.
     Horizontal scroll still kicks in when content overflows. */
  width: 100%;
}
.news-row::-webkit-scrollbar {
  height: 0;
  width: 0;
  display: none;
}

.news-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.news-card__link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #111;
  overflow: hidden;
  text-decoration: none;
}
.news-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card__link:hover .news-card__image {
  transform: scale(1.05);
}
.news-card__title {
  margin: 16px 2px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: #fff;
  /* clamp to 3 lines max */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-card__title-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
a.news-card__tag {
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
a.news-card__tag:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}
.news-card__tag {
  align-self: flex-start;
  margin: 14px 2px 0;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.news-card__info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 2px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}
.news-card__dot {
  opacity: 0.65;
}
/* Trending variant: tighter spacing, no tag */
.news-card--simple .news-card__title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* ============================================================
   STIG ROCK — homepage sections
   ============================================================ */

/* ---- Universal CTA button (used across the site for primary/ghost actions) ---- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 8px 26px rgba(0, 0, 0, 0.22);
  transition: background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease, letter-spacing 0.25s ease;
}
.cta-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.32em;
}
.cta-btn--primary {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 8px 30px rgba(0, 0, 0, 0.28);
}
.cta-btn--primary:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.cta-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.26);
}
.cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

/* CTA inside content blocks gets generous top spacing to breathe from the text */
.feature-content .cta-btn {
  margin-top: 42px;
}
.feature-cert-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.feature-cert-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.70;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.feature-cert-logos img:last-child {
  height: 30px;
}
.feature-cert-logos img:hover { opacity: 1; }

/* ---- Section eyebrow (small label above titles) ---- */
.feature-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- 1. HERO with content overlay ---- */
.hero-section--with-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SYS-TRUST — merged Das System + Trust Bar ───────────── */
.sys-trust {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.sys-trust__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.26) saturate(0.75);
  pointer-events: none;
  z-index: 0;
}
.sys-trust__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.sys-trust__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.sys-trust__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 100px 0 90px;
}

/* Two-column header */
.sys-trust__header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 64px;
}
.sys-trust__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 18px;
}
.sys-trust__title {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #fff;
}
.sys-trust__text {
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.80;
  color: rgba(255,255,255,0.65);
}

/* Five pillars row */
.sys-trust__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.sys-trust__pillar {
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 28px;
}
.sys-trust__pillar:first-child { padding-left: 0; }
.sys-trust__pillar:last-child  { border-right: none; padding-right: 0; }
.sys-trust__icon {
  display: block;
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.sys-trust__icon svg { width: 100%; height: 100%; }
.sys-trust__pillar-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.sys-trust__pillar-text {
  margin: 0;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.52);
}

@media (max-width: 900px) {
  .sys-trust__header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sys-trust__pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .sys-trust__pillar {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 24px;
  }
  .sys-trust__pillar:last-child { border-bottom: none; }
}
@media (max-width: 500px) {
  .sys-trust__pillars { grid-template-columns: 1fr; }
}

/* ── HERO-TRUST — combined intro + trust bar ─────────────── */
.hero-trust {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}
/* Fallback poster image — behind the video */
.hero-trust__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(0.88);
  z-index: 0;
}
/* Video sits on top of the poster */
.hero-trust__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.88);
  pointer-events: none;
  z-index: 1;
}
.hero-trust__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0.72) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.hero-trust__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Text block centred vertically in upper portion */
.hero-trust__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 6vw 60px;
}
/* Trust strip pinned to bottom */
/* ── Hero inline pillars — horizontal, side by side ── */
.hero-pillars {
  list-style: none;
  margin: 32px 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 32px 26px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-pillar:first-child { padding-left: 0; }
.hero-pillar:last-child { border-right: none; padding-right: 0; }
.hero-pillar + .hero-pillar { padding-left: 32px; }

.hero-pillar__num {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 6px;
}
.hero-pillar__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero-pillar__title {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  line-height: 1.25;
}
.hero-pillar__desc {
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
}

@media (max-width: 600px) {
  .hero-pillars { grid-template-columns: 1fr; border-bottom: none; }
  .hero-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 0; }
  .hero-pillar + .hero-pillar { padding-left: 0; }
  .hero-pillar:last-child { border-bottom: none; }
}

/* ── HERO INTRO — image section below pure-video hero ─────── */
.hero-intro {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-intro__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.40) saturate(0.85);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-intro:hover .hero-intro__bg {
  transform: scale(1.06);
}
.hero-intro__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.50) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-intro__content {
  position: relative;
  z-index: 2;
  width: min(860px, 88vw);
  text-align: center;
  padding: 100px 0 80px;
}
.hero-intro__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 24px;
}
.hero-intro__title {
  margin: 0 0 28px;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.12;
  color: #fff;
}
.hero-intro__sub {
  margin: 0 0 20px;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-intro__text {
  margin: 0 auto 40px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.80;
  color: rgba(255,255,255,0.55);
  max-width: 54ch;
}
.hero-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 600px) {
  .hero-intro { min-height: 70vh; }
  .hero-intro__actions { flex-direction: column; align-items: center; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 6vw 80px;
  pointer-events: none;
}
.hero-overlay__content {
  max-width: 820px;
  text-align: center;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: heroOverlayIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) 400ms forwards;
}
@keyframes heroOverlayIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-overlay__eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.hero-overlay__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.5);
}
.hero-overlay__sub {
  margin: 0 0 24px;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.hero-overlay__text {
  margin: 0 auto 48px;
  max-width: 640px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.hero-overlay__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- 2. TRUST BAR ---- */
.trust-bar {
  position: relative;
  width: 100vw;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  padding: 110px 6vw;
}
.trust-bar__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trust-bar__poster,
.trust-bar__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  filter: brightness(0.7);
}
.trust-bar__video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.trust-bar__video.is-playing {
  opacity: 1;
}
.trust-bar__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%),
    radial-gradient(80% 80% at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.trust-bar__list {
  position: relative;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.trust-bar__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 22px;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Thin vertical divider between items */
.trust-bar__item + .trust-bar__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.trust-bar.is-active .trust-bar__item {
  opacity: 1;
  transform: translateY(0);
}
.trust-bar.is-active .trust-bar__item:nth-child(1) { transition-delay: 100ms; }
.trust-bar.is-active .trust-bar__item:nth-child(2) { transition-delay: 240ms; }
.trust-bar.is-active .trust-bar__item:nth-child(3) { transition-delay: 380ms; }
.trust-bar.is-active .trust-bar__item:nth-child(4) { transition-delay: 520ms; }
.trust-bar.is-active .trust-bar__item:nth-child(5) { transition-delay: 660ms; }

/* Premium icon orb */
.trust-bar__icon-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  flex: 0 0 auto;
  margin-bottom: 20px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.trust-bar__item:hover .trust-bar__icon-orb {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.trust-bar__icon-orb svg {
  width: 24px;
  height: 24px;
}
.trust-bar__title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.45;
  color: #fff;
}

/* ---- VIDEO REVIEWS ---- */
.video-reviews {
  background: #050505;
  padding: 120px 0 0;
  overflow: hidden;
}
.video-reviews__inner {
  max-width: 100%;
}
.video-reviews__head {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 6vw;
}
.video-reviews__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin: 0 0 18px;
}
.video-reviews__title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

/* Full-bleed grid — cards stretch edge to edge */
.video-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* ── Each card ── */
.video-review-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
/* Hover: slight brighten */
.video-review-card:hover .video-review-card__media { filter: brightness(1.08); }

/* ── Video wrapper — portrait-ish so it feels big & cinematic ── */
.video-review-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #000;
  overflow: hidden;
  transition: filter 0.4s ease;
}
.video-review-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient at bottom so quote reads cleanly */
.video-review-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.88) 100%
  );
  pointer-events: none;
}

/* ── Play button ── */
.video-review-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s, opacity 0.25s;
}
.video-review-card__play svg {
  width: 28px; height: 28px;
  margin-left: 4px; /* optical centre for triangle */
  filter: none;
  transition: transform 0.2s;
}
.video-review-card:hover .video-review-card__play {
  background: rgba(255,255,255,0.18);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-review-card__media.is-playing .video-review-card__play {
  opacity: 0;
  pointer-events: none;
}

/* ── Quote overlaid at bottom of video ── */
.video-review-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 30px 32px;
}
.video-review-card__mark {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  font-family: Georgia, serif;
  margin-bottom: 4px;
  user-select: none;
}
.video-review-card__quote {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 14px;
  font-style: italic;
  font-weight: 300;
}
.video-review-card__rule {
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}
.video-review-card__name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin: 0;
}

/* Vertical dividers between cards */
.video-review-card + .video-review-card {
  border-left: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 900px) {
  .video-reviews__grid { grid-template-columns: 1fr; }
  .video-review-card + .video-review-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .video-review-card__media { aspect-ratio: 16/9; }
  .video-reviews { padding: 80px 0 0; }
}

/* ============================================================
   LOGO ASSEMBLY SECTION
   ============================================================ */
.logo-assemble {
  position: relative;
  padding: 110px 6vw 120px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.logo-assemble__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.logo-assemble__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}
.logo-assemble__inner {
  position: relative;
  z-index: 2;
}
.logo-assemble__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Stacked logo layers ── */
.logo-assemble__icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  justify-self: center;
}
.logo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform, opacity;
}

/* Default hidden state — each from its own direction */
.logo-layer--top    { transform: translateY(-60px); opacity: 0; }
.logo-layer--left   { transform: translateX(-60px); opacity: 0; }
.logo-layer--bottom { transform: translateY(60px);  opacity: 0; }
.logo-layer--right  { transform: translateX(60px);  opacity: 0; }

/* Transition */
.logo-layer {
  transition:
    transform 0.90s cubic-bezier(0.22,1,0.36,1),
    opacity   0.90s cubic-bezier(0.22,1,0.36,1);
}

/* Stagger delays */
.logo-assemble.is-visible .logo-layer--top    { transform: translateY(0); opacity: 1; transition-delay: 0.00s; }
.logo-assemble.is-visible .logo-layer--left   { transform: translateX(0); opacity: 1; transition-delay: 0.12s; }
.logo-assemble.is-visible .logo-layer--bottom { transform: translateY(0); opacity: 1; transition-delay: 0.24s; }
.logo-assemble.is-visible .logo-layer--right  { transform: translateX(0); opacity: 1; transition-delay: 0.36s; }

/* ── Text block ── */
.logo-assemble__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.80s cubic-bezier(0.22,1,0.36,1) 0.55s,
              transform 0.80s cubic-bezier(0.22,1,0.36,1) 0.55s;
}
.logo-assemble.is-visible .logo-assemble__text {
  opacity: 1;
  transform: translateY(0);
}
.logo-assemble__text {
  --la-accent: #C9A660;
  transition: --la-accent 0.4s;
}
.logo-assemble__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--la-accent, rgba(255,255,255,0.30));
  margin: 0;
  transition: color 0.35s ease, opacity 0.25s ease;
}
.logo-assemble__title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  transition: opacity 0.25s ease;
}
.logo-assemble__body {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 420px;
  transition: opacity 0.25s ease;
}
.logo-assemble__text .cta-btn {
  transition: border-color 0.35s ease, color 0.35s ease, opacity 0.25s ease,
              box-shadow 0.35s ease, background 0.35s ease;
}
/* Accent bar left of the eyebrow */
.logo-assemble__eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--la-accent, #C9A660);
  vertical-align: middle;
  margin-right: 10px;
  transition: background 0.35s ease, width 0.35s ease;
}
/* Colour the CTA border with the current accent */
.logo-assemble__text .cta-btn--ghost {
  border-color: var(--la-accent, #C9A660);
  color: var(--la-accent, #C9A660);
}
.logo-assemble__text .cta-btn--ghost:hover {
  background: var(--la-accent, #C9A660);
  color: #050505;
}
@media (max-width: 800px) {
  .logo-assemble__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .logo-assemble__icon { max-width: 200px; }
  .logo-assemble__body { max-width: 100%; }
}

/* ── Logo layer hover zones ── */
/* ── Per-brand pulse animations ── */

/* Gold — STIG Group */
@keyframes logoPulseGold {
  0%,100% { filter: sepia(1) saturate(12) hue-rotate(0deg) brightness(1.25)
                    drop-shadow(0 0 16px rgba(201,166,60,0.90))
                    drop-shadow(0 0 48px rgba(201,166,60,0.55)); }
  50%     { filter: sepia(1) saturate(16) hue-rotate(4deg) brightness(1.55)
                    drop-shadow(0 0 30px rgba(230,195,80,1.0))
                    drop-shadow(0 0 80px rgba(201,166,60,0.65)); }
}

/* Blue — STIG International */
@keyframes logoPulseBlue {
  0%,100% { filter: sepia(1) saturate(18) hue-rotate(195deg) brightness(1.20)
                    drop-shadow(0 0 18px rgba(30,100,220,0.95))
                    drop-shadow(0 0 52px rgba(30,100,220,0.60)); }
  50%     { filter: sepia(1) saturate(22) hue-rotate(200deg) brightness(1.45)
                    drop-shadow(0 0 34px rgba(60,140,255,1.0))
                    drop-shadow(0 0 90px rgba(30,100,220,0.70)); }
}

/* Copper — Ethic Mine */
@keyframes logoPulseCopper {
  0%,100% { filter: sepia(1) saturate(10) hue-rotate(-18deg) brightness(1.10)
                    drop-shadow(0 0 16px rgba(190,100,40,0.90))
                    drop-shadow(0 0 48px rgba(190,100,40,0.55)); }
  50%     { filter: sepia(1) saturate(14) hue-rotate(-14deg) brightness(1.35)
                    drop-shadow(0 0 30px rgba(220,130,60,1.0))
                    drop-shadow(0 0 80px rgba(190,100,40,0.65)); }
}

/* Platinum — STIG Rock */
@keyframes logoPulsePlatinum {
  0%,100% { filter: sepia(1) saturate(3) hue-rotate(178deg) brightness(1.55)
                    drop-shadow(0 0 16px rgba(180,205,220,0.90))
                    drop-shadow(0 0 48px rgba(180,205,220,0.50)); }
  50%     { filter: sepia(1) saturate(4) hue-rotate(182deg) brightness(1.90)
                    drop-shadow(0 0 30px rgba(210,230,242,1.0))
                    drop-shadow(0 0 80px rgba(180,205,220,0.62)); }
}

.logo-layer {
  transition:
    transform 0.90s cubic-bezier(0.22,1,0.36,1),
    opacity   0.90s cubic-bezier(0.22,1,0.36,1),
    filter    0.40s cubic-bezier(0.22,1,0.36,1);
}

/* Dim all layers when any zone is hovered — JS adds .has-hover to the icon */
.logo-assemble__icon.has-hover .logo-layer {
  opacity: 0.18;
  filter: brightness(0.5);
  transition: opacity 0.30s ease, filter 0.30s ease,
              transform 0.90s cubic-bezier(0.22,1,0.36,1);
}

/* The lit layer breaks out of the dimmed state */
.logo-layer.is-lit {
  opacity: 1 !important;
  transform: scale(1.06) !important;
  transition: transform 0.40s cubic-bezier(0.22,1,0.36,1);
}
.logo-layer.is-lit[data-lit-brand="stig-group"]        { animation: logoPulseGold     2.4s ease-in-out infinite; }
.logo-layer.is-lit[data-lit-brand="stig-international"]{ animation: logoPulseBlue     2.4s ease-in-out infinite; }
.logo-layer.is-lit[data-lit-brand="ethic-mine"]        { animation: logoPulseCopper   2.4s ease-in-out infinite; }
.logo-layer.is-lit[data-lit-brand="stig-rock"]         { animation: logoPulsePlatinum 2.4s ease-in-out infinite; }

/* Each zone is absolutely positioned over its bar's visual bounding box.
   Percentages derived from the actual image content area (1030×1030 px source):
   Top bar:   x 10.6%–89.5%  y 0%–46.6%
   Left bar:  x 0%–46.6%     y 10.5%–89.5%
   Bottom bar:x 10.6%–89.5%  y 53.4%–100%
   Right bar: x 53.4%–100%   y 10.5%–89.5% */
.logo-zone {
  position: absolute;
  cursor: crosshair;
  z-index: 10;
}
.logo-zone--top    { left: 10.6%; right: 10.5%; top: 0%;    bottom: 53.4%; }
.logo-zone--left   { left: 0%;    right: 53.4%; top: 10.5%; bottom: 10.5%; }
.logo-zone--bottom { left: 10.6%; right: 10.5%; top: 53.4%; bottom: 0%;    }
.logo-zone--right  { left: 53.4%; right: 0%;    top: 10.5%; bottom: 10.5%; }

/* Label — appears on hover, floats near the center of each bar */
.logo-zone__label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.30s ease, transform 0.30s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
  padding: 10px 16px 9px;
  background: rgba(10,8,6,0.72);
  border: 1px solid rgba(201,166,96,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Center of each bar */
.logo-zone--top    .logo-zone__label { bottom: 12%; left: 50%; transform: translateX(-50%) translateY(6px); }
.logo-zone--left   .logo-zone__label { right:  12%; top:  50%; transform: translateY(calc(-50% + 6px));      }
.logo-zone--bottom .logo-zone__label { top:    12%; left: 50%; transform: translateX(-50%) translateY(-6px); }
.logo-zone--right  .logo-zone__label { left:   12%; top:  50%; transform: translateY(calc(-50% + 6px));      }

.logo-zone:hover .logo-zone__label { opacity: 1; }
.logo-zone--top:hover    .logo-zone__label { transform: translateX(-50%) translateY(0); }
.logo-zone--left:hover   .logo-zone__label { transform: translateY(-50%); }
.logo-zone--bottom:hover .logo-zone__label { transform: translateX(-50%) translateY(0); }
.logo-zone--right:hover  .logo-zone__label { transform: translateY(-50%); }

.logo-zone__name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--zone-color, #c9a660);
  text-shadow: 0 0 14px var(--zone-color, rgba(201,166,96,0.7));
}
/* Each zone uses its own brand colour for the label */
.logo-zone--top    { --zone-color: #C9A660; }
.logo-zone--left   { --zone-color: #A8B8C4; }
.logo-zone--bottom { --zone-color: #B07540; }
.logo-zone--right  { --zone-color: #2264DC; }

/* Each zone label border also picks up the brand colour */
.logo-zone__label {
  border-color: color-mix(in srgb, var(--zone-color, #C9A660) 50%, transparent);
}
.logo-zone__sub {
  display: none;
}

/* ══════════════════════════════════════════════════════════
   THE GROUP PAGE — DIAMOND ECOSYSTEM + CONNECTION + STATEMENT
   ══════════════════════════════════════════════════════════ */

/* ── Fade-in helper used for eco-section ── */
.eco-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.80s cubic-bezier(0.22,1,0.36,1), transform 0.80s cubic-bezier(0.22,1,0.36,1);
}
.eco-fade.eco-visible {
  opacity: 1;
  transform: none;
}

/* ── Section wrapper ── */
.eco-section {
  padding: 110px 6vw 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Header block (headline + lead) ── */
.eco-section__header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 88px;
  align-items: start;
}
.eco-eyebrow {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 0 0 20px;
}
.eco-headline {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}
.eco-lead {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.84;
  color: rgba(255,255,255,0.48);
  margin: 0;
  padding-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   ECO LAYOUT — 3-col grid: left-labels | diagram | right-labels
   ══════════════════════════════════════════════════════════ */
.eco-layout {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 200px 460px 200px;
  grid-template-rows: 1fr 1fr;
  gap: 0 52px;
  align-items: stretch;
  justify-content: center;
}
/* label positions */
.eco-label--tl { grid-column: 1; grid-row: 1; display:flex; flex-direction:column; justify-content:flex-end; padding-bottom:36px; text-align:right; align-items:flex-end; }
.eco-label--tr { grid-column: 3; grid-row: 1; display:flex; flex-direction:column; justify-content:flex-end; padding-bottom:36px; }
.eco-label--bl { grid-column: 1; grid-row: 2; display:flex; flex-direction:column; justify-content:flex-start; padding-top:36px; text-align:right; align-items:flex-end; }
.eco-label--br { grid-column: 3; grid-row: 2; display:flex; flex-direction:column; justify-content:flex-start; padding-top:36px; }
/* diagram spans both rows, centered */
.eco-diagram { grid-column: 2; grid-row: 1 / 3; display:flex; align-items:center; justify-content:center; }

/* ── Corner label styling ── */
.eco-label__icon {
  width: 28px;
  height: 28px;
  color: rgba(201,166,96,0.75);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.eco-label__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin: 0 0 10px;
}
.eco-label__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.70;
  color: rgba(255,255,255,0.48);
  margin: 0;
  max-width: 195px;
}
/* thin connector line: left labels point RIGHT, right labels point LEFT */
.eco-label--tl,
.eco-label--bl { position: relative; }
.eco-label--tl::after,
.eco-label--bl::after {
  content: '';
  position: absolute;
  right: -28px;
  top: calc(50% - 0.5px);
  width: 20px;
  height: 1px;
  background: linear-gradient(to right, rgba(201,166,96,0.4), transparent);
}
.eco-label--tr,
.eco-label--br { position: relative; }
.eco-label--tr::before,
.eco-label--br::before {
  content: '';
  position: absolute;
  left: -28px;
  top: calc(50% - 0.5px);
  width: 20px;
  height: 1px;
  background: linear-gradient(to left, rgba(201,166,96,0.4), transparent);
}

/* ══════════════════════════════════════════════════════════
   ECO DIAGRAM — 4 clipboard.svg parts at compass positions
   SVG natural dimensions: 480 × 814 (portrait, ratio ≈ 0.59)
   ══════════════════════════════════════════════════════════ */

.eco-diagram {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  width: 460px;
  height: 460px;
  overflow: visible;
}

/* ── Shape wrapper: 254×254 square, positioned at each compass point ──
   drop-shadow on the wrapper follows the masked child's silhouette     */
.eco-shape {
  position: absolute;
  width: 254px;
  height: 254px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  filter:
    drop-shadow(0 0 3px var(--ed-color))
    drop-shadow(0 0 28px var(--ed-glow));
  transform: scale(1) translateY(0);
  transition: filter 0.40s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.eco-shape:hover {
  filter:
    drop-shadow(0 0 4px var(--ed-color))
    drop-shadow(0 0 52px var(--ed-glow))
    drop-shadow(0 0 88px var(--ed-glow));
  transform: scale(1.10) translateY(-6px);
  z-index: 10;
}

/* Compass positions (460×460 container, 254×254 wrapper, center each at compass point)
   R = 80px from container center (230,230), half-wrapper=127  → cluster spacing
   TOP    (230, 150) → top=23,  left=103
   RIGHT  (310, 230) → top=103, left=183
   BOTTOM (230, 310) → top=183, left=103
   LEFT   (150, 230) → top=103, left=23  */
.eco-shape--top    { top:  23px; left: 103px; }
.eco-shape--right  { top: 103px; left: 183px; }
.eco-shape--bottom { top: 183px; left: 103px; }
.eco-shape--left   { top: 103px; left:  23px; }

/* ── Masked face: SVG silhouette with same gradient as old diamond boxes ── */
.eco-shape__face {
  width: 150px;
  height: 254px;
  flex-shrink: 0;
  -webkit-mask-image: url('/assets/images/logopart.svg');
          mask-image: url('/assets/images/logopart.svg');
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background:
    radial-gradient(ellipse at 42% 28%, rgba(255,255,255,0.42) 0%, transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 42%),
    linear-gradient(225deg, rgba(255,255,255,0.10) 0%, transparent 42%),
    linear-gradient(160deg, var(--ed-bg, rgba(255,255,255,0.10)) 0%, rgba(3,3,6,0.50) 100%);
  transform: rotate(var(--ed-rot, 0deg));
  transform-origin: center center;
  transition: background 0.40s ease;
}
.eco-shape:hover .eco-shape__face {
  background:
    radial-gradient(ellipse at 42% 28%, rgba(255,255,255,0.58) 0%, transparent 52%),
    linear-gradient(135deg, rgba(255,255,255,0.26) 0%, transparent 42%),
    linear-gradient(225deg, rgba(255,255,255,0.14) 0%, transparent 42%),
    linear-gradient(160deg, var(--ed-bg, rgba(255,255,255,0.12)) 0%, rgba(3,3,6,0.35) 100%);
}

/* ── Label text — hidden by default, fade in on hover ── */
.eco-shape__name,
.eco-shape__sub {
  margin: 0;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.30s ease, transform 0.30s ease;
  pointer-events: none;
}
.eco-shape:hover .eco-shape__name,
.eco-shape:hover .eco-shape__sub {
  opacity: 1;
  transform: translateY(0);
}
.eco-shape__name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}
.eco-shape__sub {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.10em;
  color: var(--ed-color);
  transition-delay: 0.05s; /* subtitle fades in slightly after name */
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  .eco-layout  { grid-template-columns: 140px 380px 140px; gap: 0 24px; }
  .eco-diagram { width: 380px; height: 380px; }
  /* Scale shape wrappers proportionally (460→380: ×0.826), R=80→66 */
  .eco-shape          { width: 210px; height: 210px; }
  .eco-shape__face    { width: 124px; height: 210px; }
  .eco-shape--top     { top:  19px; left:  85px; }
  .eco-shape--right   { top:  85px; left: 151px; }
  .eco-shape--bottom  { top: 151px; left:  85px; }
  .eco-shape--left    { top:  85px; left:  19px; }
}
@media (max-width: 860px) {
  .eco-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .eco-diagram {
    grid-column: 1;
    grid-row: auto;
    width: min(340px, 90vw);
    margin: 0 auto;
  }
  .eco-label--tl,
  .eco-label--tr,
  .eco-label--bl,
  .eco-label--br {
    grid-column: 1;
    grid-row: auto;
    text-align: center;
    align-items: center;
    padding: 16px 0;
  }
  .eco-label--tl::after, .eco-label--bl::after,
  .eco-label--tr::before, .eco-label--br::before { display: none; }
  .eco-section__header { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   ECO FEATURE SECTIONS — one per company, clockwise.
   The full 4-diamond cluster stays visible but dimmed;
   the active diamond glides out + glows on scroll into view.
   ══════════════════════════════════════════════════════════ */
.eco-feat {
  padding: 84px 6vw;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.eco-feat__grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eco-feat__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.eco-feat__text { max-width: 460px; }

/* eco-feat uses .eco-fade only as the in-view trigger (for the diamond
   slide-out); neutralise its block fade so we can animate parts on their own. */
.eco-feat.eco-fade { opacity: 1; transform: none; }

/* Diamond visual fades up */
.eco-feat__visual {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.eco-feat.eco-visible .eco-feat__visual { opacity: 1; transform: none; }

/* Alternating (zig-zag) layout: text and logo swap sides per section */
.eco-feat--rev .eco-feat__visual { order: 2; }
.eco-feat--rev .eco-feat__text   { order: 1; }

/* Text reveals horizontally from its side, with a stagger.
   Default = text on the right → glides in from the right.
   .eco-feat--rev = text on the left → glides in from the left. */
.eco-feat__text > *,
.eco-feat__row .content-row__title-col > *,
.eco-feat__row .content-row__text-col > p {
  opacity: 0;
  transform: translateX(clamp(140px, 22vw, 320px));
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
}
.eco-feat--rev .eco-feat__text > *,
.eco-feat--rev .eco-feat__row .content-row__title-col > *,
.eco-feat--rev .eco-feat__row .content-row__text-col > p {
  transform: translateX(calc(-1 * clamp(140px, 22vw, 320px)));
}
.eco-feat.eco-visible .eco-feat__text > *,
.eco-feat.eco-visible .eco-feat__row .content-row__title-col > *,
.eco-feat.eco-visible .eco-feat__row .content-row__text-col > p {
  opacity: 1;
  transform: none;
}
.eco-feat.eco-visible .eco-feat__eyebrow,
.eco-feat.eco-visible .eco-feat__row .content-row__eyebrow { transition-delay: 0.55s; }
.eco-feat.eco-visible .eco-feat__title,
.eco-feat.eco-visible .eco-feat__row .content-row__title { transition-delay: 0.72s; }
.eco-feat.eco-visible .eco-feat__body,
.eco-feat.eco-visible .eco-feat__row .content-row__text-col > p:nth-of-type(1) { transition-delay: 0.89s; }
.eco-feat.eco-visible .eco-feat__row .content-row__text-col > p:nth-of-type(2) { transition-delay: 1.05s; }
.eco-feat__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--ed-color, #C9A660);
}
.eco-feat__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 30px;
}
.eco-feat__body {
  font-size: clamp(15px, 1.05vw, 16.5px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ── Image-based diamond stage: a base JPG (diamond with one wedge
   missing) plus a PNG piece that slides into its slot on scroll-in. ── */
.db-stage {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1234 / 1251;
  margin: 0 auto;
}
.db-base,
.db-piece {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.db-piece {
  opacity: 0;
  transition:
    opacity 1.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
/* Starting offsets per slide direction */
.db-piece--left   { transform: translateX(-75%); }
.db-piece--right  { transform: translateX(75%); }
.db-piece--bottom { transform: translateY(75%); }
.db-piece--top    { transform: translateY(-75%); }
/* Dock into place once the section is visible — delayed so the empty
   diamond is clearly seen first, then the piece glides in. */
.eco-feat.eco-visible .db-piece {
  opacity: 1;
  transform: none;
  transition-delay: 0.85s;
}

@media (max-width: 860px) {
  .eco-feat { padding: 58px 6vw; }
  .eco-feat__grid { grid-template-columns: 1fr; gap: 26px; justify-items: center; }
  .eco-feat__text { max-width: 100%; text-align: center; margin: 0 auto; }
  .eco-feat__visual {
    order: -1;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .db-stage { width: min(340px, 80vw); }
}

/* ── Connection section ── */
.connection-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 110px 6vw;
}
.connection-section__inner {
  max-width: 1340px;
  margin: 0 auto;
}
.connection-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  margin-bottom: 80px;
  align-items: start;
}
.connection-section__header .ecosystem-section__eyebrow { grid-column: 1 / -1; }
.connection-section__headline {
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}
.connection-section__text {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.80;
  color: rgba(255,255,255,0.55);
  margin: 0;
  padding-top: 6px;
}

/* ── Feature quad ── */
.feature-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.feature-quad__item {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.feature-quad__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A660 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-quad__item:hover::before { opacity: 1; }
.feature-quad__num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.feature-quad__title {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.feature-quad__text {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.50);
  margin: 0;
}

/* ── Final statement ── */
.final-statement {
  padding: 140px 6vw;
  text-align: center;
}
.final-statement__inner {
  max-width: 860px;
  margin: 0 auto;
}
.final-statement__headline {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 22px 0 32px;
}
.final-statement__text {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.80;
  color: rgba(255,255,255,0.50);
  margin: 0 0 48px;
}
.final-statement__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .ecosystem-section__intro,
  .connection-section__header { grid-template-columns: 1fr; gap: 28px; }
  .company-grid               { grid-template-columns: 1fr; }
  .feature-quad               { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .feature-quad { grid-template-columns: 1fr; }
  .ecosystem-section,
  .connection-section { padding: 70px 5vw; }
  .company-card { padding: 36px 28px 36px 32px; }
}

/* ---- 7. DIAMOND EVENTS (video bg + cards) ---- */
.stig-rock-events {
  position: relative;
  width: 100vw;
  overflow: hidden;
  padding: 100px 6vw;
  background: #050505;
}
.stig-rock-events__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stig-rock-events__video,
.stig-rock-events__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.stig-rock-events__video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.stig-rock-events__video.is-playing {
  opacity: 1;
}
.stig-rock-events__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(70% 70% at 50% 50%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.stig-rock-events__content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.stig-rock-events__head {
  margin-bottom: 50px;
}
.stig-rock-events__title {
  margin: 0 0 16px;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}
.stig-rock-events__text {
  margin: 0 auto;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.stig-rock-events__grid {
  margin-top: 20px;
}
.stig-rock-events__actions {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* ---- CONTENT SECTION (text-heavy blocks on a solid dark bg) ---- */
.content-section {
  position: relative;
  width: 100%;
  background: #050505;
  padding: 110px 6vw 100px;
  color: #fff;
}
/* Subtle accent above the section title */
.content-section + .content-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.content-section__inner {
  max-width: 820px;
  margin: 0 auto;
}
.content-section__inner--wide {
  max-width: 980px;
}
.content-section--center .content-section__inner {
  text-align: center;
}
.content-section__head {
  margin-bottom: 36px;
}
.content-section__title {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
}
.content-section__body p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}
.content-section__body p:last-child {
  margin-bottom: 0;
}
.content-section--center .content-section__body p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}
.content-section .cta-btn {
  margin-top: 42px;
}

/* ---- STEPS (numbered list, used by "Der Ablauf") ---- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}
/* When the steps live inside an .article__body, give them more vertical
   breathing room and a clear separation from the surrounding prose. */
.article__body .steps,
.steps--in-article {
  margin: 12px 0 32px;
}
.article__body .steps .step,
.steps--in-article .step {
  padding: 24px 0;
}

/* Centered variant: number above title above text (used in centered articles) */
.article__body--center .steps {
  text-align: center;
}
.article__body--center .step {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.article__body--center .step__number {
  min-width: 0;
  font-size: 36px;
}
.article__body--center .step__title,
.article__body--center .step__text {
  text-align: center;
}
.article__body--center .step__text {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.step {
  display: flex;
  gap: 40px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.step:first-child {
  padding-top: 12px;
}
.step:last-child {
  border-bottom: 0;
  padding-bottom: 12px;
}
.step__number {
  flex: 0 0 auto;
  min-width: 78px;
  font-family: inherit;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}
.step__body {
  flex: 1 1 0;
  min-width: 0;
}
.step__title {
  margin: 0 0 10px;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.step__text {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   FAQ ACCORDION (used on Stig Rock homepage)
   ============================================================ */
.faq-section {
  position: relative;
  width: 100%;
  background: #050505;
  padding: 110px 6vw 120px;
  color: #fff;
}
.faq-section__header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-section__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.faq-section__title-main {
  color: #fff;
  font-weight: 600;
}
.faq-section__title-sub {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.faq-list {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Summary = clickable question row */
.faq-item__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  transition: color 0.2s ease;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question:hover {
  color: rgba(255, 255, 255, 0.8);
}
.faq-item__question:focus-visible {
  outline: none;
  color: #fff;
}

.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}
.faq-item__icon svg {
  width: 26px;
  height: 26px;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  color: #fff;
}

.faq-item__answer {
  padding: 0 10px 32px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 1000px;
}
.faq-item__answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 6vw 80px;
  }
  .faq-section__header {
    margin-bottom: 36px;
  }
  .faq-item__question {
    padding: 22px 4px;
    font-size: 15px;
    gap: 18px;
  }
  .faq-item__icon {
    width: 24px;
    height: 24px;
  }
  .faq-item__icon svg {
    width: 20px;
    height: 20px;
  }
  .faq-item__answer {
    font-size: 14px;
    padding: 0 4px 24px;
  }
}

/* ---- 8. CTA BAND (Kontakt) ---- */
.cta-band {
  position: relative;
  width: 100vw;
  overflow: hidden;
  padding: 110px 6vw 120px;
  background: #050505;
  text-align: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.68);
}
.cta-band__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
  pointer-events: none;
  z-index: 1;
}
.cta-band__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
}
.cta-band__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band__title {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
}
.cta-band__text {
  margin: 0 auto 44px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.cta-band__actions {
  display: inline-flex;
  justify-content: center;
}
.cta-band__actions--multi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Cinematic CTA variant (ueber-uns.php) */
.cta-band--cinematic {
  padding: 130px 6vw 140px;
}
.cta-band--cinematic .cta-band__image {
  animation: ctaKenBurns 20s ease-out forwards;
  filter: brightness(0.52) saturate(1.08);
  transform-origin: center center;
}
@keyframes ctaKenBurns {
  from { transform: scale(1.14); }
  to   { transform: scale(1.02); }
}
.cta-band--cinematic .cta-band__video {
  filter: brightness(0.58) saturate(1.1);
}
.cta-band--cinematic .cta-band__scrim {
  background:
    radial-gradient(ellipse 72% 82% at 50% 42%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(201, 166, 96, 0.10) 0%, transparent 45%);
}
.cta-band--cinematic .cta-band__content::before {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, rgba(201, 166, 96, 0.75), transparent);
}
.cta-band--cinematic .cta-band__title {
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.04em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}
.cta-band--cinematic .feature-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-overlay {
    padding: 100px 6vw 60px;
  }
  .hero-overlay__title {
    font-size: clamp(26px, 7vw, 34px);
  }
  .hero-overlay__sub {
    font-size: 15px;
  }
  .hero-overlay__text {
    font-size: 14px;
  }
  .hero-overlay__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
    letter-spacing: 0.22em;
  }

  .trust-bar {
    padding: 80px 6vw;
    min-height: 520px;
  }
  .trust-bar__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
    column-gap: 0;
    max-width: 480px;
  }
  /* Hide vertical dividers on mobile (2-col layout doesn't fit them) */
  .trust-bar__item + .trust-bar__item::before {
    display: none;
  }
  /* Center the last item if odd count (5 = 2/2/1) */
  .trust-bar__item:nth-child(5) {
    grid-column: 1 / -1;
  }
  .trust-bar__item {
    padding: 0 8px;
  }
  .trust-bar__icon-orb {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
  .trust-bar__icon-orb svg {
    width: 20px;
    height: 20px;
  }
  .trust-bar__title {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .stig-rock-events {
    padding: 70px 6vw;
  }
  .stig-rock-events__head {
    margin-bottom: 32px;
  }

  .cta-band {
    padding: 80px 6vw 90px;
  }
  .cta-band__actions--multi .cta-btn {
    width: 100%;
  }

  /* Content section + steps on mobile */
  .content-section {
    padding: 70px 6vw 60px;
  }
  .content-section__head {
    margin-bottom: 24px;
  }
  .step {
    flex-direction: column;
    gap: 8px;
    padding: 22px 0;
  }
  .step__number {
    min-width: 0;
    font-size: 28px;
  }
}

/* ============================================================
   PARTNERS SECTION (full-bleed video bg + two centered logos)
   ============================================================ */
.partners-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 6vw;
}

.partners-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.partners-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.88);
  z-index: 0;
}
.partners-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  z-index: 1;
  /* Hide the video while it can't play (Safari without autoplay)
     so the poster behind it remains visible. */
  opacity: 0;
  transition: opacity 0.5s ease;
}
.partners-video.is-playing {
  opacity: 1;
}
.partners-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      80% 80% at 50% 50%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.55) 100%
    );
}

.partners-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
  flex-wrap: wrap;
}

.partners-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  max-width: 40vw;
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}
.partners-logo--sm {
  width: 220px;
  max-width: 34vw;
}
.partners-logo svg,
.partners-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.5));
}

.partners-section.is-active .partners-logo {
  opacity: 1;
  transform: translateY(0);
}
.partners-section.is-active .partners-logo:nth-child(1) {
  transition-delay: 200ms;
}
.partners-section.is-active .partners-logo:nth-child(2) {
  transition-delay: 450ms;
}
.partners-section.is-active .partners-logo:nth-child(3) {
  transition-delay: 700ms;
}
.partners-section.is-active .partners-logo:nth-child(4) {
  transition-delay: 950ms;
}

@media (max-width: 768px) {
  .partners-section {
    min-height: 80vh;
    padding: 60px 6vw;
  }
  .partners-logos {
    gap: 36px;
    flex-direction: column;
  }
  .partners-logo {
    width: 220px;
    max-width: 70vw;
  }
}

/* Reduced motion — show logos statically */
@media (prefers-reduced-motion: reduce) {
  .partners-logo {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   NEWSLETTER (cinematic mid-page band with bg image + zoom)
   ============================================================ */
/* Language toggle for newsletter */
.nl-lang-toggle {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  justify-content: center;
}
.nl-lang-toggle__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.50);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  font-family: inherit;
}
.nl-lang-toggle__btn:hover {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.80);
}
.nl-lang-toggle__btn.is-active {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nl-lang-toggle__flag {
  font-size: 16px;
  line-height: 1;
}

/* ── Newsletter: mirrored split layout (form LEFT, title RIGHT) ── */
.newsletter-section {
  position: relative;
  width: 100vw;
  height: 110vh;
  min-height: 700px;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
}
.newsletter-section.is-active .newsletter-bg {
  animation: newsletterZoom 2400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes newsletterZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.newsletter-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 80% at 50% 60%,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.40) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

/* ── LEFT: form panel — semi-transparent, slides in from left ── */
.newsletter-left {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  padding: 140px 6vw 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 4;
  background: rgba(0,0,0,0.32);
  transform: translateX(-100%);
  will-change: transform;
}
.newsletter-left .contact-form {
  max-width: 400px;
  width: 100%;
}
.newsletter-left .contact-form__submit {
  width: 100%;
  margin-top: 14px;
}
.newsletter-eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* ── RIGHT: title panel — dark slab, slides in from right ── */
.newsletter-right {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  padding: 6vh 6vw 6vh 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 4;
  background: rgba(8,8,10,0.96);
  transform: translateX(100%);
  will-change: transform;
}
.newsletter-right__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.newsletter-right__title span {
  display: block;
}
.newsletter-right__title span:nth-child(2),
.newsletter-right__title span:nth-child(3) {
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.newsletter-right__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.60);
  max-width: 340px;
}

/* ── Panels animate in when is-active ── */
.newsletter-section.is-active .newsletter-left {
  animation: nlPanelInLeft 1000ms cubic-bezier(0.7,0,0.2,1) 400ms forwards;
}
.newsletter-section.is-active .newsletter-right {
  animation: nlPanelInRight 1000ms cubic-bezier(0.7,0,0.2,1) 400ms forwards;
}
@keyframes nlPanelInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes nlPanelInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* ── Language toggle (keep left-aligned in form context) ── */
.newsletter-left .nl-lang-toggle {
  justify-content: flex-start;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

/* Background image */
.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

/* Soft, mostly-equal darken during the intro (image stays visible) */
.contact-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-scrim--initial {
  background: radial-gradient(
      120% 80% at 50% 60%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.55) 100%
    );
  opacity: 1;
}

/* ----- Intro centered title (Phase 1+2) ----- */
.contact-intro-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
}
.contact-intro-title__top {
  display: block;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.contact-intro-title__bottom {
  display: block;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* ----- Left panel (Phase 3) -----
   Acts as an opaque dark slab AND container for the left-side content.
   Slides in as a single unit from the left edge to create the clean
   vertical seam at 50%. */
.contact-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding: 180px 6vw 110px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 4;
  background: rgba(8, 8, 10, 0.96);
  transform: translateX(-100%);
  will-change: transform;
}
.contact-left__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.contact-left__title span {
  display: block;
}
.contact-left__title span:nth-child(2),
.contact-left__title span:nth-child(3) {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

/* ----- Right panel / form (Phase 3) -----
   Lighter scrim slab so the BG image stays visible behind the form.
   Slides in from the right to meet the left panel at the center. */
.contact-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding: 6vh 6vw 6vh 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background: rgba(0, 0, 0, 0.32);
  transform: translateX(100%);
  will-change: transform;
}
.contact-form {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-form__row {
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-form__row--split {
  flex-direction: row;
  gap: 22px;
}
.contact-form__row--split .contact-form__field--code {
  flex: 0 0 70px;
  min-width: 0;
}
.contact-form__row--split .contact-form__field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.contact-form__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact-form__input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 2px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact-form__input:focus {
  border-bottom-color: #fff;
}
.contact-form__disclaimer {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}
.contact-form__disclaimer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__submit {
  margin-top: 6px;
  padding: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    letter-spacing 0.25s ease;
}
.contact-form__submit:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  letter-spacing: 0.32em;
}

/* ============================================================
   CONTACT SECTION ANIMATIONS
   timeline:
     scrolling in : bg zooms IN scroll-driven (scale 1.0 -> 1.16)
     0     -> 1500ms : intro title fades in, holds briefly, fades out
     1300  -> 2400ms : left/right panels slide in, bg zooms back OUT
   ============================================================ */
.contact-section.is-playing .contact-bg {
  animation: contactBgZoomOut 1200ms cubic-bezier(0.22, 1, 0.36, 1) 1300ms
    forwards;
}
@keyframes contactBgZoomOut {
  to {
    transform: scale(1.04);
  }
}

.contact-section.is-playing .contact-intro-title {
  animation: contactIntroTitle 1500ms cubic-bezier(0.22, 1, 0.36, 1) 100ms
    forwards;
}
@keyframes contactIntroTitle {
  0% {
    opacity: 0;
    transform: translate(-50%, -42%);
  }
  28% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  65% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -55%);
  }
}

/* Panels (left dark slab + right scrim slab) slide in from off-screen
   and meet at the 50% line with a clean vertical seam. */
.contact-section.is-playing .contact-left {
  animation: contactPanelInLeft 1000ms cubic-bezier(0.7, 0, 0.2, 1) 1300ms
    forwards;
}
.contact-section.is-playing .contact-right {
  animation: contactPanelInRight 1000ms cubic-bezier(0.7, 0, 0.2, 1) 1300ms
    forwards;
}
@keyframes contactPanelInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes contactPanelInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ============================================================
   LEGAL PAGES (Imprint, Privacy)
   ============================================================ */
.legal-page {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 6vw 90px;
  color: rgba(255, 255, 255, 0.85);
}
.legal-page__header {
  margin-bottom: 60px;
  text-align: left;
}
.legal-page__eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.legal-page__title {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #fff;
}
.legal-page__updated {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
.legal-page__body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.legal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}
.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}
.legal-section__title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.legal-section p {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section strong {
  font-weight: 500;
  color: #fff;
}
.legal-section a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s ease;
}
.legal-section a:hover {
  opacity: 0.75;
}
.legal-list {
  margin: 0 0 14px;
  padding: 0 0 0 18px;
  list-style: none;
}
.legal-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 6px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 14px;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-page__nav {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}
.legal-page__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease, gap 0.2s ease;
}
.legal-page__nav-link:hover {
  opacity: 1;
  gap: 12px;
}

/* ============================================================
   404 ERROR PAGE
   ============================================================ */
.error-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: errorBgZoom 18s ease-in-out infinite alternate;
}
@keyframes errorBgZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.14);
  }
}
.error-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 80% at 50% 55%,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.75) 60%,
      rgba(0, 0, 0, 0.92) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}
.error-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 6vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-code {
  margin: 0;
  font-size: clamp(96px, 16vw, 200px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.04em;
}
.error-code__digit {
  display: inline-block;
  animation: errorDigitIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.error-code__digit:nth-child(1) {
  animation-delay: 0ms;
}
.error-code__digit:nth-child(2) {
  animation-delay: 120ms;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}
.error-code__digit:nth-child(3) {
  animation-delay: 240ms;
}
@keyframes errorDigitIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.error-eyebrow {
  margin: 18px 0 0;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: errorTextIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}
.error-message {
  margin: 18px auto 0;
  max-width: 460px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  animation: errorTextIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 500ms forwards;
}
@keyframes errorTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.error-actions {
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: errorTextIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 700ms forwards;
}
.error-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.25s ease, border-color 0.25s ease,
    letter-spacing 0.25s ease;
}
.error-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  letter-spacing: 0.32em;
}
.error-cta--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}
.error-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

/* ============================================================
   FOOTER (thin black bar at the very bottom)
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 38px;
  padding: 10px 5vw;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.site-footer__link:hover {
  color: #fff;
}

/* When the footer is in view, hide the fixed bottom-corner UI
   so it doesn't overlap with the bar. */
body.footer-in-view .bottom-left,
body.footer-in-view .floating-contacts {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .site-header {
    top: 18px;
    padding: 0 6vw;
  }
  .top-fade {
    height: 140px;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.85) 45%,
      rgba(0, 0, 0, 0.52) 78%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .logo__img {
    width: 115px;
    margin-top: 10px;
  }
  .header-actions {
    gap: 18px;
  }
  .header-lang-switch {
    height: 30px;
  }
  .header-lang-switch__btn {
    min-width: 30px;
    padding: 4px 8px;
    font-size: 10px;
  }
  .ico,
  .icon-swap {
    width: 28px;
    height: 28px;
  }

  /* On mobile: overlay covers the full screen, centered nav */
  .menu-overlay {
    grid-template-columns: 100%;
  }
  .menu-overlay__right {
    display: none;
  }
  .menu-overlay__left {
    background: rgba(8, 8, 10, 0.7);
  }
  body.menu-open .menu-overlay__left {
    -webkit-backdrop-filter: blur(22px) saturate(110%);
    backdrop-filter: blur(22px) saturate(110%);
  }
  .menu-nav {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  body.menu-open .menu-nav {
    transform: translate(-50%, -50%);
  }
  .menu-nav__list {
    padding: 0;
  }
  .menu-nav__link {
    font-size: 16px;
    line-height: 38px;
    letter-spacing: 0.24em;
    white-space: nowrap;
  }

  .bottom-left {
    left: 16px;
    bottom: 18px;
    gap: 10px;
  }
  .socials {
    gap: 9px;
  }
  .social {
    width: 32px;
    height: 32px;
  }
  .social svg {
    width: 16px;
    height: 16px;
  }
  .fc-btn {
    width: 44px;
    height: 40px;
  }
  .fc-btn svg {
    width: 18px;
    height: 18px;
  }

  .floating-contacts {
    right: 12px;
    bottom: 22px;
  }

  /* Feature sections on mobile */
  .feature-content {
    width: auto;
    max-width: 100%;
  }
  .feature-section--left .feature-content {
    left: 6vw;
    right: 6vw;
  }
  .feature-section--right .feature-content {
    left: 6vw;
    right: 6vw;
  }
  .feature-title {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: 0.04em;
  }
  .feature-sub {
    font-size: clamp(14px, 4vw, 17px);
    margin-top: 14px;
  }
  .feature-cta {
    margin-top: 22px;
    padding: 12px 26px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  /* Use the same dark scrim direction on both sides for legibility */
  .feature-scrim,
  .feature-scrim--right {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }

  /* Contact section: stack columns vertically on mobile */
  /* ── Newsletter mobile: stack panels ── */
  .newsletter-section {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  .newsletter-left,
  .newsletter-right {
    position: relative;
    top: auto; left: auto; right: auto;
    width: 100%; height: auto;
    transform: translateY(40px);
  }
  .newsletter-left  { padding: 60px 6vw 30px; background: rgba(0,0,0,0.45); }
  .newsletter-right { padding: 30px 6vw 60px; background: rgba(8,8,10,0.92); }
  .newsletter-right__title { font-size: clamp(26px,7vw,36px); }
  .newsletter-left .nl-lang-toggle { justify-content: center; }
  .newsletter-section.is-active .newsletter-left,
  .newsletter-section.is-active .newsletter-right {
    animation: nlPanelInMobile 900ms cubic-bezier(0.22,1,0.36,1) 400ms forwards;
  }
  @keyframes nlPanelInMobile {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .contact-section {
    height: auto;
    min-height: 100vh;
    overflow: visible; /* let content grow naturally on narrow viewports */
    padding: 80px 0 90px;
  }
  /* Reset the absolute / 50%-width positioning from desktop and stack the panels */
  .contact-left,
  .contact-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    transform: translateY(40px);
  }
  .contact-left {
    padding: 40px 6vw 30px;
    background: rgba(8, 8, 10, 0.92);
  }
  .contact-left__title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .contact-right {
    padding: 30px 6vw 40px;
    background: rgba(0, 0, 0, 0.45);
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact-form__row--split {
    gap: 14px;
  }
  .contact-form__row--split .contact-form__field--code {
    flex: 0 0 64px;
  }
  .contact-form__submit {
    width: 100%;
    text-align: center;
    padding: 14px 12px;
    letter-spacing: 0.22em;
  }
  /* Intro title: position relative to viewport, not section height,
     so it sits cleanly above the panels regardless of section size. */
  .contact-intro-title {
    top: 32vh;
  }
  .contact-section.is-playing .contact-left,
  .contact-section.is-playing .contact-right {
    animation: contactPanelInMobile 1000ms cubic-bezier(0.22, 1, 0.36, 1) 1300ms
      forwards;
  }
  @keyframes contactPanelInMobile {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Footer: stack centered on small screens */
  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 12px 6vw 14px;
    font-size: 10px;
  }
  .site-footer__links {
    gap: 18px;
  }

  /* Events sections on mobile */
  .events-section {
    padding: 60px 5vw 50px;
  }
  .featured-event__card {
    aspect-ratio: 16 / 9;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .highlight-card__link {
    aspect-ratio: 4 / 3;
  }

  /* News cards on mobile */
  .news-row {
    gap: 14px;
  }
  .news-card {
    flex: 0 0 270px;
  }
  .news-card__title {
    font-size: 14px;
  }

  /* 404 page on mobile */
  .error-content {
    padding: 70px 6vw;
  }

  /* Newsletter on mobile */
  .newsletter-section {
    min-height: 460px;
    padding: 70px 6vw;
  }
  .newsletter-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .newsletter-text {
    font-size: 13px;
    margin-bottom: 28px;
  }

  /* Legal pages (Imprint, Privacy) on mobile */
  .legal-page {
    padding: 120px 6vw 70px;
  }
  .legal-page__header {
    margin-bottom: 40px;
  }
  .legal-section {
    padding-top: 22px;
  }
  .legal-section__title {
    font-size: 13px;
    letter-spacing: 0.16em;
  }
  .legal-section p,
  .legal-list li {
    font-size: 14px;
  }
  .error-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .error-cta {
    width: 100%;
    padding: 13px 22px;
    letter-spacing: 0.22em;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .menu-overlay__left,
  .menu-overlay__right,
  .menu-nav,
  .menu-nav__list li,
  .icon-swap .icon-bars,
  .icon-swap .icon-close,
  .fc-btn,
  .social,
  .icon-btn,
  .feature-title,
  .feature-sub,
  .feature-cta {
    transition: none !important;
  }
  body.menu-open .menu-nav__list li {
    opacity: 1 !important;
    transform: none !important;
  }
  .feature-section.is-active .feature-bg,
  .feature-section.is-active .feature-title,
  .feature-section.is-active .feature-sub,
  .feature-section.is-active .feature-cta,
  .newsletter-section.is-active .newsletter-bg,
  .contact-section.is-playing .contact-bg,
  .contact-section.is-playing .contact-intro-title,
  .contact-section.is-playing .contact-left,
  .contact-section.is-playing .contact-right {
    animation: none !important;
  }
  .feature-bg,
  .newsletter-bg,
  .contact-bg {
    transform: scale(1) !important;
  }
  .feature-title,
  .feature-sub,
  .feature-cta {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .contact-intro-title {
    opacity: 0 !important;
  }
  .contact-left,
  .contact-right {
    transform: none !important;
  }
  .error-bg,
  .error-code__digit,
  .error-eyebrow,
  .error-message,
  .error-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
