:root {
  --bg: #06070a;
  --bg-soft: #0d1016;
  --card: #151923;
  --card-2: #f6f7f9;
  --text: #f3f5f8;
  --muted: #b7bdc9;
  --ink: #10131a;
  --ink-muted: #5d6572;
  --line: rgba(255,255,255,.12);
  --accent: #e7f0ff;
  --accent-dark: #244b7a;
  --max: 1180px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6,7,10,.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo img { height: 28px; width: auto; filter: invert(1); }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 15px; }
.nav-links a:hover { color: var(--text); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: #fff;
  color: #080a0d;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.ghost { background: transparent; color: var(--text); }
.button.dark { background: #090b10; color: #fff; border-color: #090b10; }
.button.small { min-height: 38px; padding: 8px 14px; font-size: 14px; }

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(100,154,225,.32), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(231,240,255,.18), transparent 30%),
    linear-gradient(120deg, #05060a 0%, #0f1725 54%, #141a22 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px 70px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(300px, 1.12fr);
  gap: 48px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1, .page-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: .92;
  margin: 0 0 24px;
  letter-spacing: -.07em;
}
.hero p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 620px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  transform: rotate(-1deg);
}
.hero-visual img { aspect-ratio: 4 / 3; width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  border-radius: 36px;
  pointer-events: none;
}

.section { padding: 90px 24px; }
.section.light { background: #f6f7f9; color: var(--ink); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}
.eyebrow { color: var(--accent-dark); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }
.section h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  margin: 8px 0 0;
  letter-spacing: -.045em;
}
.section.lead p, .lead { color: var(--muted); font-size: 18px; }
.light .lead, .light .muted { color: var(--ink-muted); }

.model-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: stretch;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: 0 22px 70px rgba(14,24,40,.10);
}
.model-card:nth-child(even) { grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); }
.model-card:nth-child(even) .model-media { order: 2; }
.model-media { position: relative; min-height: 430px; background: #dde3ea; }
.model-media img { width: 100%; height: 100%; object-fit: cover; }
.model-content { padding: 42px; display: flex; flex-direction: column; justify-content: center; }
.model-type { color: var(--accent-dark); font-weight: 800; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.model-content h3 { font-size: clamp(34px, 4vw, 52px); line-height: 1; margin: 10px 0 18px; letter-spacing: -.045em; }
.model-content p { color: var(--ink-muted); font-size: 17px; margin: 0 0 26px; }
.specs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0 0 26px; }
.spec { border: 1px solid #e2e6ec; border-radius: 18px; padding: 16px; background: #f9fafc; }
.spec strong { display: block; font-size: 22px; line-height: 1; margin-bottom: 6px; }
.spec span { color: var(--ink-muted); font-size: 13px; }
.model-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 22px; }
.gallery button { padding: 0; border: 0; background: transparent; cursor: pointer; border-radius: 14px; overflow: hidden; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; opacity: .88; transition: opacity .2s ease, transform .2s ease; }
.gallery button:hover img { opacity: 1; transform: scale(1.03); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.feature { border: 1px solid var(--line); border-radius: 20px; padding: 22px; background: rgba(255,255,255,.04); }
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.about-image { border-radius: var(--radius); overflow: hidden; background: #111; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.about-image img { width: 100%; object-fit: cover; }
.event-card { margin-top: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; color: var(--muted); }
.event-card strong { color: var(--text); display: block; }

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: 38px;
  align-items: start;
}
.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 22px 70px rgba(14,24,40,.10);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8dde6;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
.checks { margin: 18px 0; color: var(--ink-muted); font-size: 14px; }
.checks label { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.checks input { width: auto; min-height: auto; margin-top: 4px; }
.note { margin: 16px 0 0; color: var(--ink-muted); font-size: 13px; }

.page-hero {
  background: linear-gradient(120deg, #05060a 0%, #111b2b 100%);
  padding: 72px 24px 54px;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.legal-layout {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 22px 70px rgba(14,24,40,.10);
}
.legal-logo { max-width: 220px; margin: 0 0 30px; }
.legal-layout h2 { font-size: 28px; margin: 30px 0 10px; letter-spacing: -.02em; }
.legal-layout h3 { font-size: 20px; margin: 22px 0 8px; }
.legal-layout p, .legal-layout li { color: var(--ink-muted); }
.legal-layout a { color: var(--accent-dark); font-weight: 700; }

.site-footer { border-top: 1px solid var(--line); background: #05060a; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--text); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 96vw); max-height: 88vh; border-radius: 18px; box-shadow: 0 20px 70px rgba(0,0,0,.5); }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav { align-items: flex-start; }
  .nav-links { gap: 13px; flex-wrap: wrap; justify-content: flex-end; }
  .hero-inner, .model-card, .model-card:nth-child(even), .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .model-card:nth-child(even) .model-media { order: 0; }
  .model-media { min-height: 280px; }
  .specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .section-head { display: block; }
}
@media (max-width: 620px) {
  .nav { flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero-inner { padding-top: 56px; }
  .section { padding: 62px 18px; }
  .model-content, .form-card, .legal-layout { padding: 24px; }
  .specs, .feature-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}
.model-content .button.ghost { color: var(--ink); border-color: #d8dde6; }
.model-content .button.ghost:hover { background: #f2f4f7; }

/* v3: server-ready Vimeo hero, closer to the current live homepage structure */
.site-header-overlay {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(6, 7, 10, .36);
  border-bottom: 1px solid rgba(255,255,255,.10);
  z-index: 50;
}
.hero.hero-video {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
  background: #05070b;
}
.hero-video-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-video-bg {
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-shade {
  width: 100%;
  height: 100%;
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.64) 0%, rgba(0,0,0,.12) 36%, rgba(0,0,0,.48) 100%),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,.10), transparent 38%);
}
.hero-cta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: min(60vh, 560px);
}
.hero-cta .button {
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.hero-cta .button.ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.34);
  backdrop-filter: blur(12px);
}
.hero-cta .button.ghost:hover {
  background: rgba(255,255,255,.16);
}
#modelle {
  scroll-margin-top: 92px;
}
@media (max-width: 760px) {
  .site-header-overlay .nav {
    padding: 12px 16px;
  }
  .site-header-overlay .nav-links {
    gap: 10px;
    font-size: 14px;
  }
  .site-header-overlay .button.small {
    display: none;
  }
  .hero-cta {
    margin-top: 56vh;
    flex-direction: column;
  }
  .hero-cta .button {
    width: min(280px, calc(100vw - 40px));
  }
}
