/* ==========================================================================
   REISCHL ENGINEERING — Design System
   Dark automotive / engineering aesthetic
   ========================================================================== */

:root {
  /* Colors */
  --bg-deep:        #070709;
  --bg:             #0b0b0f;
  --bg-elev:        #12131a;
  --bg-glass:       rgba(22, 23, 31, 0.55);
  --border:         rgba(255, 255, 255, 0.08);
  --border-strong:  rgba(255, 255, 255, 0.16);
  --text:           #f5f5f7;
  --text-muted:     #a1a1aa;
  --text-dim:       #6b6b76;
  --accent:         #d63c00;
  --accent-glow:    rgba(214, 60, 0, 0.45);
  --accent-soft:    rgba(214, 60, 0, 0.12);
  --success:        #10b981;

  /* Type */
  --font-display:   'Archivo', system-ui, sans-serif;
  --font-body:      'Manrope', system-ui, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Spacing scale */
  --container: 1240px;
  --header-h: 74px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Global background — radial gradient atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(214, 60, 0, 0.15), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(214, 60, 0, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(80, 80, 100, 0.06), transparent 60%),
    var(--bg-deep);
}

/* Subtle noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.accent { color: var(--accent); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 7rem 0; }
section.sm { padding: 4rem 0; }

/* Mobile overrides are at end of file */

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 15, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  white-space: nowrap;
}
.nav-brand .dot {
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent-glow);
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  line-height: 1.2;
}
.nav-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.nav-menu a.active {
  color: var(--accent);
  background: var(--accent-soft);
}
.nav-menu .has-sub { position: relative; }
.nav-menu .has-sub > a::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  opacity: 0.55;
  margin-left: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-menu .has-sub { padding-bottom: 18px; margin-bottom: -18px; }
.nav-menu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: rgba(18, 19, 26, 0.94);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 10px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s, transform 0.22s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.nav-menu .submenu a {
  display: block;
  padding: 11px 14px;
  font-size: 0.92rem;
  border-radius: var(--r-sm);
}

/* CTA button — guaranteed orange bg + white text (!important defeats any cache-stale conflicts) */
.nav-menu li a.nav-cta,
.nav-menu li a.nav-cta:hover,
.nav-menu li a.nav-cta:focus,
.nav-menu li a.nav-cta.active {
  background: var(--accent) !important;
  color: #fff !important;
}
.nav-menu li a.nav-cta {
  padding: 11px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: 0 6px 18px rgba(214, 60, 0, 0.32);
  transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
}
.nav-menu li a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(214, 60, 0, 0.45);
  filter: brightness(1.08);
}

/* Desktop dropdown reveal — scoped to desktop ONLY so it cannot
   accidentally show the submenu on touch devices */
@media (min-width: 961px) {
  .nav-menu .has-sub:hover > a::after,
  .nav-menu .has-sub:focus-within > a::after {
    transform: rotate(-135deg) translate(-2px, -2px);
    opacity: 0.9;
  }
  .nav-menu .has-sub:hover .submenu,
  .nav-menu .has-sub:focus-within .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Mobile burger */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: transform 0.25s;
}
.nav-toggle span::before { content: ''; position: absolute; top: -7px; left: 0; }
.nav-toggle span::after  { content: ''; position: absolute; top:  7px; left: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ========== MOBILE NAV (<= 960px) — generous spacing + bulletproof accordion ========== */
@media (max-width: 960px) {
  .nav { padding: 14px 0; gap: 16px; }
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 32px 20px 48px;
    gap: 6px;
    background: rgba(11, 11, 15, 0.98);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 99;
  }
  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Top-level items — generous tappable rows */
  .nav-menu a {
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: var(--r-sm);
    justify-content: flex-start;
    gap: 0;
    line-height: 1.3;
  }

  /* Parent-of-submenu row — make room for the chevron */
  .nav-menu .has-sub { padding-bottom: 0; margin-bottom: 0; }
  .nav-menu .has-sub > a {
    position: relative;
    padding-right: 60px;
  }
  .nav-menu .has-sub > a::after {
    content: '';
    display: block;
    position: absolute;
    right: 24px;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-left: 0;
    border-top: 0;
    margin: 0;
    opacity: 0.6;
    transform-origin: center;
    transform: rotate(45deg);
    transition: transform 0.3s ease, opacity 0.2s;
  }
  .nav-menu .has-sub.is-open > a::after {
    transform: rotate(-135deg);
    opacity: 0.95;
  }

  /* Submenu — BULLETPROOF collapsed default (visibility + max-height 0 + pointer/opacity/overflow) */
  .nav-menu .submenu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: var(--r-sm);
    padding: 0;
    margin: 0;
    box-shadow: none;
    transition:
      max-height 0.35s ease,
      opacity 0.22s ease,
      visibility 0s linear 0.22s,
      padding 0.35s ease,
      margin 0.35s ease;
  }
  .nav-menu .has-sub.is-open .submenu {
    max-height: 720px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 0;
    margin: 6px 0 10px;
    transition:
      max-height 0.35s ease,
      opacity 0.22s ease,
      visibility 0s linear 0s,
      padding 0.35s ease,
      margin 0.35s ease;
  }
  .nav-menu .submenu a {
    padding: 13px 20px 13px 40px;
    font-size: 0.94rem;
    color: var(--text-muted);
    border-radius: var(--r-sm);
    line-height: 1.3;
  }

  /* CTA on mobile — full width, more breathing room, guaranteed colors */
  .nav-menu li a.nav-cta {
    margin-top: 14px;
    padding: 16px 22px;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: var(--r-sm);
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px var(--accent-glow);
}
.btn-ghost {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}
.btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-xl);
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(214,60,0,0.25), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(214,60,0,0.15), transparent 55%);
  pointer-events: none;
}
.hero-visual .gtue-badge {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-visual .gtue-badge .plakette {
  width: 240px;
  height: 240px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%),
    conic-gradient(from 0deg, var(--accent), #ff7a3d, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px var(--accent-glow), inset 0 0 40px rgba(0,0,0,0.4);
  animation: slowspin 40s linear infinite;
}
.hero-visual .plakette-inner {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  border: 1px solid var(--border-strong);
}
.hero-visual .plakette-inner span { display: block; }
.hero-visual .plakette-inner .big { font-size: 3.2rem; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.hero-visual .plakette-inner .label { font-size: 0.72rem; letter-spacing: 0.25em; color: var(--text-dim); margin-top: 10px; text-transform: uppercase; }
@keyframes slowspin { to { transform: rotate(360deg); } }
.hero-visual .gtue-badge h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.hero-visual .gtue-badge p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Trust strip */
.trust-strip {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-strip-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: center;
}
.trust-item {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* Hero mobile: see end of file */

/* ==========================================================================
   FEATURE GRID / SERVICE CARDS
   ========================================================================== */
.section-head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head h2 { margin-bottom: 1.2rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  padding: 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--accent-soft), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: rgba(30, 31, 41, 0.6);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(214,60,0,0.25);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.card p { font-size: 0.94rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ==========================================================================
   SPLIT / ALT SECTIONS
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 3rem; } }
.split-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 60%);
}

/* Features list with numbers */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.feature-list .num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border: 1px solid rgba(214,60,0,0.25);
}
.feature-list h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.feature-list p { font-size: 0.94rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial {
  padding: 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial h4 { font-size: 1.05rem; }
.testimonial blockquote {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: normal;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin: 0.25rem 0;
}
.testimonial cite {
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .hero-actions { justify-content: center; }

/* ==========================================================================
   INFO GRID (hours, contact)
   ========================================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.info-card {
  padding: 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3::before {
  content: '';
  width: 4px; height: 18px;
  background: var(--accent);
  border-radius: 2px;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.94rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--text-muted); }
.hours-list li span:last-child  { color: var(--text); font-weight: 500; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
}
.contact-list .label {
  color: var(--text-dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--accent); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card {
  padding: 2.5rem;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  max-width: 680px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.5);
}
.field.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field.checkbox input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.field.checkbox label {
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}
.form-feedback {
  margin-top: 1rem;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--success);
}
.form-feedback.error {
  display: block;
  background: rgba(214,60,0,0.1);
  border: 1px solid rgba(214,60,0,0.3);
  color: var(--accent);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   PAGE HEADER (sub-pages)
   ========================================================================== */
.page-header {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-header .eyebrow { justify-content: center; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { max-width: 680px; margin: 0 auto; font-size: 1.1rem; }

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.5; }

/* Prose for legal pages / content */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.prose h3 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.prose p  { margin-bottom: 1rem; color: var(--text-muted); font-size: 0.98rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; margin-bottom: 1rem; }
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { font-size: 0.9rem; color: var(--text-muted); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--text); }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ==========================================================================
   MICRO ANIMATIONS (reveal on load)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }
.reveal.d4 { animation-delay: 0.4s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ==========================================================================
   MOBILE OVERHAUL — All mobile-specific overrides
   ========================================================================== */

/* ---- Tablet breakpoint ---- */
@media (max-width: 860px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .split      { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Phone breakpoint — full overhaul ---- */
@media (max-width: 700px) {

  /* --- GLOBAL SPACING --- */
  .container { padding: 0 16px; }
  section { padding: 2.5rem 0; }
  section.sm { padding: 1.75rem 0; }

  /* --- TYPOGRAPHY --- */
  h1 {
    font-size: 1.85rem;
    letter-spacing: -0.025em;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
  }
  h2 { font-size: 1.45rem; letter-spacing: -0.02em; }
  h3 { font-size: 1.1rem; }
  .lead { font-size: 1rem; }
  .eyebrow { font-size: 0.7rem; margin-bottom: 0.75rem; }

  /* --- HERO --- */
  .hero { padding: 2rem 0 2.5rem; }
  .hero-grid { gap: 2rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero-visual {
    aspect-ratio: auto;
    padding: 1.5rem 1rem;
    border-radius: var(--r-md);
  }
  .hero-visual .gtue-badge .plakette {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
  }
  .hero-visual .plakette-inner {
    width: 134px; height: 134px;
  }
  .hero-visual .plakette-inner .big { font-size: 2.1rem; }
  .hero-visual .plakette-inner .label { font-size: 0.6rem; margin-top: 6px; }
  .hero-visual .gtue-badge h3 { font-size: 1.15rem; }
  .hero-visual .gtue-badge p { font-size: 0.88rem; }
  .hero-actions { margin-top: 1.5rem; flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .trust-strip { margin-top: 2rem; padding-top: 1.25rem; }
  .trust-strip-label { font-size: 0.65rem; margin-bottom: 0.6rem; }
  .trust-items { gap: 0.6rem 1.5rem; }
  .trust-item { font-size: 0.8rem; }

  /* --- SECTION HEADS --- */
  .section-head { margin-bottom: 1.5rem; }
  .section-head h2 { margin-bottom: 0.75rem; }
  .section-head .lead { font-size: 0.95rem; }

  /* --- CARDS --- */
  .cards-grid { gap: 12px; }
  .card {
    padding: 1.25rem;
    border-radius: var(--r-md);
  }
  .card-icon {
    width: 38px; height: 38px;
    margin-bottom: 0.8rem;
  }
  .card-icon svg { width: 18px; height: 18px; }
  .card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
  .card p { font-size: 0.88rem; }
  .card-link { margin-top: 0.8rem; font-size: 0.85rem; }

  /* --- SPLIT / FEATURE SECTIONS --- */
  .split { gap: 1.5rem; }
  .split-visual {
    aspect-ratio: auto;
    padding: 1.5rem;
    border-radius: var(--r-md);
  }
  .feature-list { gap: 1rem; }
  .feature-list li { grid-template-columns: 40px 1fr; gap: 0.8rem; }
  .feature-list .num {
    width: 40px; height: 40px;
    font-size: 0.95rem;
  }
  .feature-list h4 { font-size: 1rem; }
  .feature-list p { font-size: 0.88rem; }

  /* --- PAGE HEADER (sub-pages) --- */
  .page-header { padding: 2rem 0 1.5rem; }
  .page-header p { font-size: 0.95rem; }
  .breadcrumbs { font-size: 0.78rem; margin-bottom: 0.5rem; flex-wrap: wrap; }

  /* --- TESTIMONIALS --- */
  .testimonials { gap: 12px; }
  .testimonial {
    padding: 1.25rem;
    gap: 0.6rem;
    border-radius: var(--r-md);
  }
  .testimonial h4 { font-size: 0.95rem; }
  .testimonial blockquote {
    font-size: 0.9rem;
    padding-left: 0.75rem;
    line-height: 1.5;
  }
  .stars { font-size: 0.85rem; }
  .testimonial cite { font-size: 0.8rem; }

  /* --- CTA BAND --- */
  .cta-band { padding: 2.5rem 0; }
  .cta-band h2 { font-size: 1.35rem; }
  .cta-band .lead { font-size: 0.95rem; }
  .cta-band .hero-actions { margin-top: 1.25rem; flex-direction: column; gap: 10px; }
  .cta-band .hero-actions .btn { width: 100%; justify-content: center; }

  /* --- INFO GRID --- */
  .info-grid { gap: 12px; }
  .info-card {
    padding: 1.25rem;
    border-radius: var(--r-md);
  }
  .info-card h3 { font-size: 0.95rem; margin-bottom: 0.8rem; }
  .hours-list li { padding: 6px 0; font-size: 0.88rem; }
  .contact-list li { font-size: 0.88rem; gap: 8px; }
  .contact-list .label { font-size: 0.68rem; }

  /* --- FORMS --- */
  .form-card {
    padding: 1.25rem;
    border-radius: var(--r-md);
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .field { margin-bottom: 1rem; }
  .field label { font-size: 0.72rem; }
  .field input,
  .field textarea,
  .field select { padding: 12px 14px; font-size: 0.92rem; }
  .field.checkbox label { font-size: 0.82rem; }

  /* --- BUTTONS (global on mobile) --- */
  .btn { padding: 12px 20px; font-size: 0.9rem; }

  /* --- FOOTER --- */
  .site-footer { padding: 2.5rem 0 1.5rem; margin-top: 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand { font-size: 1.05rem; margin-bottom: 0.5rem; }
  .footer-grid h4 { margin-bottom: 0.75rem; }
  .footer-grid ul { gap: 0.4rem; }
  .footer-grid a { font-size: 0.88rem; }
  .footer-grid p { font-size: 0.85rem; }
  .footer-bottom { font-size: 0.78rem; padding-top: 1.25rem; }
  .footer-legal-links { gap: 1rem; }

  /* --- PROSE (legal pages) --- */
  .prose h2 { font-size: 1.25rem; margin-top: 2rem; }
  .prose h3 { font-size: 1.05rem; }
  .prose p, .prose li { font-size: 0.9rem; }
}

/* ---- Small phone (< 420px) ---- */
@media (max-width: 420px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .hero h1 { font-size: 1.7rem; }
  .btn { font-size: 0.85rem; padding: 12px 16px; }
  .card { padding: 1rem; }
  .card h3 { font-size: 0.98rem; }
  .card p { font-size: 0.85rem; }
  .info-card { padding: 1rem; }
  .form-card { padding: 1rem; }
  .testimonial { padding: 1rem; }
}

