/* =========================================================================
   L PROJEKT — Design System (stylesheet)
   Derived from _assets/design_system.html.
   Single shared stylesheet for all pages. Vanilla CSS, no build step.

   Visual language:
     • Brand blue  #164F7E  — primary actions, links, structure
     • Amber       #E8A23D  — construction accent (eyebrows, highlights)
     • Concrete neutrals on ink #231F20
     • Type: Archivo (display) · IBM Plex Sans (body) · IBM Plex Mono (data)
     • Hard-edged & geometric: small radii, pills only on controls
     • Quick, machine-precise motion
   ========================================================================= */

/* ----------------------------------------------------------------------- *
   1. Tokens
 * ----------------------------------------------------------------------- */
:root {
  /* ---- Brand blue scale ---- */
  --blue-900: #0E3354;
  --blue-800: #123F66;
  --blue-700: #164F7E;   /* PRIMARY BRAND */
  --blue-600: #1E6299;
  --blue-500: #2D77B3;
  --blue-400: #5193C7;
  --blue-300: #7FAAD0;
  --blue-200: #AEC8E0;
  --blue-100: #CFDEED;
  --blue-50:  #EAF1F8;

  /* ---- Construction amber accent ---- */
  --amber-700: #B0701A;
  --amber-600: #CE8420;
  --amber-500: #E8A23D;
  --amber-400: #F2B65C;
  --amber-100: #FBEAD0;
  --amber-50:  #FDF4E6;

  /* ---- Ink / concrete neutrals ---- */
  --ink:      #231F20;   /* brand wordmark ink */
  --gray-900: #1C1F22;
  --gray-800: #2C3136;
  --gray-700: #414950;
  --gray-600: #5A636B;
  --gray-500: #7A848C;
  --gray-400: #9BA4AC;
  --gray-300: #C2C9CE;
  --gray-200: #DDE2E6;
  --gray-150: #E6EAED;
  --gray-100: #ECEFF1;
  --gray-50:  #F4F6F8;
  --white:    #FFFFFF;

  /* ---- Semantic: brand & accent ---- */
  --brand:        var(--blue-700);
  --brand-hover:  var(--blue-800);
  --brand-active: var(--blue-900);
  --brand-tint:   var(--blue-50);
  --accent:       var(--amber-500);
  --accent-strong:var(--amber-600);
  --accent-ink:   #2A1B05;
  --accent-soft:  var(--amber-100);

  /* ---- Surfaces & text ---- */
  --bg:        var(--white);
  --bg-soft:   var(--gray-50);
  --bg-softer: #FAFBFC;
  --ink-text:  var(--ink);
  --ink-2:     var(--gray-800);
  --muted:     var(--gray-600);
  --muted-2:   var(--gray-500);
  --line:      var(--gray-200);
  --line-strong: var(--gray-300);

  /* ---- Dark surfaces (deep blue-charcoal — brand-tied) ---- */
  --dark:      #15212E;
  --dark-2:    #1D2C3C;
  --dark-line: rgba(255, 255, 255, .12);
  --on-dark:       #E9EEF3;
  --on-dark-muted: #9FB1C2;

  /* ---- Shape: hard-edged, restrained ---- */
  --radius:    10px;
  --radius-sm: 6px;
  --radius-xs: 3px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* ---- Shadow (ink-based, soft) ---- */
  --shadow-xs: 0 1px 2px rgba(28, 31, 34, .06);
  --shadow-sm: 0 1px 3px rgba(28, 31, 34, .10), 0 1px 2px rgba(28, 31, 34, .06);
  --shadow-md: 0 14px 34px -16px rgba(28, 31, 34, .26), 0 2px 6px rgba(28, 31, 34, .06);
  --shadow-lg: 0 30px 64px -28px rgba(20, 38, 56, .42), 0 6px 14px rgba(28, 31, 34, .08);
  --shadow-brand: 0 14px 28px -12px rgba(22, 79, 126, .55);
  --shadow-accent: 0 14px 28px -12px rgba(206, 132, 32, .55);

  /* ---- Layout ---- */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  /* ---- Type ---- */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* ---- Motion: quick, machine-precise ---- */
  --ease:     cubic-bezier(.2, 0, .1, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .12s;
  --t:      .2s;
  --t-slow: .3s;
}

/* ----------------------------------------------------------------------- *
   2. Reset & base
 * ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .97rem + .2vw, 1.06rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul[class] { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-text);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
}

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ----------------------------------------------------------------------- *
   3. Layout primitives
 * ----------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(4rem, 3rem + 6vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 2.4rem + 3vw, 4.75rem); }
.section--soft { background: var(--bg-soft); }
.section--soft + .section--soft { padding-top: 0; }

.section--dark {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  isolation: isolate;
}
.section--dark::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 90% at 85% -10%, rgba(45, 119, 179, .35), transparent 60%),
    radial-gradient(50% 80% at 0% 110%, rgba(206, 132, 32, .14), transparent 60%);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.grid { display: grid; gap: clamp(1.1rem, .6rem + 1.6vw, 1.75rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 940px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------------- *
   4. Typography helpers
 * ----------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--amber-400); }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--ink-text);
  text-wrap: balance;
}

.h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); font-weight: 800; letter-spacing: -.025em; text-wrap: balance; }
.h3 { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.65rem); font-weight: 700; }

.lead {
  font-size: clamp(1.08rem, 1rem + .45vw, 1.28rem);
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
}
.section--dark .lead { color: var(--on-dark-muted); }

.section-head { max-width: 720px; }
.section-head .h2 { margin-top: .9rem; }
.section-head .lead { margin-top: 1rem; }
.section-head--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }

.text-muted { color: var(--muted); }
.accent-text { color: var(--accent-strong); }
.brand-text { color: var(--brand); }
.section--dark .accent-text { color: var(--amber-400); }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; letter-spacing: -.01em; }

/* ----------------------------------------------------------------------- *
   5. Buttons
 * ----------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brand);
  --btn-ink: #fff;
  --btn-shadow: var(--shadow-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .92rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: -.005em;
  background: var(--btn-bg);
  color: var(--btn-ink);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  box-shadow: var(--btn-shadow);
}
.btn:hover { transform: translateY(-2px); background: var(--brand-hover); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn .arrow { transition: transform var(--t) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--accent {
  --btn-bg: var(--accent);
  --btn-ink: var(--accent-ink);
  --btn-shadow: var(--shadow-accent);
}
.btn--accent:hover { background: var(--accent-strong); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--ink-text);
  --btn-shadow: none;
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--ink-text); color: #fff; border-color: var(--ink-text); }

.btn--light {
  --btn-bg: #fff;
  --btn-ink: var(--brand);
  --btn-shadow: var(--shadow-sm);
}
.btn--light:hover { background: #fff; color: var(--brand-hover); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-ink: #fff;
  --btn-shadow: none;
  border-color: rgba(255, 255, 255, .3);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .6); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.04rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--brand);
  transition: gap var(--t) var(--ease), color var(--t-fast);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.link-arrow:hover { color: var(--brand-hover); gap: .75rem; }
.link-arrow:hover svg { transform: translateX(3px); }
.section--dark .link-arrow { color: #fff; }
.section--dark .link-arrow svg { color: var(--amber-400); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

/* ----------------------------------------------------------------------- *
   6. Topbar / Header / Navigation
 * ----------------------------------------------------------------------- */
.topbar {
  background: var(--dark);
  color: var(--on-dark-muted);
  font-size: .82rem;
  border-bottom: 1px solid var(--dark-line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar a { color: var(--on-dark-muted); transition: color var(--t-fast); }
.topbar a:hover { color: #fff; }
.topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--amber-400); }
@media (max-width: 820px) { .topbar { display: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.is-stuck {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--brand);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.brand__mark img, .brand__mark svg { width: 28px; height: 28px; }
.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -.02em;
  color: var(--ink-text);
  line-height: 1;
  text-transform: uppercase;
}
.brand__text b { color: var(--brand); font-weight: 800; }
.brand__text span {
  display: block;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .24em;
  font-weight: 500;
  color: var(--muted-2);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav__menu { display: flex; align-items: center; gap: .2rem; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: .55rem .85rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--brand); background: var(--brand-tint); }
.nav__link.is-active { color: var(--brand); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.nav__actions { display: flex; align-items: center; gap: .6rem; }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav__menu,
  .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(370px, 88vw);
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.mobile-menu__close {
  width: 44px; height: 44px;
  border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm);
  font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--ink-text);
}
.mobile-menu a.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink-text);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.m-link.is-active { color: var(--brand); }
.mobile-menu a.m-link span { font-family: var(--font-mono); font-size: .85rem; color: var(--muted-2); }
.mobile-menu .btn { margin-top: 1.5rem; }
.mobile-menu__contact { margin-top: auto; padding-top: 1.5rem; font-size: .9rem; color: var(--muted); }
.mobile-menu__contact a { color: var(--ink-text); font-weight: 600; }
.mobile-menu__contact p { margin-bottom: .3rem; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 33, 46, .55);
  backdrop-filter: blur(2px);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.overlay.is-open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* ----------------------------------------------------------------------- *
   7. Hero
 * ----------------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 33, 46, .55) 0%, rgba(21, 33, 46, .9) 100%),
    linear-gradient(90deg, rgba(14, 51, 84, .9) 0%, rgba(21, 33, 46, .25) 72%);
}
.hero__inner {
  padding-block: clamp(4.5rem, 3rem + 9vw, 8.5rem);
  max-width: 780px;
}
.hero__inner .display { color: #fff; }
.hero .lead { color: rgba(255, 255, 255, .84); max-width: 580px; margin-top: 1.4rem; }
.hero .eyebrow { color: var(--amber-400); }
.hero .btn-row { margin-top: 2.2rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.6rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.4rem);
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  white-space: nowrap;
}
.hero-badge strong .suffix { color: var(--amber-400); }
.hero-badge > span { font-size: .85rem; color: rgba(255, 255, 255, .72); margin-top: .35rem; display: block; }

/* page hero (interior pages) */
.page-hero {
  position: relative;
  color: #fff;
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 33, 46, .74), rgba(14, 51, 84, .92)),
    linear-gradient(90deg, rgba(21, 33, 46, .6), rgba(21, 33, 46, .2));
}
.page-hero__inner { padding-block: clamp(3.5rem, 2.5rem + 6vw, 6rem); max-width: 780px; }
.page-hero__inner .display { color: #fff; font-size: clamp(2.2rem, 1.5rem + 3.2vw, 3.6rem); }
.page-hero .lead { color: rgba(255, 255, 255, .84); margin-top: 1.1rem; }
.page-hero .eyebrow { color: var(--amber-400); }

.crumbs {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1.3rem;
}
.crumbs a { color: rgba(255, 255, 255, .65); transition: color var(--t-fast); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--amber-400); }

/* ----------------------------------------------------------------------- *
   8. Cards
 * ----------------------------------------------------------------------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  height: 100%;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t) var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card:hover::before { transform: scaleY(1); }

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--brand-tint);
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .82rem;
  color: var(--accent-strong);
  letter-spacing: .08em;
  margin-bottom: .9rem;
}
.card .link-arrow { margin-top: 1.25rem; }

.feature-list { display: grid; gap: .8rem; margin-top: 1.4rem; }
.feature-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: .99rem;
}
.feature-list li::before {
  content: "";
  flex: none;
  margin-top: .3rem;
  width: 20px; height: 20px;
  border-radius: var(--radius-xs);
  background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23164F7E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--dark .feature-list li { color: var(--on-dark-muted); }
.section--dark .feature-list li::before {
  background-color: rgba(82, 147, 199, .22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F2B65C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------------- *
   9. Stats
 * ----------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.2rem; } }
.stat { text-align: left; padding-left: 1.1rem; border-left: 2px solid var(--line); }
.section--dark .stat { border-color: var(--dark-line); }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.3rem);
  letter-spacing: -.04em;
  color: var(--ink-text);
  line-height: 1;
  white-space: nowrap;
}
.section--dark .stat strong { color: #fff; }
.stat strong .suffix { color: var(--accent-strong); }
.section--dark .stat strong .suffix { color: var(--amber-400); }
.stat > span { display: block; margin-top: .55rem; color: var(--muted); font-size: .94rem; }
.section--dark .stat span { color: var(--on-dark-muted); }

/* ----------------------------------------------------------------------- *
   10. Split / media sections
 * ----------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--media-right { grid-template-columns: 1.05fr .95fr; }
@media (max-width: 900px) { .split, .split--media-right { grid-template-columns: 1fr; } }

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }

.media-stack { position: relative; }
.media-stack .media-frame:nth-child(2) {
  position: absolute;
  width: 46%;
  right: -6%;
  bottom: -10%;
  border: 6px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
@media (max-width: 520px) { .media-stack .media-frame:nth-child(2) { display: none; } }

.float-card {
  position: absolute;
  left: -8%;
  bottom: 8%;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 260px;
}
.float-card .fc-icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  border-radius: var(--radius-sm);
}
.float-card .fc-icon svg { width: 24px; height: 24px; }
.float-card strong { font-family: var(--font-display); display: block; color: var(--ink-text); font-size: 1.05rem; }
.float-card span { font-size: .82rem; color: var(--muted); }
@media (max-width: 900px) { .float-card { left: auto; right: 4%; } }

.prose p { margin-bottom: 1.1rem; color: var(--muted); }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { margin: 1.6rem 0 .6rem; }

/* ----------------------------------------------------------------------- *
   11. Projects
 * ----------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.5rem;
}
.filter {
  padding: .55rem 1.15rem;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter:hover { border-color: var(--brand); color: var(--brand); }
.filter.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }

.project-card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
  isolation: isolate;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.project-card:hover .project-card__img { transform: scale(1.06); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 33, 46, 0) 30%, rgba(14, 24, 35, .94) 100%);
  z-index: 1;
}
.project-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.4rem;
  color: #fff;
}
.project-card__count {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .65rem;
  background: rgba(21, 33, 46, .6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .72rem;
  color: #fff;
}
.project-card__count svg { width: 13px; height: 13px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: .3rem .7rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: .7rem;
}
.project-card h3 { color: #fff; font-size: 1.2rem; line-height: 1.18; }
.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  margin-top: .6rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .82);
}
.project-card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.project-card__meta svg { width: 14px; height: 14px; color: var(--amber-400); }
.project-card.is-hidden { display: none; }

/* ----------------------------------------------------------------------- *
   12. Lightbox (project galleries)
 * ----------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  background: rgba(13, 20, 29, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: #fff;
}
.lightbox__title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.lightbox__counter { font-family: var(--font-mono); font-size: .85rem; color: var(--on-dark-muted); margin-left: .75rem; }
.lightbox__close {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  color: #fff; cursor: pointer; font-size: 1.6rem; line-height: 1;
  transition: background var(--t-fast);
}
.lightbox__close:hover { background: rgba(255, 255, 255, .18); }
.lightbox__stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 calc(52px + clamp(.75rem, 3vw, 1.5rem) * 2) 1rem;
  min-height: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff; cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.lightbox__nav--prev { left: clamp(.75rem, 3vw, 1.5rem); }
.lightbox__nav--next { right: clamp(.75rem, 3vw, 1.5rem); }
.lightbox__nav:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__thumbs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .25rem clamp(1rem, 4vw, 2rem) 1.2rem;
  scrollbar-width: thin;
}
.lightbox__thumb {
  width: 72px; height: 54px; flex: none;
  object-fit: cover;
  border-radius: var(--radius-xs);
  opacity: .5;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity var(--t-fast), border-color var(--t-fast);
}
.lightbox__thumb:hover { opacity: .85; }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--accent); }
@media (max-width: 620px) {
  .lightbox__stage { padding: 0 0 1rem; }
  .lightbox__nav--prev { left: .5rem; }
  .lightbox__nav--next { right: .5rem; }
  .lightbox__thumbs { display: none; }
}

/* ----------------------------------------------------------------------- *
   13. CTA band
 * ----------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(120deg, var(--blue-900) 0%, var(--dark-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 1.8rem + 4vw, 4.5rem);
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px; top: -120px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(232, 162, 61, .5), transparent 62%);
}
.cta-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
          mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 760px) { .cta-band__grid { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .82); margin-top: .8rem; max-width: 540px; }

/* ----------------------------------------------------------------------- *
   14. Forms
 * ----------------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .88rem;
  margin-bottom: .45rem;
  color: var(--ink-text);
}
.field label .req { color: var(--brand); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-softer);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 119, 179, .18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-note { font-size: .82rem; color: var(--muted-2); margin-top: .4rem; }
.form-success {
  display: none;
  align-items: center;
  gap: .7rem;
  padding: 1rem 1.2rem;
  background: #E4F2EA;
  border: 1px solid #B7DEC7;
  color: #1F7A48;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  margin-top: 1rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }

/* contact info blocks */
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand);
  border-radius: var(--radius-sm);
}
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item h4 { font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: .25rem; font-weight: 500; }
.contact-item p, .contact-item a { color: var(--ink-text); font-weight: 500; }
.contact-item a:hover { color: var(--brand); }
.contact-item .mono { color: var(--ink-2); }

/* people / team table */
.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
@media (max-width: 700px) { .people { grid-template-columns: 1fr; } }
.person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.person:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.person b { font-family: var(--font-display); display: block; color: var(--ink-text); font-size: 1rem; }
.person span { font-size: .85rem; color: var(--muted); }
.person a { font-family: var(--font-mono); font-size: .82rem; color: var(--brand); font-weight: 500; white-space: nowrap; }

/* data table (legal / bank) */
.data-list { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.data-list__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.data-list__row:last-child { border-bottom: 0; }
.data-list__row:nth-child(odd) { background: var(--bg-soft); }
.data-list dt { font-weight: 500; color: var(--muted); font-size: .92rem; }
.data-list dd { color: var(--ink-text); font-weight: 500; }
.data-list dd.mono { font-size: .92rem; }
@media (max-width: 560px) {
  .data-list__row { grid-template-columns: 1fr; gap: .2rem; }
}

/* map — Google Maps embed with info card */
.map-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 480px;
}
.map-block__card {
  background: var(--ink);
  color: #fff;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.map-block__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.map-block__logo img { filter: brightness(0) invert(1); }
.map-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.map-block__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.map-block__list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .1em;
  color: var(--accent);
}
.map-block__list a { color: rgba(255,255,255,.9); text-decoration: none; }
.map-block__list a:hover { color: #fff; text-decoration: underline; }
.map-block__iframe { position: relative; }
.map-block__iframe iframe { display: block; width: 100%; height: 100%; min-height: 480px; border: 0; }
@media (max-width: 860px) {
  .map-block { grid-template-columns: 1fr; }
  .map-block__iframe iframe { min-height: 360px; }
}

/* ----------------------------------------------------------------------- *
   15. Accordion / steps / misc
 * ----------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.4rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-text);
}
.acc-trigger .pm {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.acc-trigger .pm::before,
.acc-trigger .pm::after {
  content: ""; position: absolute;
  background: var(--ink-text);
  transition: transform var(--t), background var(--t-fast);
}
.acc-trigger .pm::before { width: 13px; height: 2px; }
.acc-trigger .pm::after { width: 2px; height: 13px; }
.acc-item.is-open .pm { background: var(--brand); border-color: var(--brand); }
.acc-item.is-open .pm::before,
.acc-item.is-open .pm::after { background: #fff; }
.acc-item.is-open .pm::after { transform: scaleY(0); }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t) var(--ease);
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding-bottom: 1.4rem; color: var(--muted); max-width: 720px; }

/* steps / process */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.step:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--brand);
  line-height: 1;
}
.step:hover::before { color: var(--accent-strong); }
.step h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* values / certification pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
}
.pill svg { width: 16px; height: 16px; color: var(--brand); }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* gallery thumbs (project detail strips) */
.thumb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .75rem; }
.thumb {
  position: relative;
  border: 0; padding: 0; cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4 / 3;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease), opacity var(--t-fast); }
.thumb:hover img { transform: scale(1.06); opacity: .88; }

/* ----------------------------------------------------------------------- *
   16. Footer
 * ----------------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: var(--on-dark-muted);
  padding-top: clamp(3rem, 2.4rem + 3vw, 5rem);
  position: relative;
  isolation: isolate;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50% 60% at 100% 0%, rgba(45, 119, 179, .2), transparent 60%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-line);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { height: 40px; width: auto; margin-bottom: 1.2rem; }
.footer-about { font-size: .95rem; max-width: 320px; line-height: 1.7; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-sm);
  color: var(--on-dark-muted);
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .95rem; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; margin-bottom: .9rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--amber-400); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }

.footer-cert {
  display: inline-block;
  margin-top: 1.6rem;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.footer-cert:hover { opacity: .88; transform: translateY(-2px); }
.footer-cert img { display: block; width: min(180px, 100%); height: auto; }
@media (max-width: 540px) { .footer-col--cert .footer-cert { margin-top: 1rem; } }

.certifikati-disclaimer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.8rem;
  font-size: .85rem;
}
.footer-bottom .mono { color: var(--on-dark-muted); }
.footer-bottom a:hover { color: #fff; }

/* ----------------------------------------------------------------------- *
   17. Reveal animation
 * ----------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal, .reveal { opacity: 1 !important; transform: none !important; }
}

/* ----------------------------------------------------------------------- *
   18. Utilities
 * ----------------------------------------------------------------------- */
.mt-sm { margin-top: 1rem; }
.mt { margin-top: 1.6rem; }
.mt-lg { margin-top: 2.4rem; }
.center { text-align: center; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1200;
}
.skip-link:focus { left: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
