/* ============================================================
   MMM Fahrzeugaufbereitung — Stylesheet
   Brand: Bold Automotive | Colors: red + black + white
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --color-red:        #E8220A;
  --color-red-dark:   #C41A04;
  --color-red-light:  #FF3D22;
  --color-white:      #FFFFFF;

  /* Neutrals */
  --color-black:      #0D0D0D;
  --color-charcoal:   #1A1A1A;
  --color-charcoal-2: #242424;
  --color-grey-light: #F2F2F2;
  --color-grey-mid:   #888888;
  --color-grey-dark:  #4A4A4A;

  /* Type */
  --font-brand:    'Barlow Condensed', system-ui, sans-serif;
  --font-heading:  'Exo 2', system-ui, sans-serif;
  --font-body:     'Barlow', system-ui, sans-serif;

  --text-hero:     clamp(2.75rem, 9vw, 6.5rem);
  --text-h1:       clamp(2rem, 5vw, 3.5rem);
  --text-h2:       clamp(1.75rem, 4vw, 3rem);
  --text-h3:       clamp(1.25rem, 2.4vw, 1.75rem);
  --text-body:     1rem;
  --text-small:    0.875rem;
  --text-label:    0.75rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container:     min(1200px, 100% - 2rem);
  --container-wide:min(1440px, 100% - 2rem);
  --section-py:    clamp(4rem, 10vw, 8rem);

  /* Radius (CI: hard edges) */
  --radius-sm:   2px;
  --radius-md:   4px;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:      150ms;
  --t-base:      250ms;
  --t-slow:      400ms;

  /* Z scale */
  --z-nav:       40;
  --z-overlay:   80;
  --z-modal:     100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-white);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--color-red-light); outline-offset: 3px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-red);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: var(--text-h2);
  margin-bottom: var(--space-4);
}
.section-title .accent { color: var(--color-red); }
.section-lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--color-grey-mid);
  max-width: 60ch;
  margin-bottom: var(--space-12);
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

/* ---------- Layout Utilities ---------- */
.container { width: var(--container); margin-inline: auto; }
.container-wide { width: var(--container-wide); margin-inline: auto; }
section { padding-block: var(--section-py); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-brand);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.95rem 1.75rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn-primary:hover { background: var(--color-red-dark); border-color: var(--color-red-dark); }

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover { background: var(--color-white); color: var(--color-black); }

.btn-outline-red {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}
.btn-outline-red:hover { background: var(--color-red); color: var(--color-white); }

.btn-icon { width: 1em; height: 1em; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--space-4) 0;
  background: rgba(13, 13, 13, 0);
  transition: background var(--t-base) var(--ease-out),
              padding var(--t-base) var(--ease-out);
}
.site-header.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-3) 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-brand);
  font-weight: 800;
  font-style: italic;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
.nav-logo img { width: 44px; height: 44px; border-radius: var(--radius-sm); }
.nav-logo-text { display: none; }
@media (min-width: 480px) { .nav-logo-text { display: inline; } }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--t-fast) var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.nav-links a:hover { color: var(--color-red); }
.nav-links a:hover::after { transform: scaleX(1); }

@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--t-base) var(--ease-out),
              opacity var(--t-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}
.nav-mobile[data-open="true"] { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2rem, 8vw, 3rem);
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--t-fast) var(--ease-out);
}
.nav-mobile a:hover, .nav-mobile a:focus-visible { color: var(--color-red); }
.nav-mobile-cta { margin-top: var(--space-4); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--space-16);
  overflow: hidden;
  background: var(--color-black);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-media picture { position: absolute; inset: 0; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.78) 40%, rgba(13,13,13,0.35) 75%, rgba(13,13,13,0.15) 100%),
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.05) 35%, rgba(13,13,13,0.05) 60%, rgba(13,13,13,0.85) 100%);
}
@media (max-width: 720px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.4) 30%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,0.95) 100%);
  }
  .hero-media img { object-position: 70% center; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  max-width: 780px;
}
.hero h1 {
  font-size: var(--text-hero);
  color: var(--color-white);
}
.hero h1 .accent { color: var(--color-red); display: inline-block; }
.hero h1 .stack { display: block; }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--color-grey-light);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-2);
}
.hero-meta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  color: var(--color-grey-light);
  font-size: var(--text-small);
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-brand);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta-item svg { width: 18px; height: 18px; color: var(--color-red); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-brand);
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-grey-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--color-red), transparent);
  animation: scroll-pulse 2.4s var(--ease-out) infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--color-charcoal);
  padding-block: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--color-red);
  flex-shrink: 0;
}
.trust-item-label {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.trust-item-sub {
  font-size: var(--text-small);
  color: var(--color-grey-mid);
  margin-top: 2px;
}

/* ---------- Services ---------- */
.services {
  background: var(--color-black);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-red);
}
.services-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--color-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border-color var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}
.service-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
}
.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.service-card:hover .service-card-media img {
  transform: scale(1.05);
}
.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,13,13,0.6) 100%);
  pointer-events: none;
}
.service-card-num {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 1;
  font-family: var(--font-brand);
  font-weight: 800;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: var(--color-red);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}
.service-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.service-card h3 {
  font-size: var(--text-h3);
  color: var(--color-white);
}
.service-card-text {
  color: var(--color-grey-mid);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.service-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: var(--space-2);
}
.service-card-price {
  font-family: var(--font-brand);
  font-weight: 700;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
}
.service-card-link {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--t-fast) var(--ease-out);
}
.service-card-link:hover { color: var(--color-red); }
.service-card-link svg {
  width: 14px; height: 14px;
  transition: transform var(--t-fast) var(--ease-out);
}
.service-card-link:hover svg { transform: translateX(3px); }

/* ---------- About / Why Us ---------- */
.about {
  background: var(--color-grey-light);
  color: var(--color-black);
}
.about-grid {
  display: grid;
  gap: var(--space-12);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; }
}
.about h2 {
  font-size: var(--text-h2);
  margin-bottom: var(--space-4);
  color: var(--color-black);
}
.about h2 .accent { color: var(--color-red); }
.about-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--color-grey-dark);
  margin-bottom: var(--space-8);
  max-width: 52ch;
}
.values {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .values { grid-template-columns: repeat(2, 1fr); }
}
.value {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-red);
}
.value-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-black);
  letter-spacing: -0.01em;
}
.value-text {
  font-size: 0.95rem;
  color: var(--color-grey-dark);
  line-height: 1.5;
}
.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60%; height: 6px;
  background: var(--color-red);
}

/* ---------- Workshop ---------- */
.workshop {
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}
.workshop-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: var(--space-8);
  overflow: hidden;
}
.workshop-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.workshop-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.6) 100%);
}
.workshop-stats {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--space-8);
}
@media (min-width: 720px) {
  .workshop-stats { grid-template-columns: repeat(3, 1fr); }
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: var(--space-2);
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: var(--text-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-grey-mid);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--color-red);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact .eyebrow { color: var(--color-white); }
.contact .eyebrow::before { background: var(--color-white); }
.contact h2 {
  font-size: var(--text-h2);
  margin-bottom: var(--space-4);
}
.contact-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-12);
  max-width: 52ch;
}
.contact-grid {
  display: grid;
  gap: var(--space-12);
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
}
.contact-cta-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-phone {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-6);
  background: rgba(0,0,0,0.18);
  border: 2px solid var(--color-white);
  text-decoration: none;
  transition: background var(--t-base) var(--ease-out);
}
.contact-phone:hover { background: rgba(0,0,0,0.32); }
.contact-phone-label {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.contact-phone-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  letter-spacing: -0.01em;
  color: var(--color-white);
  line-height: 1;
}
.contact-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-block {
  border-left: 3px solid var(--color-white);
  padding-left: var(--space-4);
}
.contact-block-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-2);
}
.contact-block-body {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
}
.contact-block-body a {
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color var(--t-fast) var(--ease-out);
}
.contact-block-body a:hover { border-color: var(--color-white); }

.hours-table {
  display: grid;
  gap: var(--space-2);
  font-size: 0.95rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.hours-row.is-closed { color: rgba(255,255,255,0.6); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  color: var(--color-grey-mid);
  padding-block: var(--space-16) var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  gap: var(--space-12);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.footer-logo img { width: 56px; height: 56px; border-radius: var(--radius-sm); }
.footer-logo-text {
  font-family: var(--font-brand);
  font-weight: 800;
  font-style: italic;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  line-height: 1;
}
.footer-logo-sub {
  font-family: var(--font-brand);
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-grey-mid);
  margin-top: 2px;
}
.footer-tag {
  font-size: 0.95rem;
  max-width: 40ch;
  line-height: 1.55;
}
.footer-col-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
.footer-list { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-list a {
  color: var(--color-grey-mid);
  font-size: 0.95rem;
  transition: color var(--t-fast) var(--ease-out);
}
.footer-list a:hover { color: var(--color-white); }
.footer-bar {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: var(--text-small);
}
.footer-bar a {
  color: var(--color-grey-mid);
  transition: color var(--t-fast) var(--ease-out);
}
.footer-bar a:hover { color: var(--color-white); }

/* ---------- Animations on scroll ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal[data-delay="1"] { transition-delay: 80ms; }
.js .reveal[data-delay="2"] { transition-delay: 160ms; }
.js .reveal[data-delay="3"] { transition-delay: 240ms; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-scroll-line { animation: none; }
}

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-page {
  background: var(--color-black);
  padding-top: 120px;
  padding-bottom: var(--section-py);
}
.legal-hero {
  padding-block: var(--space-16) var(--space-12);
  background: var(--color-charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-top: var(--space-3);
}
.legal-hero h1 .accent { color: var(--color-red); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-grey-mid);
  margin-bottom: var(--space-6);
  transition: color var(--t-fast) var(--ease-out);
}
.legal-back:hover { color: var(--color-red); }
.legal-back svg { width: 14px; height: 14px; }

.legal-content {
  padding-block: var(--space-16);
  max-width: 760px;
  margin-inline: auto;
  width: var(--container);
}
.legal-content h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-red);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.legal-content p,
.legal-content ul,
.legal-content ol,
.legal-content address {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-grey-light);
  margin-bottom: var(--space-4);
  max-width: 70ch;
}
.legal-content address { font-style: normal; }
.legal-content ul,
.legal-content ol {
  padding-left: var(--space-6);
  list-style: disc;
}
.legal-content ol { list-style: decimal; }
.legal-content ul li,
.legal-content ol li {
  margin-bottom: var(--space-2);
}
.legal-content a {
  color: var(--color-red-light);
  border-bottom: 1px solid rgba(255,61,34,0.4);
  transition: border-color var(--t-fast) var(--ease-out);
  word-break: break-word;
}
.legal-content a:hover { border-color: var(--color-red-light); }
.legal-content strong { color: var(--color-white); font-weight: 600; }
.legal-content .notice {
  background: var(--color-charcoal);
  border-left: 4px solid var(--color-red);
  padding: var(--space-4) var(--space-6);
  margin-block: var(--space-6);
  font-size: 0.95rem;
  color: var(--color-grey-light);
}
.legal-content .notice strong { display: block; margin-bottom: var(--space-2); color: var(--color-white); }

/* ---------- Selection ---------- */
::selection { background: var(--color-red); color: var(--color-white); }

/* ---------- Print ---------- */
@media print {
  .site-header, .nav-toggle, .hero-scroll, .nav-mobile { display: none; }
  body { background: white; color: black; }
}

/* ---------- CybeLabs Footer-Credit ---------- */
.footer-credit {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-credit-by {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-credit-logo {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: currentColor;
  transition: color 0.18s ease;
}
.footer-credit-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  transition: color 0.18s ease;
}
.footer-credit-name-accent {
  color: inherit;
  transition: color 0.18s ease;
}
.footer-credit-link:hover .footer-credit-name { color: #ffffff; }
.footer-credit-link:hover .footer-credit-logo,
.footer-credit-link:hover .footer-credit-name-accent { color: #00D4FF; }

/* ---------- FAQ ---------- */
.faq {
  background: var(--color-grey-light);
  color: var(--color-black);
}
.faq .section-title { color: var(--color-black); }
.faq .section-title .accent { color: var(--color-red); }
.faq .section-lede { color: var(--color-grey-dark); }
.faq-list {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-3);
  max-width: 62rem;
}
.faq-item {
  background: var(--color-white);
  border-left: 3px solid var(--color-red);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: -3px;
}
.faq-marker {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.faq-marker::before,
.faq-marker::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 16px;
  height: 2.5px;
  background: var(--color-red);
  transform: translateY(-50%);
  transition: transform var(--t-base) var(--ease-out);
}
.faq-marker::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-marker::after { transform: translateY(-50%) rotate(0deg); }
.faq-answer {
  padding: 0 var(--space-6) var(--space-4);
  color: var(--color-grey-dark);
  max-width: 68ch;
}
.faq-answer p { margin: 0; }

/* ---------- Sticky mobile call bar ---------- */
/* The thumb, not the eye, drives a phone: keep the one action that turns a
   visitor into a customer permanently reachable on small screens. Hidden from
   900px up, where the header CTA is visible instead. */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-nav);
  display: flex;
  gap: 1px;
  background: var(--color-black);
  padding: env(safe-area-inset-bottom) 0 0;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.12);
}
.call-bar a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 56px;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-charcoal);
}
.call-bar a.is-primary { background: var(--color-red); }
.call-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
body.has-call-bar { padding-bottom: 56px; }
@media (min-width: 900px) {
  .call-bar { display: none; }
  body.has-call-bar { padding-bottom: 0; }
}
@media print {
  .call-bar { display: none; }
}
