/* ============================================================
   TAXI GS – Ober-Ramstadt · Darmstadt
   Statisches Stylesheet, Mobile-First, keine externen Quellen
   ============================================================ */

/* ── Fonts (lokal gehostet, DSGVO-konform) ── */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

/* ── Design Tokens ── */
:root {
  --bg: #0a0a0b;
  --bg-2: #101013;
  --bg-3: #16161b;
  --bg-footer: #060607;
  --gold: #e8b33c;
  --gold-2: #f5ce6b;
  --gold-deep: #a97e17;
  --gold-dim: rgba(232, 179, 60, 0.1);
  --line: rgba(232, 179, 60, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --cream: #f4f1e7;
  --muted: #a8a59b;
  --muted-2: #807d75;
  --ink-on-gold: #171204;
  --header-h: 64px;
  --callbar-h: 68px;
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

::selection { background: var(--gold); color: var(--ink-on-gold); }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  font-weight: 350;
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px));
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink-on-gold);
  padding: 0.7rem 1.2rem; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── Layout-Helfer ── */
.container { width: min(100% - 2.5rem, 1160px); margin-inline: auto; }
.section { padding-block: clamp(4rem, 10vw, 7rem); position: relative; z-index: 1; }
.section-alt { background: var(--bg-2); }

/* ── Typografie ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

.display {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400; letter-spacing: 0.035em; line-height: 1.02;
  text-wrap: balance;
}
h1.display { font-size: clamp(3.3rem, 12vw, 7.2rem); line-height: 0.95; }
h2.display { font-size: clamp(2.3rem, 7vw, 3.8rem); }
.display em { font-style: normal; color: var(--gold-2); }
.display .grad {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-2) 10%, var(--gold) 45%, var(--gold-deep) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead { font-size: clamp(0.95rem, 2.6vw, 1.05rem); color: var(--muted); max-width: 54ch; line-height: 1.9; }
.section-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head .lead { margin-top: 0.4rem; }

/* ── Taxi-Karo-Trennlinie ── */
.checker {
  height: 12px;
  background: repeating-conic-gradient(rgba(232, 179, 60, 0.55) 0% 25%, transparent 0% 50%) 0 0 / 12px 12px;
  opacity: 0.5;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 1.8rem; border-radius: var(--radius);
  text-decoration: none; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-gold { background: var(--gold); color: var(--ink-on-gold); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232, 179, 60, 0.28); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(255, 255, 255, 0.18); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark { background: var(--ink-on-gold); color: var(--gold-2); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 0.84rem; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9, 9, 11, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; letter-spacing: 0.09em;
  color: var(--cream); text-decoration: none; line-height: 1;
  display: inline-flex; align-items: baseline; gap: 0.45rem;
}
.brand em { font-style: italic; color: var(--gold); }
.nav-desktop { display: none; }
.nav-actions { display: flex; align-items: center; gap: 0.7rem; }
.btn-nav { padding: 0.62rem 1.05rem; font-size: 0.75rem; }
.btn-nav .nav-phone-txt { display: none; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5.5px;
  width: 42px; height: 42px; padding: 10px;
  background: none; border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.hamburger span {
  display: block; height: 1.6px; width: 100%;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.1px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.1px) rotate(-45deg); }

/* ── Mobiles Menü ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8, 8, 10, 0.97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.2rem; padding: 5rem 2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; letter-spacing: 0.06em;
  color: var(--cream); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .mm-contact {
  margin-top: 1.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
}
.mobile-menu .mm-contact a { font-family: 'Manrope', sans-serif; font-size: 0.95rem; color: var(--muted); }
.mobile-menu .mm-contact a strong { color: var(--gold); font-weight: 700; }

/* ── Hero ── */
.hero {
  position: relative; z-index: 1;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  min-height: 92svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(1px 1px at 12% 22%, rgba(232, 179, 60, 0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 38%, rgba(232, 179, 60, 0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 32% 72%, rgba(232, 179, 60, 0.18) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 62% 12%, rgba(232, 179, 60, 0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 82%, rgba(232, 179, 60, 0.2) 0%, transparent 100%),
    radial-gradient(900px 620px at 85% 8%, rgba(232, 179, 60, 0.07) 0%, transparent 60%);
}
.hero-grid { display: grid; gap: 1rem; align-items: center; }
.hero-art { order: -1; display: flex; justify-content: center; }
.hero-art img {
  width: min(64vw, 280px); height: auto;
  filter: drop-shadow(0 0 46px rgba(232, 179, 60, 0.28));
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }
.hero .lead { margin-top: 1.6rem; }
.hero-note {
  margin-top: 1.4rem; font-size: 0.8rem; color: var(--muted-2);
  display: flex; align-items: center; gap: 0.55rem;
}
.hero-note svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.hero-metrics {
  display: flex; flex-wrap: wrap; gap: 2.2rem 3rem;
  margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 2.2rem;
  border-top: 1px solid var(--line-soft);
}
.metric-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; color: var(--gold-2); line-height: 1;
}
.metric-label {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 0.45rem;
}

/* ── Laufband ── */
.marquee {
  position: relative; z-index: 1; overflow: hidden;
  padding: 1.05rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 3rem; padding-right: 3rem; }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Leistungs-Karten ── */
.cards { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: var(--bg-2); padding: 2.4rem 1.8rem;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
  transition: background 0.35s;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 80%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { background: var(--bg-3); }
.card:hover::after { transform: scaleX(1); }
.card-num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1;
  color: rgba(232, 179, 60, 0.12);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border: 1px solid var(--line);
  color: var(--gold); margin-bottom: 1.4rem;
}
.card-icon svg { width: 23px; height: 23px; }
.card h3 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: 1.45rem; letter-spacing: 0.05em; color: var(--cream);
  margin-bottom: 0.6rem;
}
.card p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; }
.card-more {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.3rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.card-more svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.card:hover .card-more svg { transform: translateX(4px); }

/* ── Ablauf / Schritte ── */
.steps { display: grid; grid-template-columns: 1fr; gap: 2.2rem; counter-reset: step; }
.step { position: relative; padding-left: 4.6rem; }
.step-num {
  position: absolute; left: 0; top: 0;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--gold);
  background: var(--gold-dim);
}
.step h3 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: 1.4rem; letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
.step p { font-size: 0.88rem; color: var(--muted); }
.step p a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--line); }

/* ── Über uns ── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-text p { font-size: 0.92rem; color: var(--muted); line-height: 2; margin-bottom: 1.2rem; }
.about-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.75rem); font-style: italic;
  color: var(--gold-2); line-height: 1.45;
  margin: 2.2rem 0; padding-left: 1.8rem;
  border-left: 2px solid var(--gold);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat {
  background: var(--bg); padding: 2.2rem 1.2rem; text-align: center;
  transition: background 0.3s;
}
.section-alt .stat { background: var(--bg-2); }
.stat:hover { background: var(--bg-3); }
.stat-val { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1; color: var(--gold); }
.stat-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 0.55rem;
}

/* ── Einzugsgebiet ── */
.area-grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--muted); border: 1px solid var(--line-soft);
  padding: 0.5rem 1.05rem; border-radius: 99px;
  transition: color 0.25s, border-color 0.25s;
}
.chip:hover { color: var(--gold); border-color: var(--gold); }
.chip-hl { color: var(--gold-2); border-color: var(--line); background: var(--gold-dim); }
.area-note {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--gold-dim); padding: 1.6rem 1.7rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.area-note svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.area-note h3 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.05em; font-size: 1.25rem; margin-bottom: 0.3rem; }
.area-note p { font-size: 0.85rem; color: var(--muted); }

/* ── CTA-Band ── */
.cta-band {
  position: relative; z-index: 1;
  background: linear-gradient(115deg, var(--gold-2) 0%, var(--gold) 45%, #d99f23 100%);
  color: var(--ink-on-gold);
  text-align: center;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.cta-band .cta-eyebrow {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.75; margin-bottom: 0.9rem;
}
.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: clamp(2rem, 6.5vw, 3.4rem); letter-spacing: 0.04em; line-height: 1.05;
}
.cta-phone {
  display: inline-block; margin-top: 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 10vw, 5rem); line-height: 1;
  color: var(--ink-on-gold); text-decoration: none;
  border-bottom: 3px solid rgba(23, 18, 4, 0.35);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.cta-phone:hover { transform: scale(1.03); border-color: var(--ink-on-gold); }
.cta-sub { margin-top: 1.2rem; font-size: 0.85rem; font-weight: 600; opacity: 0.8; }

/* ── Unterseiten-Header ── */
.page-head {
  position: relative; z-index: 1;
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 5.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}
.page-head .lead { margin-top: 1.2rem; }

/* ── Leistungen Detail ── */
.service-detail { scroll-margin-top: calc(var(--header-h) + 20px); }
.service-detail + .service-detail { border-top: 1px solid var(--line-soft); }
.sd-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.sd-head { display: flex; align-items: flex-start; gap: 1.3rem; }
.sd-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid var(--line); color: var(--gold);
}
.sd-icon svg { width: 26px; height: 26px; }
.sd-kicker {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1;
  color: rgba(232, 179, 60, 0.14);
}
.sd-grid h2 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: clamp(1.9rem, 6vw, 2.7rem); letter-spacing: 0.045em; line-height: 1.05;
}
.sd-grid > div > p { font-size: 0.92rem; color: var(--muted); line-height: 1.95; margin-top: 1.1rem; }
.sd-list { list-style: none; display: grid; gap: 0.85rem; }
.sd-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}
.sd-list li svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }
.sd-list li strong { color: var(--cream); font-weight: 600; }
.sd-box {
  margin-top: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--gold-dim); padding: 1.4rem 1.5rem;
}
.sd-box h4 {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.sd-box p { font-size: 0.84rem; color: var(--muted); line-height: 1.85; }
.sd-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.9rem; }

/* ── FAQ ── */
.faq { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0.2rem;
  font-size: 0.95rem; font-weight: 600; color: var(--cream);
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-2); }
.faq-item summary .faq-x {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: transform 0.3s var(--ease), background 0.25s;
}
.faq-item summary .faq-x svg { width: 14px; height: 14px; }
.faq-item[open] summary { color: var(--gold-2); }
.faq-item[open] summary .faq-x { transform: rotate(45deg); background: var(--gold-dim); }
.faq-item .faq-a { padding: 0 0.2rem 1.5rem; font-size: 0.88rem; color: var(--muted); line-height: 1.9; max-width: 62ch; }
.faq-item .faq-a a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--line); }

/* ── Kontakt ── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { background: var(--bg-2); padding: 2rem 1.7rem; }
.contact-card .cc-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border: 1px solid var(--line);
  color: var(--gold); margin-bottom: 1.1rem;
}
.contact-card .cc-icon svg { width: 20px; height: 20px; }
.contact-card h3 {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.5rem;
}
.contact-card .cc-main { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.04em; line-height: 1.15; color: var(--cream); }
.contact-card a.cc-main { text-decoration: none; transition: color 0.2s; display: inline-block; }
.contact-card a.cc-main:hover { color: var(--gold-2); }
.contact-card p { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }

/* ── Formular ── */
.form-wrap {
  border: 1px solid var(--line); border-radius: 6px;
  background: var(--bg-2); padding: clamp(1.6rem, 5vw, 3rem);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
input, select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 0.9rem 1rem; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 350;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  color-scheme: dark;
}
input::placeholder, textarea::placeholder { color: rgba(168, 165, 155, 0.45); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); background: rgba(232, 179, 60, 0.04);
  box-shadow: 0 0 0 3px rgba(232, 179, 60, 0.09);
}
select option { background: var(--bg-2); color: var(--cream); }
textarea { resize: vertical; min-height: 110px; }
.form-consent { display: flex; gap: 0.75rem; align-items: flex-start; margin-top: 1.5rem; }
.form-consent input { width: 17px; height: 17px; margin-top: 0.2rem; accent-color: var(--gold); flex-shrink: 0; }
.form-consent label { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }
.form-consent a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--line); }
.submit-btn {
  width: 100%; margin-top: 1.6rem;
  background: var(--gold); color: var(--ink-on-gold); border: none;
  padding: 1.15rem; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.submit-btn:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232, 179, 60, 0.22); }
.submit-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.form-msg { display: none; margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.87rem; text-align: center; }
.form-msg.ok { display: block; background: var(--gold-dim); border: 1px solid var(--line); color: var(--gold-2); }
.form-msg.err { display: block; background: rgba(220, 80, 60, 0.08); border: 1px solid rgba(220, 80, 60, 0.35); color: #e89684; }
.form-note { margin-top: 1.3rem; font-size: 0.78rem; color: var(--muted-2); display: flex; gap: 0.55rem; align-items: flex-start; }
.form-note svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Rechtstexte ── */
.legal { max-width: 760px; }
.legal h2 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: 1.6rem; letter-spacing: 0.05em; color: var(--gold-2);
  margin: 2.6rem 0 0.8rem;
}
.legal h3 { font-size: 0.95rem; font-weight: 700; color: var(--cream); margin: 1.8rem 0 0.5rem; }
.legal p, .legal li { font-size: 0.9rem; color: var(--muted); line-height: 1.95; }
.legal ul { padding-left: 1.3rem; margin: 0.6rem 0; }
.legal a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.legal .legal-meta { font-size: 0.78rem; color: var(--muted-2); margin-top: 0.4rem; }

/* ── Footer ── */
.site-footer {
  position: relative; z-index: 1;
  background: var(--bg-footer);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.6rem;
  padding-block: clamp(3rem, 7vw, 4.5rem);
}
.footer-brand img { width: 150px; height: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 32ch; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.65rem; }
.footer-col a {
  color: var(--muted); text-decoration: none; font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-2); }
.footer-col a strong { color: var(--cream); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem;
  align-items: center; justify-content: space-between;
  font-size: 0.74rem; color: var(--muted-2); letter-spacing: 0.05em;
}
.footer-bottom a { color: var(--muted-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Mobile Anruf-Leiste ── */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0.7rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(9, 9, 11, 0.9);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.callbar .btn { padding: 0.85rem 0.6rem; font-size: 0.74rem; }

/* ── Scroll-Reveal ── */
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.visible {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js .reveal.d1.visible { transition-delay: 0.08s; }
html.js .reveal.d2.visible { transition-delay: 0.16s; }
html.js .reveal.d3.visible { transition-delay: 0.24s; }

/* ── 404 ── */
.err-hero { min-height: 80svh; display: flex; align-items: center; text-align: center; }
.err-hero .display { font-size: clamp(5rem, 22vw, 11rem); color: var(--gold); line-height: 1; }

/* ============================================================
   TABLET ≥ 720px
   ============================================================ */
@media (min-width: 720px) {
  :root { --header-h: 72px; }
  body { padding-bottom: 0; }
  .callbar { display: none; }
  .btn-nav .nav-phone-txt { display: inline; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .step { padding-left: 0; padding-top: 4.6rem; }
  .step-num { top: 0; left: 0; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .sd-grid { grid-template-columns: 5fr 6fr; gap: 3.5rem; align-items: start; }
  .sd-grid .sd-side { padding-top: 0.4rem; }
  .area-grid { grid-template-columns: 3fr 2fr; align-items: start; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-group.full { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   DESKTOP ≥ 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 2.4rem; }
  .nav-desktop a {
    position: relative;
    color: var(--muted); text-decoration: none;
    font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    transition: color 0.25s;
    padding: 0.3rem 0;
  }
  .nav-desktop a::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s var(--ease);
  }
  .nav-desktop a:hover { color: var(--gold-2); }
  .nav-desktop a:hover::after { width: 100%; }
  .nav-desktop a.active { color: var(--gold); }
  .nav-desktop a.active::after { width: 100%; }
  .hamburger { display: none; }

  .hero-grid { grid-template-columns: 7fr 5fr; gap: 2rem; }
  .hero-art { order: 2; justify-content: flex-end; }
  .hero-art img { width: min(38vw, 520px); }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1.15fr 1fr; gap: 5rem; }
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Reduzierte Bewegung ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
