/* ===== variables.css ===== */
/* Design tokens. Every colour, space and size on the site resolves here.
   Change a value once and it moves across all pages. */

:root {
  /* ---------------------------------------------------------- brand ink */
  --color-black: #0c0d0e;
  --color-charcoal: #151719;
  --color-charcoal-soft: #202326;

  /* -------------------------------------------------------- brand accent
     Orange carries action only: CTAs, active state, markers, focus.
     Target distribution across a page is roughly
     45% warm off-white/white, 35% charcoal/black, 15% burnt orange,
     5% deep red + signal orange. */
  --color-primary: #d94f20;
  --color-primary-hover: #b93e18;
  --color-orange: #f16624;
  --color-red: #9e2a1f;

  /* -------------------------------------------------------- surfaces */
  --color-background: #f7f4f0;
  --color-surface: #ffffff;
  --color-surface-dark: #1c1f21;
  --color-surface-muted: #f1ece6;
  --color-surface-warm: #ebe4dc;

  /* ----------------------------------------------------------- text */
  --color-text: #25282b;
  --color-text-muted: #6e7378;
  --color-text-light: #f4f4f2;
  --color-text-light-muted: #a9aeb3;

  /* --------------------------------------------------------- borders */
  --color-border: #ddd8d2;
  --color-border-dark: #34383c;

  /* ------------------------------------------------------- gradients */
  --gradient-brand: linear-gradient(135deg, #9e2a1f 0%, #d94f20 48%, #f16624 100%);
  --gradient-dark: linear-gradient(135deg, #0c0d0e 0%, #151719 55%, #26201d 100%);
  --gradient-metal: linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 34%, rgba(241, 102, 36, 0.12) 100%);
  --gradient-signal: radial-gradient(circle at 80% 12%, rgba(241, 102, 36, 0.25), transparent 36%);

  /* A hairline technical grid. Used at low opacity behind dark sections
     as a texture, never as a foreground element. */
  --grid-line: rgba(255, 255, 255, 0.045);

  /* ----------------------------------------------------- typography */
  /* Native Apple/system sans stack: SF Pro on Apple devices, Helvetica Neue
     elsewhere where available. One family across UI and editorial copy keeps
     the entire interface intentionally calm and premium. */
  --font-heading: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Fluid type: clamps to a comfortable line length on every viewport
     without a single media query. */
  --fs-h1: clamp(2.125rem, 1.55rem + 2.55vw, 3.5rem);
  --fs-h2: clamp(1.625rem, 1.35rem + 1.2vw, 2.25rem);
  --fs-h3: clamp(1.125rem, 1.05rem + 0.3vw, 1.3125rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --fs-body: 1rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  --lh-tight: 1.12;
  --lh-heading: 1.22;
  --lh-body: 1.65;

  --tracking-tight: -0.02em;
  --tracking-eyebrow: 0.14em;

  /* --------------------------------------------------------- spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --section-y: clamp(4.5rem, 3rem + 5vw, 7.5rem);
  --container: 1280px;
  --container-narrow: 760px;
  --gutter: clamp(1.125rem, 0.75rem + 1.6vw, 2rem);

  /* --------------------------------------------------------- shape */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(12, 13, 14, 0.06);
  --shadow: 0 14px 32px -18px rgba(12, 13, 14, 0.26);
  --shadow-lg: 0 28px 70px -24px rgba(12, 13, 14, 0.42);
  --shadow-card: 0 20px 50px -30px rgba(12, 13, 14, 0.45);

  --header-h: 64px;
  --header-h-mobile: 60px;

  /* ------------------------------------------------------- motion
     160-260ms. Long enough to read as intentional, short enough that it
     never sits between the user and the next click. */
  --dur-fast: 160ms;
  --dur: 200ms;
  --dur-slow: 260ms;
  --ease: cubic-bezier(0.2, 0.6, 0.25, 1);

  --z-header: 100;
  --z-dropdown: 110;
  --z-sticky: 90;
  --z-skip: 200;
}


/* ===== base.css ===== */
/* Reset + element defaults. */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor targets clear the sticky header instead of hiding behind it. */
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-tight);
  color: var(--color-charcoal);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--space-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--color-primary-hover); }

ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25rem; }
li { margin-bottom: var(--space-2); }

strong { font-weight: 600; color: var(--color-charcoal); }

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button { font: inherit; color: inherit; }

hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: var(--space-6) 0;
}

/* --------------------------------------------------------------- focus
   A visible, high-contrast ring on keyboard focus only. Never remove it. */
:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ------------------------------------------------------------ skip link */
.skip {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-skip);
  padding: var(--space-3) var(--space-5);
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top var(--dur) var(--ease);
}
.skip:focus { top: 0; color: #fff; }

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

/* -------------------------------------------------------- reduced motion
   Respect the OS setting: no transforms, no smooth scroll, no reveals. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------------------- reveal
   A 14px fade-up on scroll. Elements are visible by default and only
   hidden once JS confirms it can animate them, so no-JS never hides copy. */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease) var(--reveal-delay, 0ms), transform var(--dur-slow) var(--ease) var(--reveal-delay, 0ms);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

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


/* ===== layouts.css ===== */
/* Containers, sections, grids. */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------------------------------------------- section */

.section {
  padding-block: var(--section-y);
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.section--light { background: var(--color-background); }
.section--surface { background: var(--color-surface); }
.section--muted { background: var(--color-surface-muted); }

/* A restrained editorial texture makes consecutive content sections feel
   intentionally composed without competing with the copy. */
.section--light::before,
.section--surface::before,
.section--muted::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.section--light::before {
  background:
    radial-gradient(circle at 88% 12%, rgba(241, 102, 36, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(12, 13, 14, 0.035) 1px, transparent 1px);
  background-size: auto, 96px 96px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, transparent);
}
.section--surface::before {
  background: radial-gradient(circle at 7% 18%, rgba(217, 79, 32, 0.065), transparent 20rem);
}
.section--muted::before {
  background:
    linear-gradient(rgba(12, 13, 14, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 13, 14, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.6;
}

.section--dark,
.section--brand {
  background: var(--color-charcoal);
  color: var(--color-text-light);
}

/* The hairline technical grid: texture behind dark sections only. */
.section--dark::before,
.section--brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.section--brand { background: var(--gradient-dark); }

.section--brand::after,
.section--dark::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: min(44vw, 40rem);
  aspect-ratio: 1;
  right: -14rem;
  top: -18rem;
  border: 1px solid rgba(241, 102, 36, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(241, 102, 36, 0.025), 0 0 0 9rem rgba(241, 102, 36, 0.02);
}

.section .container { position: relative; z-index: 1; }

.section--dark h2, .section--dark h3,
.section--brand h2, .section--brand h3 { color: #fff; }

.section--dark p, .section--brand p { color: var(--color-text-light-muted); }
.section--dark strong, .section--brand strong { color: #fff; }

/* -------------------------------------------------------- section head */

.section__head {
  max-width: 62ch;
  margin-bottom: var(--space-7);
  position: relative;
}
.section__head h2 { margin-bottom: var(--space-3); }
.section__head::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 2px;
  margin-top: var(--space-5);
  background: var(--gradient-brand);
}

.section__intro {
  font-size: var(--fs-lead);
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.section--dark .section__intro,
.section--brand .section__intro { color: var(--color-text-light-muted); }

.eyebrow {
  margin: 0 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
/* Short orange rule leading the eyebrow -- the one recurring brand mark. */
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-primary);
  flex: none;
}
.eyebrow--onDark { color: var(--color-orange); }
.eyebrow--onDark::before { background: var(--color-orange); }

/* ---------------------------------------------------------------- grid */

.grid {
  display: grid;
  gap: var(--space-5);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------- split */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: start;
}

/* --------------------------------------------------------------- prose */

.prose { max-width: 68ch; }
.prose h3 { margin-top: var(--space-6); }
.prose p { color: var(--color-text); }
.section--dark .prose p { color: var(--color-text-light-muted); }

.prose__ul, .prose__ol {
  margin-bottom: var(--space-5);
  padding-left: 1.1rem;
}
.prose__ul { list-style: none; padding-left: 0; }
.prose__ul li {
  position: relative;
  padding-left: 1.6rem;
}
/* Precise circular marker instead of a bullet -- reads as a status dot. */
.prose__ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
}
.prose__ol li::marker {
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-heading);
}

.split__main { max-width: none; }


/* ===== components.css ===== */
/* Reusable pieces: buttons, header, nav, cards, FAQ, footer. */

/* ------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  /* 48px min target: comfortable on touch without looking oversized. */
  min-height: 48px;
  padding: 0.75rem 1.375rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.btn__arrow {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(2px); }

.btn__partner-logo {
  width: 18px;
  height: 16px;
  flex: none;
  object-fit: contain;
}

.btn--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* Secondary on dark surfaces. */
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-1px);
}

/* Secondary on light surfaces. */
.btn--outline {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.section__head + .btn-row { margin-top: 0; }

/* -------------------------------------------------------------- logo */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo__mark { width: 34px; height: 34px; flex: none; color: var(--color-primary); }
.logo__word {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: 0.02em;
}
.logo__balkan {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-light-muted);
}
.logo__technician {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 3px;
}

/* -------------------------------------------------------- site header */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(15, 17, 18, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: background var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.site-header.is-stuck {
  background: rgba(12, 13, 14, 0.98);
  box-shadow: 0 16px 38px -18px rgba(0, 0, 0, 0.85);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: var(--header-h);
}

.site-header__brand { flex: none; text-decoration: none; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}
.nav__mobile-cta { display: none; }

/* --------------------------------------------------------------- nav */

.nav { flex: 1 1 auto; }

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__item { margin: 0; position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.65rem;
  border: 0;
  background: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.91rem;
  font-weight: 500;
  color: var(--color-text-light-muted);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  right: 0.65rem;
  bottom: -0.45rem;
  left: 0.65rem;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.045); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--color-orange); }

.nav__chev { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.nav__toggle[aria-expanded='true'] { color: #fff; }
.nav__toggle[aria-expanded='true'] .nav__chev { transform: rotate(180deg); }

/* ---------------------------------------------------------- dropdown */

.dropdown {
  position: absolute;
  top: 100%;
  left: -0.5rem;
  z-index: var(--z-dropdown);
  min-width: 305px;
  padding: var(--space-3);
  background: rgba(28, 31, 33, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.nav__item--has-menu { z-index: 1; }
.nav__item--has-menu:focus-within { z-index: var(--z-dropdown); }
.nav__item--has-menu:hover { z-index: var(--z-dropdown); }
.dropdown[hidden] { display: none; }

.dropdown__list { margin: 0; padding: 0; list-style: none; }
.dropdown__list li { margin: 0; }

.dropdown__link {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-light-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
}
.dropdown__link:hover,
.dropdown__link:focus-visible {
  background: rgba(217, 79, 32, 0.14);
  color: #fff;
  border-left-color: var(--color-orange);
  padding-left: 0.95rem;
}
.dropdown__link[aria-current='page'] { color: var(--color-orange); }

.dropdown__link--all {
  margin-top: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-dark);
  border-radius: 0;
  font-weight: 600;
  color: var(--color-orange);
}

/* Keep the desktop bar compact without reducing the touch target in menus. */
.site-header__cta .btn {
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  font-size: 0.75rem;
}

/* ------------------------------------------------------ lang switcher */

.langswitch { display: flex; align-items: center; gap: var(--space-2); }
.langswitch__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.langswitch__list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 3px;
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}
.langswitch__list li { margin: 0; }

.langswitch__link {
  display: block;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-text-light-muted);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.langswitch__link:hover { color: #fff; }
.langswitch__link.is-active { background: var(--color-primary); color: #fff; }

/* ------------------------------------------------------------ burger */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.burger__bar {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.burger[aria-expanded='true'] .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------- breadcrumbs */

.crumbs {
  background: var(--color-charcoal);
  border-bottom: 1px solid var(--color-border-dark);
  padding-block: var(--space-3);
}
.crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--fs-xs);
}
.crumbs__item { margin: 0; color: var(--color-text-light-muted); }
.crumbs__item + .crumbs__item::before {
  content: '/';
  margin-right: var(--space-2);
  color: var(--color-border-dark);
}
.crumbs__item a { color: var(--color-text-light-muted); text-decoration: none; }
.crumbs__item a:hover { color: var(--color-orange); }
.crumbs__item [aria-current] { color: #fff; }

/* -------------------------------------------------------------- card */

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 100%;
  padding: var(--space-5);
  background: linear-gradient(145deg, var(--color-surface), rgba(255,255,255,0.86));
  border: 1px solid rgba(122, 113, 104, 0.23);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur) var(--ease), transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease), background var(--dur-slow) var(--ease);
}
.card--link:hover {
  border-color: rgba(217, 79, 32, 0.75);
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.card__media {
  overflow: hidden;
  margin: calc(var(--space-5) * -1) calc(var(--space-5) * -1) 0;
  aspect-ratio: 16 / 8.6;
  background: var(--color-charcoal);
  position: relative;
}
.card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12, 13, 14, 0.24)); pointer-events: none; }
.card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.card--link:hover .card__media img { transform: scale(1.07); }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(217, 79, 32, 0.09);
  color: var(--color-primary);
}
.card__icon svg { width: 22px; height: 22px; }

.card__title { margin: 0; font-size: var(--fs-h3); }
.card__text { margin: 0; color: var(--color-text-muted); font-size: var(--fs-sm); }

.card__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.card__bullets li {
  margin: 0;
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

.card__meta {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}

.card__link {
  margin-top: auto;
  padding-top: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary);
}
.card__link svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease); }
.card--link:hover .card__link svg { transform: translateX(3px); }

/* Cards on dark sections. */
.section--dark .card,
.section--brand .card {
  background: var(--color-surface-dark);
  border-color: var(--color-border-dark);
}
.section--dark .card__title,
.section--brand .card__title { color: #fff; }
.section--dark .card__text, .section--dark .card__bullets li,
.section--brand .card__text, .section--brand .card__bullets li { color: var(--color-text-light-muted); }
.section--dark .card__icon,
.section--brand .card__icon { background: rgba(241, 102, 36, 0.14); color: var(--color-orange); }
.section--dark .card--link:hover,
.section--brand .card--link:hover { border-color: var(--color-orange); }

/* ------------------------------------------------------ card scroller */

.card-scroller { position: relative; }
.card-scroller__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 var(--space-4);
}
.card-scroller__hint {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.card-scroller__controls { display: flex; gap: var(--space-2); }
.card-scroller__button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-charcoal);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.card-scroller__button svg { width: 17px; height: 17px; }
.card-scroller__button[data-scroll-prev] svg { transform: rotate(180deg); }
.card-scroller__button:hover:not(:disabled) { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: translateY(-2px); }
.card-scroller__button:disabled { opacity: 0.38; cursor: not-allowed; }
.card-scroller__viewport {
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 1px;
  cursor: grab;
  padding: 2px 1px var(--space-5);
  margin-bottom: calc(var(--space-5) * -1);
}
.card-scroller__viewport::-webkit-scrollbar { display: none; }
.card-scroller__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.card-scroller__track {
  display: flex;
  width: max-content;
  gap: var(--space-5);
}
.card-scroller__track .card {
  width: min(26rem, calc((var(--container) - (var(--gutter) * 2) - (var(--space-5) * 2)) / 3.12));
  scroll-snap-align: start;
}
.card-scroller__progress {
  height: 2px;
  margin-top: var(--space-5);
  overflow: hidden;
  background: rgba(37, 40, 43, 0.12);
}
.card-scroller__progress span { display: block; width: 22%; height: 100%; background: var(--gradient-brand); transform-origin: left; }
.section--dark .card-scroller__hint, .section--brand .card-scroller__hint { color: var(--color-text-light-muted); }
.section--dark .card-scroller__button, .section--brand .card-scroller__button { background: rgba(255, 255, 255, 0.06); border-color: var(--color-border-dark); color: #fff; }
.section--dark .card-scroller__button:hover:not(:disabled), .section--brand .card-scroller__button:hover:not(:disabled) { background: var(--color-primary); border-color: var(--color-primary); }
.section--dark .card-scroller__progress, .section--brand .card-scroller__progress { background: rgba(255,255,255,0.14); }

/* ------------------------------------------------------------- steps */

.steps {
  display: grid;
  gap: var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step {
  display: flex;
  gap: var(--space-5);
  margin: 0;
  padding: var(--space-5);
  border: 1px solid rgba(122, 113, 104, 0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.48);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateX(5px); border-color: rgba(217, 79, 32, 0.55); box-shadow: var(--shadow); }

.step__num {
  flex: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  min-width: 2.5rem;
}
.step__body h3 { margin-bottom: var(--space-2); }
.step__body p { margin: 0; color: var(--color-text-muted); }

.section--dark .step, .section--brand .step { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.035); }
.section--dark .step__num, .section--brand .step__num { color: var(--color-orange); }

/* --------------------------------------------------------- checklist */

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4) var(--space-6);
  margin: 0;
  padding: 0;
  list-style: none;
}
.checklist__item {
  display: flex;
  gap: var(--space-3);
  margin: 0;
  align-items: start;
}
.checklist__mark {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.28em;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  position: relative;
}
.checklist__mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-primary);
}
.checklist__title { margin: 0 0 var(--space-1); font-size: 1rem; }
.checklist__item p { margin: 0; color: var(--color-text-muted); font-size: var(--fs-sm); }

.section--dark .checklist__mark, .section--brand .checklist__mark { border-color: var(--color-orange); }
.section--dark .checklist__mark::after, .section--brand .checklist__mark::after { background: var(--color-orange); }

/* ------------------------------------------------------------ panel */

.panel {
  padding: var(--space-5);
  background: var(--color-charcoal);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
  color: var(--color-text-light);
  position: sticky;
  top: calc(var(--header-h) + var(--space-5));
}
.panel__title { margin: 0 0 var(--space-4); font-size: 1.0625rem; color: #fff; }
.panel__list { margin: 0; padding: 0; list-style: none; }
.panel__list li {
  position: relative;
  padding: 0 0 0 1.35rem;
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--color-text-light-muted);
  line-height: 1.55;
}
.panel__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
}
.panel__list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: #fff;
}
.panel__note {
  margin: var(--space-4) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-dark);
  font-size: var(--fs-xs);
  color: var(--color-text-light-muted);
}

/* ------------------------------------------------------------- tags */

.tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 62rem;
}
.tag {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.7rem 1rem 0.7rem 2.35rem;
  position: relative;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tag::before { content: ''; position: absolute; left: 1rem; width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 0 4px rgba(217,79,32,0.12); }
.tag:hover { transform: translateY(-2px); border-color: rgba(217,79,32,0.75); background: rgba(217,79,32,0.08); }
.section--dark .tag, .section--brand .tag {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255,255,255,0.16);
  color: var(--color-text-light);
}
.section--dark .tag::before, .section--brand .tag::before { background: var(--color-orange); box-shadow: 0 0 0 4px rgba(241,102,36,0.11); }

/* ------------------------------------------------------- role showcase */

.role-loop { position: relative; }
.role-loop__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.role-loop__toolbar p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.role-loop__controls { display: flex; gap: var(--space-2); }
.role-loop__controls button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.role-loop__controls button:first-child .btn__arrow { transform: rotate(180deg); }
.role-loop__controls button:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.role-loop__controls .btn__arrow { width: 17px; height: 17px; }
.role-loop__viewport { overflow: hidden; cursor: grab; }
.role-loop__viewport.is-dragging { cursor: grabbing; user-select: none; }
.role-loop__track { display: flex; gap: var(--space-4); }
.role-loop__card {
  position: relative;
  flex: 0 0 calc((100% - (var(--space-4) * 2)) / 3);
  min-height: clamp(15rem, 20vw, 19rem);
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--color-charcoal);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}
.role-loop__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.role-loop__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,14,0.06) 18%, rgba(12,13,14,0.88) 100%); }
.role-loop__card h3 { position: absolute; z-index: 1; right: var(--space-4); bottom: var(--space-3); left: var(--space-4); margin: 0; color: #fff; font-size: clamp(1.1rem, 1vw + 0.6rem, 1.45rem); }
.role-loop__number { position: absolute; z-index: 1; top: var(--space-3); left: var(--space-3); padding: 0.3rem 0.5rem; border: 1px solid rgba(255,255,255,0.35); border-radius: 999px; background: rgba(12,13,14,0.34); color: #fff; font-family: var(--font-heading); font-size: 0.68rem; letter-spacing: 0.13em; }
.role-loop__card:hover img { transform: scale(1.08); }
.role-loop__meter { height: 2px; margin-top: var(--space-5); background: rgba(37,40,43,0.12); overflow: hidden; }
.role-loop__meter span { display: block; width: 100%; height: 100%; background: var(--gradient-brand); transform: scaleX(0.3334); transform-origin: left; transition: transform var(--dur-slow) var(--ease); }
.section--dark .role-loop__toolbar p { color: var(--color-text-light-muted); }
.section--dark .role-loop__controls button { border-color: var(--color-border-dark); background: rgba(255,255,255,0.06); color: #fff; }
.section--dark .role-loop__meter { background: rgba(255,255,255,0.16); }

/* ------------------------------------------------------------ table */

/* Wide tables scroll inside their own box; the page body never scrolls sideways. */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--color-surface);
  font-size: var(--fs-sm);
}
.table th, .table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.table thead th {
  background: var(--color-charcoal);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 0;
}
.table tbody th { font-weight: 600; color: var(--color-charcoal); }
.table tbody tr:last-child th, .table tbody tr:last-child td { border-bottom: 0; }

.table-after { margin-top: var(--space-5); }

/* ---------------------------------------------------------- callout */

.callout {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
}
.callout--note { border-left-color: var(--color-primary); }
.callout--warning { border-left-color: var(--color-red); background: rgba(158, 42, 31, 0.04); }
.callout__icon { flex: none; color: var(--color-primary); }
.callout__icon svg { width: 24px; height: 24px; }
.callout--warning .callout__icon { color: var(--color-red); }
.callout__title { margin: 0 0 var(--space-2); font-size: 1.0625rem; }
.callout p { color: var(--color-text-muted); font-size: var(--fs-sm); }

/* -------------------------------------------------------------- FAQ */

.faq {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 860px;
  border-top: 1px solid var(--color-border);
}
.faq__item { margin: 0; border-bottom: 1px solid var(--color-border); }
.faq__q { margin: 0; font-size: 1rem; }

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-charcoal);
  transition: color var(--dur-fast) var(--ease);
}
.faq__trigger:hover { color: var(--color-primary); }

/* Plus/minus drawn in CSS -- no icon font, no extra request. */
.faq__sign {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}
.faq__sign::before,
.faq__sign::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__trigger[aria-expanded='true'] .faq__sign::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.faq__a {
  padding: 0 0 var(--space-5);
  max-width: 68ch;
}
.faq__a p { color: var(--color-text-muted); }
.faq__a[hidden] { display: none; }

.section--dark .faq, .section--dark .faq__item { border-color: var(--color-border-dark); }
.section--dark .faq__trigger { color: #fff; }

/* ---------------------------------------------------------- related */

.related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}
.related li { margin: 0; }
.related__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 8.5rem auto auto;
  grid-template-areas: 'image image' 'label arrow' 'text text';
  align-items: center;
  gap: var(--space-3);
  min-height: 0;
  padding: 0.7rem;
  background: linear-gradient(145deg, #fff, #f6f2ed);
  border: 1px solid rgba(122, 113, 104, 0.25);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-charcoal);
  box-shadow: 0 10px 26px -24px rgba(12,13,14,0.5);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.related__link--media { grid-template-areas: 'image image' 'label arrow' 'text text'; }
.related__media { grid-area: image; align-self: stretch; overflow: hidden; border-radius: calc(var(--radius-lg) - 7px); background: var(--color-charcoal); }
.related__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.related__link:hover .related__media img { transform: scale(1.08); }
.related__link:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.related__label { grid-area: label; padding-left: var(--space-2); font-family: var(--font-heading); font-weight: 600; font-size: 0.94rem; }
.related__text { grid-area: text; padding: 0 var(--space-2) var(--space-2); color: var(--color-text-muted); font-size: var(--fs-xs); line-height: 1.5; }
.related__link svg { width: 15px; height: 15px; flex: none; color: var(--color-primary); }
.related__link .btn__arrow { grid-area: arrow; display: grid; place-items: center; width: 2rem; height: 2rem; margin-right: var(--space-2); padding: 0.45rem; border-radius: 50%; background: rgba(217,79,32,0.1); transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.related__link:hover .btn__arrow { transform: translateX(3px); background: var(--color-primary); color: #fff; }
.related--count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); }
.related--count-4 .related__link { grid-template-rows: 7rem auto auto; }
.related--count-5,
.related--count-6 {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 0.15rem 0.1rem var(--space-4);
  scrollbar-width: none;
}
.related--count-5::-webkit-scrollbar,
.related--count-6::-webkit-scrollbar { display: none; }
.related--count-5 li,
.related--count-6 li { flex: 0 0 min(18rem, 27vw); scroll-snap-align: start; }

/* Legal content reads as a deliberate information sheet rather than a loose
   paragraph on an otherwise empty surface. */
.page--legal .section--surface .prose {
  max-width: 52rem;
  padding: clamp(1.5rem, 2vw, 2.25rem);
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.72));
  border: 1px solid rgba(122,113,104,0.2);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  box-shadow: var(--shadow-card);
}
.page--legal .section--surface .prose p { max-width: 68ch; }
.page--legal .section--surface .prose p + p { padding-top: var(--space-4); border-top: 1px solid var(--color-border); }

/* Legal links are a compact destination set, not a generic two-column list.
   Treat the three destinations as equal visual cards on one clean row. */

/* -------------------------------------------------------- cta band */

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cta-band { border-top: 1px solid rgba(241,102,36,0.28); border-bottom: 1px solid rgba(255,255,255,0.08); }
.cta-band__inner::after {
  content: '';
  width: clamp(8rem, 18vw, 16rem);
  height: 1px;
  margin-left: auto;
  background: linear-gradient(90deg, transparent, rgba(241,102,36,0.72));
}
.cta-band h2 { margin: 0 0 var(--space-3); max-width: 24ch; }
.cta-band__text { margin: 0; max-width: 52ch; font-size: var(--fs-lead); }
.cta-band .btn-row { margin-top: 0; }

/* ----------------------------------------------------- sticky mobile */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  padding: var(--space-3) var(--gutter);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  background: rgba(21, 23, 25, 0.96);
  border-top: 1px solid var(--color-border-dark);
  backdrop-filter: blur(8px);
  transform: translateY(110%);
  transition: transform var(--dur) var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { width: 100%; }

/* ------------------------------------------------------- site footer */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-text-light-muted);
  padding-block: var(--space-8) var(--space-5);
  border-top: 3px solid transparent;
  border-image: var(--gradient-brand) 1;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 6%, rgba(217,79,32,0.16), transparent 20rem),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, transparent);
}
.site-footer .container { position: relative; z-index: 1; }

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: var(--space-8);
  padding-bottom: var(--space-7);
}

.footer__brand a { text-decoration: none; display: inline-block; }
.footer__about {
  margin: var(--space-5) 0;
  font-size: var(--fs-sm);
  color: var(--color-text-light-muted);
  max-width: 44ch;
}
.footer__brand .btn { margin-top: 0; }
.footer__brand .btn--candidateforce {
  display: inline-flex;
  max-width: 100%;
  min-height: 3.6rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: 0 14px 28px -16px rgba(217,79,32,0.65);
}
.footer__brand .btn--candidateforce span { white-space: nowrap; }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.footer__h {
  margin: 0 0 var(--space-4);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: #fff;
}
.footer__list { margin: 0; padding: 0; list-style: none; }
.footer__list li { margin-bottom: var(--space-3); }
.footer__list a {
  font-size: var(--fs-sm);
  color: var(--color-text-light-muted);
  text-decoration: none;
}
.footer__list a:hover { color: var(--color-orange); }

.footer__bottom {
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.footer__disclaimer { margin: 0; font-size: var(--fs-xs); max-width: 78ch; }
.footer__copy { margin: 0; font-size: var(--fs-xs); white-space: nowrap; }


/* ===== pages.css ===== */
/* Page-level compositions: hero, gateway, 404. */

/* -------------------------------------------------------------- hero */

.hero {
  position: relative;
  background: var(--color-charcoal);
  color: var(--color-text-light);
  overflow: hidden;
  padding-block: clamp(4.5rem, 3rem + 6vw, 8rem);
  min-height: clamp(38rem, 46vw, 50rem);
  border-bottom: 1px solid rgba(241, 102, 36, 0.32);
}

.hero__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.015);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

/* The overlay protects the copy on the left while leaving the technician and
   equipment visible on the right. It replaces the old separate image card. */
.hero__bg {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(48% 82% at 92% 16%, rgba(241, 102, 36, 0.3) 0%, rgba(158, 42, 31, 0.08) 48%, transparent 76%),
    linear-gradient(90deg, rgba(7, 8, 9, 0.99) 0%, rgba(7, 8, 9, 0.95) 35%, rgba(7, 8, 9, 0.66) 61%, rgba(7, 8, 9, 0.22) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  /* Fade the grid out toward the bottom so it reads as texture, not a table. */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: block;
  align-items: center;
  min-height: clamp(29rem, 38vw, 39rem);
}

.hero__copy { max-width: 48rem; position: relative; }
.hero__copy::before {
  content: '';
  position: absolute;
  left: -1.15rem;
  top: 0.2rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(var(--color-orange), transparent 76%);
}
.hero--compact { min-height: clamp(28rem, 30vw, 36rem); }
.hero--compact .hero__copy { max-width: 62ch; }

.hero__copy h1 { color: #fff; margin-bottom: var(--space-5); }

.hero__lead {
  font-size: var(--fs-lead);
  color: var(--color-text-light-muted);
  max-width: 56ch;
  margin-bottom: var(--space-5);
}

.hero__points {
  margin: 0 0 var(--space-5);
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}
.hero__points li {
  position: relative;
  margin: 0;
  padding-left: 1.1rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.9);
  padding: 0.32rem 0.65rem 0.32rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
}
.hero__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
}

/* Homepage only: the three key disciplines form an intentional technical row. */
.hero--home .hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 38rem;
}
.hero--home .hero__points li {
  display: flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.55rem 0.65rem 0.55rem 1.25rem;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 0.55rem;
  background: rgba(10, 12, 14, 0.56);
  box-shadow: none;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero--home .hero__points li::before {
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  animation: hero-home-signal 2.7s ease-in-out infinite;
}
.hero--home .hero__points li:nth-child(2)::before { animation-delay: 0.28s; }
.hero--home .hero__points li:nth-child(3)::before { animation-delay: 0.56s; }
.hero--home .hero__points li:hover {
  border-color: rgba(241, 102, 36, 0.88);
  background: rgba(217, 79, 32, 0.24);
  transform: translateY(-2px);
}
@keyframes hero-home-signal {
  0%, 12%, 100% { opacity: 0.28; box-shadow: 0 0 0 0 rgba(241, 102, 36, 0); transform: translateY(-50%) scale(0.8); }
  22%, 34% { opacity: 1; box-shadow: 0 0 0 0.4rem rgba(241, 102, 36, 0); transform: translateY(-50%) scale(1.12); }
  45% { opacity: 0.28; transform: translateY(-50%) scale(0.8); }
}

.hero .btn-row { margin-top: 0; }

.hero__note {
  margin-top: var(--space-5);
  font-size: var(--fs-xs);
  color: var(--color-text-light-muted);
  max-width: 52ch;
}

@keyframes hero-drift {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-0.7%, -0.5%, 0); }
}

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


/* ---------------------------------------------------------- gateway */

.page--gateway { background: #070808; }

.gateway {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 7vh, 5.5rem) var(--gutter);
  overflow: hidden;
}
.gateway__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.9) 0%, rgba(7, 8, 8, 0.7) 46%, rgba(7, 8, 8, 0.26) 100%),
    radial-gradient(66% 56% at 50% 8%, rgba(217, 79, 32, 0.2) 0%, transparent 72%),
    url('/assets/images/gateway/gateway-industrial-v2.png') center / cover no-repeat;
  filter: brightness(1.22) contrast(1.06);
  transform: scale(1.035);
  animation: gateway-drift 22s ease-in-out infinite alternate;
  z-index: -2;
}
.gateway__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 48% at 50% 44%, transparent 0%, rgba(5, 6, 7, 0.23) 72%, rgba(5, 6, 7, 0.63) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.25));
}
.gateway__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 46%, #000 0%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 50% 46%, #000 0%, transparent 100%);
}
.gateway__scan {
  position: absolute;
  inset: -30% auto auto -10%;
  z-index: -1;
  width: 58vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(241, 102, 36, 0.95), transparent);
  box-shadow: 0 0 24px rgba(241, 102, 36, 0.7);
  opacity: 0.55;
  transform: rotate(-22deg);
  animation: gateway-scan 9s var(--ease) infinite;
}

.gateway__inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - (var(--gutter) * 2)));
  max-width: 760px;
  min-inline-size: 0;
  min-width: 0;
  text-align: center;
}
.gateway__brand {
  margin-bottom: clamp(2.25rem, 4vw, 3.4rem);
  display: flex;
  justify-content: center;
  transform: translateY(clamp(-1.1rem, -2vh, -0.5rem));
  animation: gateway-enter 620ms 30ms var(--ease) both;
}
.gateway__brand .logo { transform: scale(1.42); transform-origin: center; }
.gateway__title {
  max-width: 18ch;
  margin: 0 auto var(--space-4);
  color: #fff;
  font-size: clamp(2.35rem, 1.55rem + 3.4vw, 4.5rem);
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
  animation: gateway-enter 680ms 130ms var(--ease) both;
}
.gateway__lead {
  font-size: var(--fs-lead);
  color: #d1d4d6;
  margin: 0 auto var(--space-6);
  max-width: 52ch;
  animation: gateway-enter 700ms 190ms var(--ease) both;
}

.gateway__langs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin: 0 0 var(--space-6);
  padding: 0;
  list-style: none;
}
.gateway__langs li { margin: 0; }

.gateway__lang {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  min-height: 8rem;
  padding: var(--space-5);
  overflow: hidden;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: gateway-enter 700ms 270ms var(--ease) both;
}
.gateway__langs li:nth-child(2) .gateway__lang { animation-delay: 340ms; }
.gateway__lang::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.11) 48%, transparent 74%);
  transform: translateX(-130%);
  transition: transform 580ms var(--ease);
}
.gateway__lang:hover {
  color: #fff;
  border-color: rgba(241, 102, 36, 0.9);
  background: linear-gradient(110deg, rgba(217, 79, 32, 0.3), rgba(255, 255, 255, 0.07));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(241, 102, 36, 0.16);
  transform: translateY(-4px);
}
.gateway__lang:hover::before { transform: translateX(130%); }
.gateway__lang-index { position: relative; color: var(--color-orange); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; }
.gateway__lang-copy { position: relative; display: flex; min-width: 0; flex-direction: column; gap: 0.15rem; text-align: left; }
.gateway__lang-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.gateway__lang-note { font-size: var(--fs-sm); color: #c0c4c7; overflow-wrap: anywhere; }
.gateway__lang-arrow {
  position: relative;
  display: grid;
  width: 2.15rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(241, 102, 36, 0.16);
  color: var(--color-orange);
  font-size: 1.25rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gateway__lang:hover .gateway__lang-arrow { background: var(--color-orange); color: #fff; transform: translateX(3px); }

/* Marks the language this visitor chose last time. A hint only -- the gateway
   never redirects, so both options stay equally available. */
.gateway__lang.is-preferred {
  border-color: rgba(241, 102, 36, 0.85);
  background: linear-gradient(110deg, rgba(217, 79, 32, 0.22), rgba(255, 255, 255, 0.055));
}

.gateway__partner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 auto var(--space-5);
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 8, 8, 0.52);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
  animation: gateway-enter 700ms 420ms var(--ease) both;
}
.gateway__partner:hover { color: #fff; border-color: rgba(241, 102, 36, 0.8); background: rgba(217, 79, 32, 0.16); transform: translateY(-2px); }
.gateway__partner-logo { width: 1.4rem; height: 1.2rem; }
.gateway__partner-label { display: block; color: #aeb3b7; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; line-height: 1.2; text-transform: uppercase; }
.gateway__partner strong { display: block; color: #fff; font-size: 0.82rem; line-height: 1.3; }
.gateway__partner-arrow { margin-left: 0.1rem; color: var(--color-orange); font-size: 1rem; }
.gateway__note {
  margin: 0;
  font-size: var(--fs-xs);
  color: #b7bcc0;
  animation: gateway-enter 700ms 490ms var(--ease) both;
}

@keyframes gateway-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gateway-drift {
  from { transform: scale(1.035) translate3d(-0.45%, -0.25%, 0); }
  to { transform: scale(1.085) translate3d(0.5%, 0.35%, 0); }
}
@keyframes gateway-scan {
  0%, 18% { transform: translate3d(-42vw, -4vh, 0) rotate(-22deg); opacity: 0; }
  32%, 65% { opacity: 0.55; }
  82%, 100% { transform: translate3d(125vw, 80vh, 0) rotate(-22deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gateway__bg, .gateway__scan, .gateway__brand, .gateway__title, .gateway__lead, .gateway__lang, .gateway__partner, .gateway__note { animation: none; }
}

/* -------------------------------------------------------------- 404 */

.page--404 { background: var(--color-charcoal); }

.errorpage {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--space-7) var(--gutter);
  background:
    radial-gradient(50% 50% at 50% 0%, rgba(158, 42, 31, 0.2) 0%, transparent 70%),
    var(--gradient-dark);
}
.errorpage__inner { width: 100%; max-width: 620px; text-align: center; }
.errorpage__brand { margin-bottom: var(--space-6); display: flex; justify-content: center; }
.errorpage__code {
  margin: 0 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange);
}
.errorpage__title { color: #fff; font-size: var(--fs-h2); margin-bottom: var(--space-3); }
.errorpage__title--de { font-size: var(--fs-h3); }
.errorpage__lead { color: var(--color-text-light-muted); margin-bottom: var(--space-5); }
.errorpage__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}
.errorpage__links li { margin: 0; }
.errorpage__rule { border-color: var(--color-border-dark); margin: var(--space-7) 0; }


/* ===== responsive.css ===== */
/* Breakpoints. The layouts above are the wide case; these steps walk them
   down. The mobile nav drawer takes over at 1024px, where the seven-item
   bar stops fitting next to the language switcher and CTA. */

/* --------------------------------------------------------- <= 1180px */
@media (max-width: 1180px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: minmax(0, 1fr); gap: var(--space-7); }
}

/* --------------------------------------------------------- <= 1024px */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
  .panel { position: static; }
  .hero { min-height: 0; }
  .hero__background { object-position: 72% center; }
  .card-scroller__track .card { width: min(24rem, 42vw); }

  .burger { display: flex; }
  .site-header__cta { display: none; }
  .site-header__inner { min-height: var(--header-h-mobile); }
  /* backdrop-filter creates a containing block for fixed descendants in
     mobile Safari and Chromium. Without this override the drawer gets
     clipped to the height of the header instead of covering the viewport. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* ------------------------------------------------------ nav drawer */
  .nav {
    position: fixed;
    inset: var(--header-h-mobile) 0 0;
    z-index: var(--z-dropdown);
    min-height: calc(100dvh - var(--header-h-mobile));
    background: linear-gradient(160deg, #151719 0%, #0c0d0e 100%);
    border-top: 1px solid var(--color-border-dark);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: var(--space-4) var(--gutter) var(--space-8);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--dur-slow) var(--ease), visibility var(--dur-slow) var(--ease);
  }
  .nav.is-open { transform: none; visibility: visible; }

  /* Without JS there is no burger handler, so the drawer must never hide
     the links. Reveal it as a plain stacked list instead. */
  html:not(.js) .nav {
    position: static;
    transform: none;
    visibility: visible;
    padding: 0 0 var(--space-4);
    border-top: 0;
  }
  html:not(.js) .site-header__inner { flex-wrap: wrap; }
  html:not(.js) .burger { display: none; }
  html:not(.js) .dropdown { position: static; box-shadow: none; }
  html:not(.js) .dropdown[hidden] { display: block; }

  .nav { flex: none; }
  .nav__list { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--color-border-dark); }

  .nav__link,
  .nav__toggle {
    width: 100%;
    justify-content: space-between;
    padding: var(--space-4) 0;
    font-size: 1.0625rem;
    color: #fff;
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 var(--space-3);
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .dropdown__link { padding: var(--space-3) var(--space-4); }

  .nav__mobile-cta {
    display: block;
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border-dark);
  }
  .nav__mobile-cta .btn { width: 100%; }

  .sticky-cta { display: block; }
  /* Keep the sticky bar from covering the last lines of the footer. */
  .site-footer { padding-bottom: calc(var(--space-8) + 32px); }
}

/* ---------------------------------------------------------- <= 860px */
@media (max-width: 860px) {
  .checklist { grid-template-columns: minmax(0, 1fr); }
  .related { grid-template-columns: minmax(0, 1fr); }
  .footer__nav { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-5); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------- <= 680px */
@media (max-width: 680px) {
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: minmax(0, 1fr); }

  .step { flex-direction: column; gap: var(--space-3); }
  .step__num { min-width: 0; }

  .btn-row .btn { width: 100%; }
  .footer__bottom { flex-direction: column; }
  .footer__copy { white-space: normal; }

  .langswitch__list { background: none; padding: 0; }
  .section { padding-block: clamp(3.75rem, 12vw, 5rem); }
  .section__head { margin-bottom: var(--space-6); }
  .card-scroller__toolbar { margin-bottom: var(--space-3); }
  .card-scroller__track { gap: var(--space-4); }
  .card-scroller__track .card { width: min(82vw, 22rem); }
  .card-scroller__viewport { margin-inline: calc(var(--gutter) * -0.15); padding-inline: calc(var(--gutter) * 0.15); }
  .role-loop__viewport { overflow-x: auto; scroll-snap-type: inline mandatory; scrollbar-width: none; padding-bottom: var(--space-3); }
  .role-loop__viewport::-webkit-scrollbar { display: none; }
  .role-loop__track { gap: var(--space-3); }
  .role-loop__card { flex-basis: min(78vw, 21rem); min-height: 17rem; }
  .hero { min-height: 39rem; padding-block: 4.5rem 4rem; }
  .hero__inner { min-height: 31rem; }
  .hero__copy::before { left: -0.7rem; }
  .hero__points { gap: var(--space-2); }
  .hero__points li { font-size: 0.78rem; }
  .hero--home .hero__points { gap: 0.45rem; }
  .hero--home .hero__points li { min-height: 2.9rem; padding-inline: 1.05rem 0.42rem; font-size: 0.71rem; }
  .hero--home .hero__points li::before { left: 0.46rem; }
  .tags { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-2); }
  .tag { min-height: 3rem; padding: 0.55rem 0.6rem 0.55rem 1.75rem; font-size: 0.78rem; }
  .tag::before { left: 0.7rem; width: 6px; height: 6px; }
  .related__link {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 7rem auto auto;
    grid-template-areas: 'image image' 'label arrow' 'text text';
    align-items: center;
    gap: var(--space-2);
    min-height: 0;
    padding: 0.55rem;
  }
  .related__media { grid-area: image; grid-row: auto; }
  .related__label { grid-area: label; font-size: 0.86rem; }
  .related__text { grid-area: text; padding: 0 0.25rem 0.25rem; font-size: 0.78rem; }
  .related__link .btn__arrow { grid-area: arrow; }
  .related--count-5,
  .related--count-6 { display: flex; grid-template-columns: none; }
  .related--count-5 li,
  .related--count-6 li { flex-basis: min(78vw, 20rem); }
  .footer__brand .btn--candidateforce { width: 100%; justify-content: center; font-size: 0.86rem; }
}

/* ---------------------------------------------------------- <= 420px */
@media (max-width: 420px) {
  .logo__mark { width: 30px; height: 30px; }
  .logo__technician { font-size: 0.9375rem; }
  .footer__nav { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------- print */
@media print {
  .site-header,
  .sticky-cta,
  .crumbs,
  .cta-band,
  .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.75em; }
}
