/* ============================================================
   Sepp Security Services UG (haftungsbeschränkt)
   Design system: "Watch & Perimeter"
   Dark, authoritative. Signature = corner-bracket reticle
   framing, hairline perimeter lines, mono monitoring labels.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg:          #0B1018;   /* deep navy-black base */
  --bg-2:        #0E1420;
  --surface:     #121A26;   /* card */
  --surface-2:   #17202F;   /* raised card */
  --line:        rgba(232, 236, 243, 0.09);
  --line-strong: rgba(232, 236, 243, 0.18);

  --text:        #E7ECF3;   /* headings / on dark */
  --body:        #C2CBD8;   /* body text */
  --muted:       #8A97AB;   /* captions, meta */

  --accent:      #E3A54B;   /* signal amber */
  --accent-2:    #F2C079;
  --accent-soft: rgba(227, 165, 75, 0.14);
  --accent-line: rgba(227, 165, 75, 0.42);

  --steel:       #5B7FA6;   /* cool secondary */

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #10151d; }

/* ---------- Background texture: faint perimeter grid ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
  opacity: 0.5;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: clamp(72px, 11vw, 148px); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(52px, 7vw, 92px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent-line);
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.9vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { max-width: 68ch; }
strong { color: var(--text); font-weight: 600; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--text); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--accent);
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.5em;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #10151d;
  background: var(--bg-btn);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(227,165,75,.5); }
.btn:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.btn--ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,.04); border-color: var(--accent); color: var(--text); box-shadow: none; transform: translateY(-2px); }
.btn .ico { transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 16, 24, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 1.02rem; letter-spacing: -0.01em; }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  border: 1.5px solid var(--accent);
  border-radius: 3px;
  display: grid; place-items: center;
  position: relative;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
}
.brand__mark::before, .brand__mark::after {
  content: ""; position: absolute; width: 6px; height: 6px; border: 1.5px solid var(--accent);
}
.brand__mark::before { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.brand__mark::after { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }
.brand small { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--muted); font-weight: 400; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  display: inline-block; padding: 9px 14px;
  font-size: 0.92rem; color: var(--body);
  border-radius: var(--radius);
  transition: color .25s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { margin-left: 10px; }

.nav__toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: var(--radius); width: 44px; height: 44px; color: var(--text); }
.nav__toggle span { display: block; width: 20px; height: 1.5px; background: currentColor; margin: 4px auto; transition: transform .3s, opacity .3s; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(130px, 20vh, 220px); padding-bottom: clamp(70px, 10vw, 130px); overflow: hidden; }
.hero__glow {
  position: absolute; z-index: 0; top: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(227,165,75,0.16), transparent 62%);
  pointer-events: none;
}
.hero__scan {
  position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
  opacity: .6;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { max-width: 15ch; }
.hero h1 .amber { color: var(--accent); }
.hero__sub { margin-top: 26px; max-width: 60ch; }
.hero__tag { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: clamp(1.1rem,1.8vw,1.5rem); margin-top: 30px; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 26px 46px; margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero__meta .stat b { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.4rem); color: var(--text); font-weight: 700; display: block; }
.hero__meta .stat span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Section headers ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 62px); }
.sec-head h2 { margin-top: 18px; }
.sec-head p { margin-top: 18px; color: var(--body); }
.sec-head--split { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: none; }
@media (min-width: 900px) {
  .sec-head--split { grid-template-columns: 1.1fr 1fr; align-items: end; gap: 40px; }
  .sec-head--split .sec-head__aside { padding-bottom: 6px; }
}

/* ---------- Reticle card (signature) ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.card::before, .card::after {
  content: ""; position: absolute; width: 13px; height: 13px;
  border: 1.5px solid var(--accent); opacity: 0;
  transition: opacity .35s var(--ease), inset .35s var(--ease);
}
.card::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.card::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--surface-2); }
.card:hover::before { opacity: 1; top: 8px; left: 8px; }
.card:hover::after { opacity: 1; bottom: 8px; right: 8px; }

.card__idx { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--accent); }
.card h3 { margin: 16px 0 12px; }
.card p { color: var(--body); font-size: 0.98rem; }
.card__link { display: inline-flex; align-items: center; gap: 0.5em; margin-top: 20px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.card__link .ico { transition: transform .3s var(--ease); }
.card:hover .card__link .ico { transform: translateX(4px); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

/* ---------- Feature / value list ---------- */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 30px; color: var(--body); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 8px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.checklist--cols { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px 30px; }

/* ---------- Split feature block ---------- */
.split { display: grid; gap: clamp(30px, 5vw, 68px); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 44px); position: relative;
}
.panel--amber { border-color: var(--accent-line); background: linear-gradient(180deg, var(--accent-soft), transparent 60%), var(--surface); }

/* ---------- Numbered process (real sequence -> numbering justified) ---------- */
.steps { display: grid; gap: 2px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { display: grid; grid-template-columns: 78px 1fr; gap: 20px; padding: 28px 26px; background: var(--surface); transition: background .3s; }
.step:hover { background: var(--surface-2); }
.step__no { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--accent); }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--body); font-size: 0.98rem; }
@media (max-width: 560px){ .step { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Service detail (leistungen) ---------- */
.svc { border-top: 1px solid var(--line); padding-block: clamp(38px, 5vw, 60px); scroll-margin-top: 96px; }
.svc__head { display: grid; gap: 18px; margin-bottom: 30px; }
@media (min-width: 900px){ .svc__head { grid-template-columns: 0.9fr 1.1fr; gap: 40px; } }
.svc__body { display: grid; gap: 34px; }
@media (min-width: 760px){ .svc__body { grid-template-columns: 1fr 1fr; } }
.subhead { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }

/* ---------- Stats band (dark overlay style) ---------- */
.band { background: var(--bg-2); border-block: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 30px; text-align: left; }
.stat-big b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4rem); color: var(--text); display: flex; align-items: baseline; gap: 4px; }
.stat-big .suf { color: var(--accent); font-size: 0.5em; }
.stat-big span { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: clamp(40px, 6vw, 76px);
}
.cta::before { content: ""; position: absolute; top: 0; right: 0; width: 40vw; height: 100%; background: radial-gradient(circle at 80% 20%, var(--accent-soft), transparent 60%); pointer-events: none; }
.cta .wrap-inner { position: relative; z-index: 1; max-width: 62ch; }
.cta__contact { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 34px; font-family: var(--font-mono); font-size: 0.92rem; }
.cta__contact a { color: var(--text); border-bottom: 1px solid var(--accent-line); padding-bottom: 2px; transition: border-color .25s; }
.cta__contact a:hover { border-color: var(--accent); }
.cta__contact .k { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; display: block; margin-bottom: 4px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; }
@media (min-width: 680px){ .form { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--bg-2); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input::placeholder, .field textarea::placeholder { color: #5d6b7f; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; grid-column: 1/-1; font-size: 0.9rem; color: var(--body); }
.checkbox input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.form__note { grid-column: 1/-1; font-size: 0.86rem; color: var(--muted); }
.form-aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,36px); align-self: start; }
.form-aside h3 { margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 22px; font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease); font-family: var(--font-body); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 26px; color: var(--body); max-width: 88ch; }

/* ---------- Simple prose (legal) ---------- */
.prose { max-width: 82ch; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: 48px; margin-bottom: 14px; }
.prose h3 { font-size: 1.15rem; margin-top: 30px; margin-bottom: 8px; }
.prose p { margin-bottom: 14px; color: var(--body); }
.prose ul { margin: 8px 0 18px; padding-left: 22px; color: var(--body); }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent-line); }
.prose strong { color: var(--text); }

/* ---------- Management / quote ---------- */
.quote { border-left: 2px solid var(--accent); padding: 6px 0 6px 28px; font-family: var(--font-display); font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.4; color: var(--text); font-weight: 500; }
.sig { margin-top: 24px; font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); }
.sig b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--text); letter-spacing: 0; margin-bottom: 2px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); position: relative; z-index: 1; }
.footer-grid { display: grid; gap: 40px; padding-block: clamp(52px, 7vw, 80px); grid-template-columns: 1fr; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 40ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--body); font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact { font-family: var(--font-mono); font-size: 0.88rem; display: grid; gap: 8px; color: var(--body); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; }
.footer-bottom p, .footer-bottom a { font-size: 0.82rem; color: var(--muted); }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; z-index: 80; left: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px); bottom: clamp(14px,3vw,28px);
  max-width: 520px;
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 24px 24px 22px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-size: 1.1rem; margin-bottom: 10px; }
.cookie p { font-size: 0.9rem; color: var(--body); }
.cookie__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cookie__btns .btn { padding: 0.7em 1.1em; font-size: 0.74rem; }
.cookie__more { background: none; border: 0; color: var(--muted); font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: underline; text-underline-offset: 3px; padding: 0.7em 0.4em; }
.cookie__settings { display: none; margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; }
.cookie.settings-open .cookie__settings { display: block; }
.cookie__row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; align-items: center; font-size: 0.88rem; }
.cookie__row span b { display: block; color: var(--text); font-weight: 600; }
.cookie__row small { color: var(--muted); }
.switch { position: relative; width: 42px; height: 24px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 20px; transition: background .25s; }
.switch .track::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--text); border-radius: 50%; transition: transform .25s; }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(18px); background: #10151d; }
.switch input:disabled + .track { opacity: .6; }

/* ---------- Reveal animation base (JS-driven) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.reveal-ready [data-reveal] { will-change: opacity, transform; }

/* Page hero offset for inner pages */
.page-hero { padding-top: clamp(126px, 17vh, 200px); padding-bottom: clamp(30px, 5vw, 56px); position: relative; overflow: hidden; }
.page-hero .hero__glow { max-width: 560px; max-height: 560px; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { margin-top: 22px; }

/* ---------- Responsive nav ---------- */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(11,16,24,.97); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 24px;
  }
  .nav.open .nav__links a { padding: 13px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav.open .nav__links a::after { display: none; }
  .nav.open .nav__cta { display: block; margin: 16px var(--gutter) 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
