/* ============================================================
   JNGTech I/S — design tokens
   Scandinavian digital-studio palette: graphite dark, cool-white /
   steel-surface light, one controlled signal-blue accent used only
   for actionable elements (links, buttons, focus, one hero accent).
   Type: Space Grotesk (display) / IBM Plex Sans (body) /
   IBM Plex Mono (labels, data, technical detail only).

   NOTE: variable names below are kept stable on purpose — both
   privatlivspolitik.html and skabeloner/design-galleri.html read
   these same custom properties directly, so renaming them would
   silently break those pages. Only the values change.
   ============================================================ */

:root {
  --navy-950: #111820;   /* graphite */
  --navy-900: #171f29;
  --navy-800: #1e2733;
  --navy-700: #26313e;
  --navy-600: #384453;

  --blue-signal: #315cff;
  --blue-signal-soft: #7b9bff;

  --white: #ffffff;
  --surface: #f7f8fa;    /* cool white */
  --paper: #e9edf1;      /* steel surface */
  --paper-dim: #dde3e9;
  --ink: #111820;        /* graphite, body text on light */
  --mist: #66717d;       /* muted text on light */
  --mist-on-dark: #8b95a1;

  --line-on-light: rgba(17, 24, 32, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.14);

  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --container-w: 1240px;
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 8px;

  --space-section: 7rem;
  --space-section-sm: 4rem;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-s: 0.2s;
  --dur-m: 0.4s;
  --dur-l: 0.7s;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--blue-signal);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-s);
  z-index: 1000;
  transition: top var(--dur-s) var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--blue-signal);
  outline-offset: 3px;
}

@media (hover: hover) {
  a, button {
    outline-offset: 3px;
    transition: outline-color var(--dur-s) var(--ease), outline-offset var(--dur-s) var(--ease);
    outline: 2px solid transparent;
  }
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 760px; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* darker than --blue-signal on purpose: --blue-signal only hits ~3.9:1 on
     --paper, failing WCAG AA for small text. This shade clears 4.5:1. */
  color: #2247c9;
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--blue-signal-soft); }
.pakke-eyebrow { font-size: 0.88rem; }
.eyebrow--lg { font-size: 0.88rem; }

.section-head { max-width: 640px; }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.1vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 18ch;
  color: var(--ink);
}
.section__title--light { color: var(--white); }

.section__lede {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  color: var(--mist);
  max-width: 56ch;
}
.section__lede--light { color: var(--mist-on-dark); }
.section__lede--editorial { font-size: 1.22rem; line-height: 1.6; max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform var(--dur-s) var(--ease), background var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.btn--primary {
  background: var(--blue-signal);
  color: var(--white);
}
.btn--primary:hover { background: #2249d6; }
.btn--ghost {
  background: transparent;
  border-color: var(--line-on-dark);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--blue-signal-soft); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.3rem 0;
  border-bottom: 1px solid transparent;
  transition: padding var(--dur-s) var(--ease), background var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
}
.nav.is-scrolled {
  padding: 0.9rem 0;
  background: rgba(17, 24, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-on-dark);
}
.nav__inner {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.nav__logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav__logo-word em { color: var(--blue-signal-soft); font-style: normal; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.lang-toggle {
  height: 44px;
  padding: 0 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  color: var(--mist-on-dark);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
}
.lang-toggle:hover { color: var(--white); border-color: var(--line-on-dark); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  padding: 0;
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--dur-s) var(--ease), opacity var(--dur-s) var(--ease);
}

.nav__menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 220px;
  padding: 0.6rem;
  background: rgba(23, 31, 41, 0.98);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-m);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--dur-s) var(--ease), transform var(--dur-s) var(--ease);
}
.nav__menu a {
  color: var(--mist-on-dark);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius-s);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.nav__menu a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav__menu-cta {
  margin-top: 0.4rem;
  justify-content: center;
  color: var(--white) !important;
}

.nav.is-open .nav__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1160px) {
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    white-space: nowrap;
  }
  .nav__menu a { padding: 0; min-height: auto; }
  .nav__menu-cta {
    margin-top: 0;
    padding: 0.65rem 1.3rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.5rem 1.5rem 4.5rem;
  background: var(--navy-950);
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17, 24, 32, 0.95) 0%, rgba(17, 24, 32, 0.82) 32%, rgba(17, 24, 32, 0.4) 62%, rgba(17, 24, 32, 0.12) 100%);
  pointer-events: none;
}
.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--navy-950) 100%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
}
.hero__content { max-width: 620px; }
.hero__content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in 0.8s var(--ease) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.15s; }
.hero__content > *:nth-child(3) { animation-delay: 0.25s; }
.hero__content > *:nth-child(4) { animation-delay: 0.35s; }
.hero__content > *:nth-child(5) { animation-delay: 0.42s; }
.hero__content > *:nth-child(6) { animation-delay: 0.48s; }
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.3vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero__title-accent { color: var(--blue-signal-soft); }
.hero__lede {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--mist-on-dark);
  max-width: 46ch;
}

.hero__checker {
  margin-top: 2.6rem;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-s);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--dur-s) var(--ease);
}
.hero__checker:focus-within { border-color: var(--blue-signal); }
.hero__checker-icon {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  color: var(--mist-on-dark);
  font-size: 0.95rem;
}
.hero__checker input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  padding: 0 0.75rem;
}
.hero__checker input::placeholder { color: var(--mist-on-dark); }
.hero__checker input:focus { outline: none; }
.hero__checker .btn { border-radius: 0; padding: 0.95rem 1.5rem; }

.hero__checker-hint {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--mist-on-dark);
}

.hero__stats {
  margin-top: 2.8rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-on-dark);
}
.hero__stat { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__stat-value { display: block; white-space: nowrap; }
.hero__stat-num, .hero__stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
}
.hero__stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--mist-on-dark);
  max-width: 18ch;
}

@media (max-width: 960px) {
  .hero { padding: 7rem 1.25rem 3.5rem; }
  .hero__content { max-width: none; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(17, 24, 32, 0.55) 0%, rgba(17, 24, 32, 0.88) 70%, rgba(17, 24, 32, 0.96) 100%);
  }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: var(--space-section) 0; position: relative; }
.section--light { background: var(--paper); }
.section--dark { background: var(--navy-950); }

@media (max-width: 640px) {
  .section { padding: var(--space-section-sm) 0; }
}

/* soft fade at the top of a section instead of a hard color cut,
   used only where the background actually switches light <-> dark */
.section--fade-from-dark::before,
.section--fade-from-light::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2rem;
  pointer-events: none;
}
.section--fade-from-dark::before { background: linear-gradient(180deg, rgba(17, 24, 32, 0.55), transparent); }
.section--fade-from-light::before { background: linear-gradient(180deg, rgba(233, 237, 241, 0.55), transparent); }

#om-os {
  padding-top: 5rem;
  border-top: 1px solid var(--line-on-light);
}
.om-os-content { max-width: 780px; }

/* pakke-sektionerne (ny-hjemmeside → analyse → video) ligger ryg mod ryg
   på samme mørke baggrund — stram op så tomrummet mellem dem ikke bliver enormt,
   og hold overskrifterne i alle tre på samme afstand fra toppen af sektionen */
#ny-hjemmeside, #analyse, #video {
  padding-top: 3.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-l) var(--ease), transform var(--dur-l) var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* grouped items reveal in a cascade rather than popping in as one flat block */
.services-list .service-row:nth-child(1) { transition-delay: 0s; }
.services-list .service-row:nth-child(2) { transition-delay: 0.1s; }
.services-list .service-row:nth-child(3) { transition-delay: 0.2s; }

.process__step:nth-child(1) { transition-delay: 0s; }
.process__step:nth-child(2) { transition-delay: 0.1s; }
.process__step:nth-child(3) { transition-delay: 0.2s; }
.process__step:nth-child(4) { transition-delay: 0.3s; }

.video-showcase .video-card:nth-child(1) { transition-delay: 0s; }
.video-showcase .video-card:nth-child(2) { transition-delay: 0.15s; }

/* ---------- services / ydelser: editorial rows, not cards ---------- */
.services-list {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line-on-light);
}
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line-on-light);
  transition: background var(--dur-m) var(--ease);
}
.service-row:hover { background: rgba(17, 24, 32, 0.025); }
.service-row:hover .service-row__cta { transform: translateX(4px); }
.service-row__label { display: flex; gap: 1.1rem; align-items: flex-start; }
.service-row__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-s);
}
.service-row__icon svg { width: 20px; height: 20px; }
.service-row:nth-child(1) .service-row__icon { border-color: var(--blue-signal); color: var(--blue-signal); }
.package__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.4rem;
}
.service-row__label h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.package__desc { color: var(--mist); font-size: 1rem; max-width: 42ch; }
.package__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.package__list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.92rem;
}
.package__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--mist);
}
.service-row__cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue-signal);
  transition: transform var(--dur-s) var(--ease);
}
.service-row__cta:hover { text-decoration: underline; outline-color: transparent; }

@media (max-width: 900px) {
  .service-row { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; padding: 2.25rem 0; }
}

/* ---------- analyse ---------- */
.analyse-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  align-items: start;
}
.analyse-checklist-card { display: flex; flex-direction: column; }

/* browser-window mockup — a functional device frame around a live,
   navigable embed, not a decorative card, so it keeps its border */
.analyse-demo {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
  margin-bottom: 1.8rem;
}
.analyse-demo__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line-on-dark);
}
.analyse-demo__bar span:not(.analyse-demo__url) {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy-600);
}
.analyse-demo__url {
  margin-left: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--mist-on-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.analyse-demo__frame {
  position: relative;
  height: 520px;
  background: var(--navy-900);
}
.analyse-demo__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 640px) {
  .analyse-demo__frame { height: 580px; }
}
.analyse-checklist-card__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-on-dark);
  margin-bottom: 1.2rem;
}
.analyse-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 2rem;
}
.analyse-checklist li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
  font-size: 1.02rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.analyse-checklist li:nth-child(3),
.analyse-checklist li:last-child { border-bottom: none; }

@media (max-width: 500px) {
  .analyse-checklist {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-auto-flow: row;
  }
  .analyse-checklist li:nth-child(3) { border-bottom: 1px solid var(--line-on-dark); }
}
.analyse-checklist__mark {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--blue-signal-soft);
  color: var(--blue-signal-soft);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- editorial grid forms (shared by all lead-form instances) ---------- */
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.5rem;
}
.lead-form--gap { margin-top: 2.2rem; }
.lead-form__row { display: flex; flex-direction: column; gap: 0.55rem; }
.lead-form__row--full { grid-column: 1 / -1; }
.lead-form__row label {
  font-size: 0.82rem;
  color: var(--mist-on-dark);
  font-weight: 500;
}
.lead-form input, .lead-form textarea, .lead-form select {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line-on-dark);
  border-radius: 0;
  padding: 0.6rem 0.05rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  resize: vertical;
  transition: border-color var(--dur-s) var(--ease);
}
.lead-form select option { background: var(--navy-900); color: var(--white); }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--blue-signal);
}
.lead-form__submit { grid-column: 1 / -1; justify-self: start; margin-top: 0.6rem; }
.lead-form__note { grid-column: 1 / -1; font-size: 0.78rem; color: var(--mist-on-dark); text-align: left; }
.lead-form__success { grid-column: 1 / -1; text-align: left; color: var(--blue-signal-soft); font-size: 0.9rem; font-weight: 500; }

@media (max-width: 640px) {
  .lead-form { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- design/stil-vælger (Pakke 1) ---------- */
.style-picker { position: relative; }
.style-picker__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line-on-dark);
  border-radius: 0;
  padding: 0.6rem 0.05rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  text-align: left;
  min-height: 44px;
  transition: border-color var(--dur-s) var(--ease);
}
.style-picker__trigger:hover,
.style-picker.is-open .style-picker__trigger { border-color: var(--blue-signal); }
.style-picker__chevron {
  color: var(--mist-on-dark);
  font-size: 0.8rem;
  transition: transform var(--dur-s) var(--ease);
}
.style-picker.is-open .style-picker__chevron { transform: rotate(180deg); }

.style-picker__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0; right: 0;
  z-index: 20;
  background: rgba(23, 31, 41, 0.98);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-m);
  padding: 0.4rem;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-height: 260px;
  overflow-y: auto;
}
.style-picker__panel[hidden] { display: none; }
.style-picker__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  background: none;
  border: none;
  border-radius: var(--radius-s);
  padding: 0.7rem 0.7rem;
  min-height: 44px;
  color: var(--mist-on-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  text-align: left;
  transition: color var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.style-picker__option:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.style-picker__option.is-selected { color: var(--white); background: rgba(49, 92, 255, 0.16); }

.style-picker__preview {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-signal-soft);
}
.style-picker__preview[hidden] { display: none; }
.style-picker__preview:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .analyse-grid { grid-template-columns: minmax(0, 1fr); gap: 2.75rem; }
}

/* ---------- proces: connected timeline, not cards ---------- */
.process {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0; right: 0;
  height: 1px;
  background: var(--line-on-light);
}
.process__step { position: relative; padding-top: 2.5rem; }
.process__marker {
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  z-index: 1;
}
.process__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--ink);
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.process__step p { color: var(--mist); font-size: 0.93rem; }

@media (max-width: 1020px) {
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2.5rem; }
  .process::before { display: none; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- video showcase: bleed + asymmetric composition ---------- */
.video-showcase {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.video-card__frame {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--navy-900);
}
.video-card__frame--golf {
  background:
    radial-gradient(60% 80% at 30% 20%, rgba(49, 92, 255, 0.28), transparent 60%),
    linear-gradient(135deg, #0d2a1c 0%, var(--navy-900) 70%);
}
.video-card__frame--stay {
  background:
    radial-gradient(60% 80% at 70% 20%, rgba(49, 92, 255, 0.28), transparent 60%),
    linear-gradient(135deg, #2a1c0d 0%, var(--navy-900) 70%);
}
.video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}
.video-card__body p {
  margin-top: 0.6rem;
  color: var(--mist-on-dark);
  font-size: 0.95rem;
  max-width: 60ch;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: center;
}
.video-card .video-card__frame { aspect-ratio: 4 / 3; }

@media (max-width: 760px) {
  .video-card { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- contact ---------- */
.contact-email {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--blue-signal-soft);
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color var(--dur-s) var(--ease);
}
.contact-email:hover { border-color: var(--blue-signal-soft); }
.contact-email--lg { font-size: 1.8rem; }

.contact-meta {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--mist-on-dark);
  line-height: 1.8;
}

.section--tight { padding: 4.5rem 0; }
#kontakt { text-align: left; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line-on-dark);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
}
.footer__brand p {
  margin-top: 1rem;
  color: var(--mist-on-dark);
  font-size: 0.88rem;
  max-width: 46ch;
  line-height: 1.7;
}
.footer__meta {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--mist-on-dark);
  opacity: 0.75;
}
.footer__nav {
  align-self: end;
  justify-self: start;
}
.footer__links-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-signal-soft);
  margin-bottom: 1rem;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.9rem 2.5rem;
}
.footer__links a {
  color: var(--mist-on-dark);
  font-size: 0.9rem;
  transition: color var(--dur-s) var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--mist-on-dark);
  font-size: 0.82rem;
}
.footer__bottom a { color: var(--mist-on-dark); }
.footer__bottom a:hover { color: var(--white); }

@media (max-width: 700px) {
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer__nav { justify-self: start; margin-top: 1rem; }
}

/* ---------- legal / policy pages ---------- */
.legal { padding-top: 3rem; }
.legal__updated {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--mist);
  margin-bottom: 3rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--mist); max-width: 68ch; }
.legal p + p { margin-top: 1rem; }
.legal ul { margin-top: 1rem; max-width: 68ch; }
.legal ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--mist);
  margin-top: 0.6rem;
}
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-signal);
}
.legal a { color: var(--blue-signal); text-decoration: underline; }
.legal a:hover { color: var(--blue-signal-soft); }

/* ---------- inline arrow link ---------- */
.link-arrow {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-signal);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-s) var(--ease), color var(--dur-s) var(--ease);
}
.link-arrow:hover { border-color: var(--blue-signal); }
.link-arrow--light { color: var(--blue-signal-soft); }
.link-arrow--light:hover { border-color: var(--blue-signal-soft); }

/* ---------- cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  background: var(--navy-900);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-m);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  animation: cookie-banner-in var(--dur-m) var(--ease);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  color: var(--mist-on-dark);
  font-size: 0.92rem;
  max-width: 60ch;
  margin: 0;
}
.cookie-banner__text a { color: var(--blue-signal-soft); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner__actions .btn { padding: 0.7rem 1.3rem; font-size: 0.88rem; }

@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { animation: none; }
}

@media (max-width: 640px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
  .cookie-banner__inner { padding: 1.25rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}
