@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap");

/* Basisreset (verving Tailwind-preflight) */
*,::before,::after{box-sizing:border-box;border:0 solid}
html{-webkit-text-size-adjust:100%}
body{margin:0;line-height:inherit}
h1,h2,h3,h4,p,figure,blockquote,ul,ol{margin:0}
ul,ol{list-style:none;padding:0}
a{color:inherit;text-decoration:inherit}
button,input,select,textarea{font:inherit;color:inherit;background:transparent}
img,svg,video,iframe{display:block;vertical-align:middle}
img,video{max-width:100%;height:auto}

:root {
  --nka-bg: #0e1114;
  --nka-steel-1: #1b2026;
  --nka-steel-2: #2a3038;
  --nka-rvs: #c9ced4;
  --nka-muted: #9aa3ac;
  --nka-text: #edeff1;
  --nka-red: #d2373c;
  --nka-red-deep: #a72228;
  --nka-lcd: #4ea3ff;
  --shaft-y: 0px;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

.nka-site {
  background: var(--nka-bg);
  color: var(--nka-text);
  font-family: var(--font-body);
  position: relative;
  overflow-x: clip;
}

.nka-site ::selection {
  background: var(--nka-red);
  color: #fff;
}

/* ---------- Schachtwand (vaste achtergrond, beweegt mee met scroll) ---------- */

.shaft {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* verdiepingsnaden + betonplaten */
.shaft-wall {
  position: absolute;
  inset: -120vh 0;
  transform: translateY(var(--shaft-y));
  will-change: transform;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 46vh,
      rgba(0, 0, 0, 0.55) 46vh,
      rgba(0, 0, 0, 0.55) calc(46vh + 3px),
      rgba(255, 255, 255, 0.045) calc(46vh + 3px),
      rgba(255, 255, 255, 0.045) calc(46vh + 4px),
      transparent calc(46vh + 4px),
      transparent 48vh
    ),
    linear-gradient(90deg, #101318 0%, #14181d 18%, #171b21 50%, #14181d 82%, #101318 100%);
}

/* geleiderails links en rechts */
.shaft-rail {
  position: absolute;
  top: -120vh;
  bottom: -120vh;
  width: 14px;
  transform: translateY(calc(var(--shaft-y) * 1.35));
  will-change: transform;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.1) 0,
      rgba(255, 255, 255, 0.1) 2px,
      transparent 2px,
      transparent 90px
    ),
    linear-gradient(90deg, #22272e, #3a414b 45%, #565e69 50%, #3a414b 55%, #22272e);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
}

.shaft-rail.left { left: clamp(8px, 2.5vw, 42px); }
.shaft-rail.right { right: clamp(8px, 2.5vw, 42px); }

/* staalkabels */
.shaft-cables {
  position: absolute;
  top: -120vh;
  bottom: -120vh;
  left: 50%;
  width: 220px;
  margin-left: -110px;
  transform: translateY(calc(var(--shaft-y) * 2.2));
  will-change: transform;
  opacity: 0.5;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.14) 0,
      rgba(255, 255, 255, 0.14) 3px,
      rgba(255, 255, 255, 0.03) 3px,
      rgba(255, 255, 255, 0.03) 26px
    );
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0 44px, #000 44px 50px, transparent 50px 86px,
    #000 86px 92px, transparent 92px 128px, #000 128px 134px,
    transparent 134px 170px, #000 170px 176px, transparent 176px
  );
  mask: linear-gradient(
    90deg,
    transparent 0 44px, #000 44px 50px, transparent 50px 86px,
    #000 86px 92px, transparent 92px 128px, #000 128px 134px,
    transparent 134px 170px, #000 170px 176px, transparent 176px
  );
}

/* contragewicht: schuift tegen de scroll in omhoog */
.shaft-weight {
  position: absolute;
  top: 30vh;
  right: clamp(20px, 3.4vw, 58px);
  width: 30px;
  height: 150px;
  border-radius: 3px;
  transform: translateY(calc(var(--shaft-y) * -1.6));
  will-change: transform;
  background:
    repeating-linear-gradient(
      to bottom,
      #2c323a 0,
      #2c323a 22px,
      #171b20 22px,
      #171b20 26px
    );
  border: 1px solid #3c434d;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

/* vignet zodat tekst leesbaar blijft */
.shaft-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(8, 10, 12, 0.75) 100%),
    linear-gradient(to bottom, rgba(8, 10, 12, 0.5), transparent 18%, transparent 82%, rgba(8, 10, 12, 0.6));
}

/* ---------- LCD-verdiepingsdisplay (vast, rechtsboven) ---------- */

.lift-hud {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #23282f, #171b20);
  border: 1px solid #3a414b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.55);
}

.lift-hud-screen {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #06162c;
  border: 1px solid #0c2a52;
  box-shadow: inset 0 0 18px rgba(78, 163, 255, 0.25);
  font-family: var(--font-mono);
  color: var(--nka-lcd);
  text-shadow: 0 0 10px rgba(78, 163, 255, 0.8);
}

.lift-hud-floor {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  min-width: 34px;
  text-align: center;
}

.lift-hud-arrow {
  font-size: 15px;
  line-height: 1;
  opacity: 0.35;
}

.lift-hud.is-moving .lift-hud-arrow.active {
  opacity: 1;
  animation: hud-blink 0.5s steps(2, start) infinite;
}

@keyframes hud-blink {
  to { opacity: 0.25; }
}

.lift-hud-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--nka-muted);
  text-transform: uppercase;
}

/* ding-puls wanneer je een verdieping bereikt */
.lift-hud-ding {
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  border: 1px solid rgba(78, 163, 255, 0);
  pointer-events: none;
}

.lift-hud.dinged .lift-hud-ding {
  animation: ding-ring 0.9s ease-out 1;
}

@keyframes ding-ring {
  0% { border-color: rgba(78, 163, 255, 0.9); transform: scale(1); opacity: 1; }
  100% { border-color: rgba(78, 163, 255, 0); transform: scale(1.18); opacity: 0; }
}

/* ---------- Drukknoppenpaneel (vaste navigatie links) ---------- */

.lift-panel {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 12px;
  border-radius: 10px;
  background: linear-gradient(160deg, #b9bec5, #878d96 30%, #a7adb5 60%, #6f757e);
  border: 1px solid #565d66;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.lift-panel-logo {
  width: 46px;
  height: auto;
  margin-bottom: 2px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
}

.lift-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid #4a5058;
  background: linear-gradient(180deg, #31373f, #22272d);
  color: #d6dae0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.12s ease, color 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 3px 6px rgba(0, 0, 0, 0.45);
}

.lift-btn:hover {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 0 18px rgba(255, 255, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lift-btn:active { transform: scale(0.94); }

.lift-btn.active {
  color: #ffffff;
  border-color: #e8ecf0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 0 0 22px rgba(255, 255, 255, 0.55),
    inset 0 0 14px rgba(255, 255, 255, 0.18);
}

.lift-btn-name {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translate(-6px, -50%);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nka-text);
  background: rgba(14, 17, 20, 0.92);
  border: 1px solid #3a414b;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lift-btn:hover .lift-btn-name {
  opacity: 1;
  transform: translate(0, -50%);
}

/* ---------- Verdiepingen + deuren ---------- */

.floor {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.floor-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(90px, 12vh, 140px) clamp(20px, 6vw, 64px);
  position: relative;
  z-index: 2;
}

/* deurbladen: alleen transforms, screenshot-safe */
.door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #262c33 0%, #1d2228 40%, #262c33 70%, #171b20 100%);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.45);
  transition: transform 1.15s cubic-bezier(0.77, 0, 0.18, 1);
}

.door.left { left: 0; border-right: 3px solid #0a0c0e; }
.door.right { right: 0; border-left: 3px solid #0a0c0e; }

.floor.doors-open .door.left { transform: translateX(-102%); }
.floor.doors-open .door.right { transform: translateX(102%); }

/* groot verdiepingsnummer als watermerk in de schachtwand */
.floor-num {
  position: absolute;
  right: clamp(10px, 6vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 34vw, 460px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

/* verdiepingsplaatje (gegraveerd bordje, geen tekst-eyebrow) */
.floor-plate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2b3036;
  background: linear-gradient(160deg, #d7dbe0, #aab0b8);
  border: 1px solid #7c828b;
  border-radius: 4px;
  padding: 7px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.floor-plate .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nka-red);
  box-shadow: 0 0 6px rgba(210, 55, 60, 0.9);
}

/* ---------- Typografie ---------- */

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.h-sub {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- CTA's, elk met eigen identiteit ---------- */

/* 1. ronde rode alarmknop (bellen) */
.cta-alarm {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--nka-text);
}

.cta-alarm .ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #ff6a6e, var(--nka-red) 55%, var(--nka-red-deep));
  border: 3px solid #7c1a1e;
  box-shadow: 0 0 0 4px #23282f, 0 0 0 5px #4a5058, 0 10px 26px rgba(210, 55, 60, 0.45);
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}

.cta-alarm:hover .ring {
  box-shadow: 0 0 0 4px #23282f, 0 0 0 5px #4a5058, 0 0 30px rgba(210, 55, 60, 0.9);
}

.cta-alarm:active .ring { transform: scale(0.93); }

.cta-alarm .ring svg { width: 26px; height: 26px; }

.cta-alarm .lbl {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.cta-alarm .lbl b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cta-alarm .lbl span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nka-muted);
}

/* 2. vierkante backlit liftknop (offerte) */
.cta-liftbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 26px;
  border-radius: 12px;
  border: 2px solid #5a616a;
  background: linear-gradient(180deg, #343b43, #23282e);
  color: #f2f4f6;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease, transform 0.12s ease;
}

.cta-liftbtn:hover {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.75), 0 0 26px rgba(255, 255, 255, 0.4),
    inset 0 0 16px rgba(255, 255, 255, 0.12);
}

.cta-liftbtn:active { transform: scale(0.96); }

/* 3. WhatsApp RVS-chip met status-LED */
.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #20262c;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(160deg, #dfe3e8, #b3b9c1);
  border: 1px solid #868d96;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 4px 12px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}

.cta-wa:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 20px rgba(0,0,0,0.5); }

.cta-wa .led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2fbf5f;
  box-shadow: 0 0 8px rgba(47, 191, 95, 0.9);
  animation: led-pulse 2s ease-in-out infinite;
}

@keyframes led-pulse {
  50% { box-shadow: 0 0 2px rgba(47, 191, 95, 0.4); }
}

/* ---------- Dienstenpaneel ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.svc {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1f242b, #171b20);
  border: 1px solid #333a43;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.svc:hover {
  border-color: #8a9099;
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 24px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.svc .ico {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #f0f2f4;
  background: linear-gradient(180deg, #303740, #22272d);
  border: 1px solid #4a5159;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.svc:hover .ico { color: var(--nka-red); }

.svc .ico svg { width: 22px; height: 22px; }

.svc h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.svc p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--nka-muted);
}

.svc .num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #4d545d;
}

/* ---------- Projecten / reviews ---------- */

.shot {
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 1px solid #333a43;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.crop-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nka-muted);
  margin-top: 8px;
}

/* ---------- Voor & na: modernisering ---------- */

.vn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 760px;
  margin-bottom: 46px;
}

.vn-item {
  position: relative;
  margin: 0;
}

.vn-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #333a43;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vn-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.vn-badge.voor { background: #5a616a; }
.vn-badge.na { background: var(--nka-red); }

.review {
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1f242b, #171b20);
  border: 1px solid #333a43;
}

.review .stars { color: #f5b942; letter-spacing: 2px; font-size: 14px; }

.review p {
  margin: 10px 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #cfd4da;
}

.review footer {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nka-muted);
}

/* ---------- Onderhoudscontract-strip ---------- */

.contract-strip {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border-radius: 14px;
  background: linear-gradient(160deg, #262c34, #171b20);
  border: 1px solid #3c434d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.45);
}

.contract-strip h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.contract-strip p {
  font-size: 15px;
  color: var(--nka-muted);
  max-width: 520px;
  line-height: 1.55;
}

/* ---------- Storingsbalk (spoed) ---------- */

.storing-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: 14px;
  margin-bottom: 30px;
  background: linear-gradient(160deg, #7c1a1e, #a72228 55%, #8e1d22);
  border: 1px solid #d2373c;
  box-shadow: 0 18px 50px rgba(167, 34, 40, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.storing-bar .txt b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
}

.storing-bar .txt span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.storing-bar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  background: #fff;
  color: #8e1d22;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}

.storing-bar a:hover { transform: translateY(-2px); }

/* ---------- Kaart ---------- */

.map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #333a43;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  margin-top: 22px;
  background: #14181d;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(35%) contrast(0.95);
}

/* ---------- Offerteformulier ---------- */

.nka-form {
  padding: 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1f242b, #14181d);
  border: 1px solid #333a43;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 14px;
}

.nka-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ff { display: grid; gap: 6px; }

.ff label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nka-muted);
}

.ff input,
.ff select,
.ff textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #3c434d;
  background: #101319;
  color: var(--nka-text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--nka-red);
  box-shadow: 0 0 0 3px rgba(210, 55, 60, 0.25);
}

.ff textarea { min-height: 96px; resize: vertical; }

.ff-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--nka-muted);
  cursor: pointer;
}

.ff-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--nka-red);
  cursor: pointer;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #4d545d;
  line-height: 1.5;
}

/* ---------- Contact ---------- */

.contact-card {
  border-radius: 14px;
  background: linear-gradient(180deg, #1f242b, #14181d);
  border: 1px solid #333a43;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.contact-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #262c33;
}

.contact-row:last-child { border-bottom: 0; }

.contact-row .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nka-muted);
  width: 92px;
  flex: none;
}

.contact-row .v {
  font-size: 17px;
  color: var(--nka-text);
  text-decoration: none;
}

a.v:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Reduced motion: alles statisch, deuren open ---------- */

@media (prefers-reduced-motion: reduce) {
  .shaft-wall, .shaft-rail, .shaft-cables, .shaft-weight { transform: none !important; }
  .door { transition: none; }
  .floor .door.left { transform: translateX(-102%); }
  .floor .door.right { transform: translateX(102%); }
  .lift-hud.is-moving .lift-hud-arrow.active,
  .cta-wa .led,
  .lift-hud.dinged .lift-hud-ding { animation: none; }
}

/* ---------- Responsief ---------- */

@media (max-width: 900px) {
  .lift-panel {
    left: 50%;
    top: auto;
    bottom: 14px;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 10px 14px;
    gap: 10px;
  }
  .lift-panel-logo { display: none; }
  .lift-btn { width: 40px; height: 40px; font-size: 12px; }
  .lift-btn-name { display: none; }
  .floor-num { font-size: clamp(140px, 40vw, 240px); opacity: 0.7; }
  .shaft-cables { display: none; }
}
