/* ==========================================================================
   DoorLink website — shared stylesheet
   Built on the DoorLink Design System (DigitalAlerts B.V.).
   Token values are copied verbatim from the design-system source:
   _ds/doorlink-design-system/tokens/{colors,typography,spacing,radius,
   elevation,motion}.css — do not invent new hues, gradients or shadows here.
   ========================================================================== */

/* Self-hosted webfonts. Replaces the former @import of
   fonts.googleapis.com: that made first paint wait on two extra
   third-party round-trips, and sent every visitor IP to Google.
   Files live in /assets/fonts/, regenerate with scripts/fetch-fonts.sh. */

/* Public Sans — variable, covers every weight the site uses (400/700/800). */
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/public-sans-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/public-sans-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Open Sans — variable, upright. */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/open-sans-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/open-sans-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Open Sans — variable, italic. Used by .quote-card p only. */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/open-sans-var-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/open-sans-var-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  --font-core: "Public Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Open Sans", "Public Sans", Arial, sans-serif;

  /* Brand red ramp */
  --red-900: #7a0000; --red-800: #960000; --red-700: #b00000; --red-600: #c41f18;
  --red-500: #d63a20; --red-400: #e85f34; --red-300: #f2855c; --red-200: #f8b79c;
  --red-100: #fde8e0;

  /* Brand orange ramp */
  --orange-700: #d1701f; --orange-600: #ef8324; --orange-500: #f98e3b;
  --orange-400: #f9a55e; --orange-300: #fbc191; --orange-200: #fddcc0;
  --orange-100: #fef3e9;

  /* Ink / neutrals */
  --ink-1000: #0d0d0d; --ink-900: #181818; --ink-800: #202020; --ink-700: #282828;
  --ink-600: #3a3a3a; --ink-500: #505050; --ink-400: #707070; --ink-300: #9a9a9a;
  --ink-200: #c4c4c4; --ink-100: #e4e4e4; --ink-050: #f2f2f2; --ink-025: #f8f8f8;
  --white: #ffffff;

  /* Signature gradients — never re-order the stops */
  --gradient-brand: linear-gradient(100deg, #b70000 0%, #f98e3b 100%);
  --gradient-cta: linear-gradient(90deg, #b00000 0%, #e85f34 100%);

  /* Surfaces */
  --surface-page: var(--white);
  --surface-subtle: var(--ink-025);
  --surface-card: var(--white);
  --surface-sunken: var(--ink-050);
  --surface-inverse: var(--ink-900);
  --surface-inverse-raised: var(--ink-800);

  /* Text */
  --text-body: var(--ink-800);
  --text-strong: var(--ink-1000);
  --text-muted: var(--ink-500);
  --text-faint: var(--ink-400);
  --text-on-dark: var(--white);
  --text-on-dark-muted: rgba(255, 255, 255, .72);
  --text-link: var(--red-700);
  --text-link-hover: var(--red-600);

  /* Lines */
  --border-subtle: var(--ink-100);
  --border-default: var(--ink-200);
  --border-on-dark: rgba(255, 255, 255, .14);
  --focus-ring: rgba(180, 0, 0, .38);

  /* Radius */
  --radius-xs: 4px; --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 22px; --radius-pill: 999px;
  --radius-card: 12px;

  /* Elevation */
  --shadow-sm: 0 2px 6px rgba(13, 13, 13, .08);
  --shadow-md: 0 6px 18px rgba(13, 13, 13, .10);
  --shadow-lg: 0 14px 40px rgba(13, 13, 13, .16);
  --shadow-cta: 0 4px 14px rgba(176, 0, 0, .28);
  --shadow-on-dark: 0 10px 30px rgba(0, 0, 0, .55);

  /* Motion */
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --ease-standard: cubic-bezier(.2, .6, .2, 1);

  /* Layout */
  --page-max: 1180px;
  --page-gutter: 48px;
  --section-pad: 104px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font: 400 16px/1.45 var(--font-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4 {
  font-family: var(--font-core);
  font-weight: 800;
  color: var(--text-strong);
  margin: 0;
  letter-spacing: -.02em;
  text-wrap: balance;
}

p { margin: 0; }

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--text-link-hover); text-decoration: underline; }

img, video { max-width: 100%; }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--white);
  color: var(--text-link);
  padding: 12px 20px;
  font: 700 14px/1 var(--font-core);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section--tight { padding-top: 72px; padding-bottom: 72px; }

.section--dark {
  position: relative;
  background: var(--surface-inverse);
  color: var(--text-on-dark);
  overflow: hidden;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section--subtle { background: var(--surface-subtle); }

/* Arch/fingerprint texture lifted from the "D" mark — material, not decoration */
.arch-texture {
  position: absolute;
  inset: 0;
  /* PNG declaration first as the floor; the image-set() below overrides it
     in browsers that understand type(), cutting 151 KB to 6 KB. */
  background-image: url("/assets/img/pattern-arch-corner-dark.png");
  background-image: image-set(
    url("/assets/img/pattern-arch-corner-dark.avif") type("image/avif"),
    url("/assets/img/pattern-arch-corner-dark.webp") type("image/webp"),
    url("/assets/img/pattern-arch-corner-dark.png") type("image/png"));
  background-size: cover;
  background-position: left bottom;
  opacity: .5;
  pointer-events: none;
}
.arch-texture--flip { transform: scaleX(-1); opacity: .4; }

.section--dark > .wrap { position: relative; }

/* --------------------------------------------------------------------------
   4. Type roles
   -------------------------------------------------------------------------- */
.eyebrow {
  font: 700 12px/1.2 var(--font-core);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.h-display { font-size: 68px; line-height: 1.06; font-weight: 800; }
.h-section { font-size: 44px; line-height: 1.12; font-weight: 800; }
.h-card    { font-size: 22px; line-height: 1.25; font-weight: 800; letter-spacing: -.01em; }

.lede { font-size: 20px; line-height: 1.5; }
.body-lg { font-size: 19px; line-height: 1.6; }
.muted { color: var(--text-muted); }
.on-dark-muted { color: var(--text-on-dark-muted); }

/* --------------------------------------------------------------------------
   5. Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 700 14px/1 var(--font-core);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient-brand);
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  box-shadow: var(--shadow-cta);
  transition: filter var(--dur-fast) var(--ease-standard), transform 80ms var(--ease-standard);
}
.btn:hover { color: var(--white); text-decoration: none; filter: brightness(1.07); }
.btn:active { transform: scale(.97); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font: 700 16px/1.3 var(--font-core);
  color: var(--text-link);
}
.link-arrow--on-dark { color: var(--orange-500); }
.link-arrow--on-dark:hover { color: var(--orange-400); }
.link-arrow .arrow { font-size: 18px; transition: transform var(--dur-fast) var(--ease-standard); }
.link-arrow:hover .arrow { transform: translateX(3px); }

.pill {
  display: inline-block;
  font: 700 12px/1.2 var(--font-core);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
}

/* --------------------------------------------------------------------------
   6. Site header
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--ink-900);
  border-bottom: 1px solid var(--border-on-dark);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { display: block; width: 168px; height: auto; }
.site-header__logo:hover { text-decoration: none; }

.site-nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.site-nav a {
  font: 700 14px/1 var(--font-core);
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease-standard);
}
.site-nav a:hover { color: var(--white); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--white); }

/* Language switch. Sits at the end of the nav, outlined so it does not read
   as another content page. */
.site-nav__lang {
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
  padding: 6px 12px;
  letter-spacing: .04em;
}
.site-nav__lang:hover { border-color: var(--white); }

/* --------------------------------------------------------------------------
   7. Site footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-1000);
  color: var(--text-on-dark-muted);
  padding: 56px 0 48px;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__brand { display: flex; flex-direction: column; gap: 10px; }
.site-footer__brand img { width: 150px; height: auto; }
.site-footer__brand p { font-size: 14px; line-height: 1.5; }

.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 28px; }

.site-footer a {
  font: 700 14px/1 var(--font-core);
  color: var(--text-on-dark-muted);
}
.site-footer a:hover { color: var(--white); text-decoration: none; }

.site-footer__legal {
  width: 100%;
  border-top: 1px solid var(--border-on-dark);
  padding-top: 24px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .55);
}

/* --------------------------------------------------------------------------
   8. Home page — hero
   -------------------------------------------------------------------------- */
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.hero__copy { display: flex; flex-direction: column; gap: 28px; max-width: 560px; }
.hero__mark { width: 38px; height: auto; }
.hero h1 { color: var(--white); }

.hero__kicker {
  font: 700 28px/1.25 var(--font-core);
  letter-spacing: -.01em;
  color: var(--orange-500);
}

.hero__lede { max-width: 33em; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 14px; }

/* <picture> is a layout no-op. The imgs below size themselves with
   percentage width/height against their figure box; display:contents keeps
   the wrapper out of the box tree so adding AVIF/WebP <source>s changes
   which file is fetched and nothing about the layout. */
picture { display: contents; }

.hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.hero__figure img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 26%;
}

/* --------------------------------------------------------------------------
   9. Home page — reason grid (hairline cells)
   -------------------------------------------------------------------------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 0 -32px;
}

.reason-grid > div {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reason-grid p { font-size: 16px; line-height: 1.5; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   10. Home page — problem / quotes
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
}
.split--wide-left { grid-template-columns: 1.15fr .85fr; }

.quote-card {
  display: grid;
  gap: 20px;
  background: var(--surface-subtle);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}
.quote-card p {
  font: 700 19px/1.45 var(--font-body);
  font-style: italic;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Home page — video
   -------------------------------------------------------------------------- */
.video-block .wrap {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.video-block h2 { font-size: 44px; line-height: 1.12; color: var(--ink-025); }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-800);
}
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink-800);
}

.video-block__note { font-size: 14px; line-height: 1.5; color: var(--text-on-dark-muted); }

/* --------------------------------------------------------------------------
   12. Home page — steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step { display: flex; flex-direction: column; gap: 28px; }

.step__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-subtle);
  height: 420px;
  padding: 20px;
}
/* Explicit width+height on the img (rather than max-*) so the percentage
   resolves against the figure box instead of the image's intrinsic size —
   otherwise a tall screenshot overflows and gets clipped. */
.step__figure img { display: block; width: 100%; height: 100%; object-fit: contain; }
.step__figure--fill { padding: 0; }
.step__figure--fill img { object-fit: cover; }

.step__body { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

.step__num {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--gradient-cta);
  color: var(--white);
  font: 700 16px/1 var(--font-core);
}

.step__title { font: 800 20px/1.3 var(--font-core); letter-spacing: -.01em; color: var(--text-strong); }
.step__text { font-size: 16px; line-height: 1.55; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   13. Home page — feature cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}
.feature-card p { font-size: 16px; line-height: 1.55; color: var(--text-muted); }

.icon-circle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--red-100);
  color: var(--red-700);
}

.dark-card {
  background: var(--surface-inverse-raised);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dark-card p { font-size: 16px; line-height: 1.55; color: var(--text-on-dark-muted); }

/* --------------------------------------------------------------------------
   14. Home page — install checklist
   -------------------------------------------------------------------------- */
.centered-block .wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 28px 64px;
  justify-content: center;
  justify-items: start;
  text-align: left;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font: 700 22px/1.25 var(--font-core);
  letter-spacing: -.01em;
  color: var(--text-strong);
}

.check-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: var(--radius-xs);
  background: var(--gradient-cta);
}

/* --------------------------------------------------------------------------
   15. Home page — closing note
   -------------------------------------------------------------------------- */
.closing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
}
.closing-note p { font-size: 16px; line-height: 1.5; color: var(--text-on-dark-muted); }

.prose-stack { display: flex; flex-direction: column; gap: 24px; }

/* --------------------------------------------------------------------------
   16. Content pages (FAQ, Privacy, Delete Account, Contact)
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--surface-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 64px 0 56px;
}
.page-head .wrap { max-width: 820px; display: flex; flex-direction: column; gap: 16px; }
.page-head h1 { font-size: 48px; line-height: 1.1; }
.page-head .meta { font-size: 14px; line-height: 1.5; color: var(--text-muted); }
.page-head .intro { font-size: 19px; line-height: 1.6; color: var(--text-muted); max-width: 44em; }

.doc { padding: 64px 0 96px; }
.doc .wrap { max-width: 820px; }

.doc h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 56px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
.doc h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.doc h3 {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
  margin: 32px 0 8px;
  color: var(--text-strong);
}

.doc p, .doc li { font-size: 16px; line-height: 1.65; color: var(--text-body); }
.doc p { margin: 0 0 14px; }
.doc ul, .doc ol { margin: 0 0 16px; padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc li::marker { color: var(--red-400); }
.doc strong { color: var(--text-strong); font-weight: 700; }

.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 15px;
}
.doc th, .doc td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
  line-height: 1.5;
}
.doc th {
  background: var(--surface-subtle);
  font: 700 13px/1.3 var(--font-core);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-strong);
}
.doc tbody tr:last-child td { border-bottom: none; }

/* Callout — the design system allows no coloured left border on cards, so the
   accent is carried by a tinted surface and a leading rule instead. */
.callout {
  background: var(--red-100);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin: 24px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout p, .callout li { color: var(--ink-700); }

.toc {
  background: var(--surface-subtle);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 40px;
}
/* Scoped past `.doc h2` (including its mobile override) so the eyebrow keeps
   its label size instead of inheriting the section-heading scale. */
.doc .toc h2 {
  font: 700 12px/1.2 var(--font-core);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
  padding: 0;
  border: none;
}
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; columns: 2; column-gap: 32px; }
.toc li { counter-increment: toc; margin-bottom: 8px; font-size: 15px; break-inside: avoid; }
.toc li::before { content: counter(toc) ". "; color: var(--text-faint); font-weight: 700; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 8px 0 32px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 32px;
  border-radius: var(--radius-card);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}
.doc .contact-card h2 {
  font: 700 12px/1.2 var(--font-core);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  padding: 0;
  border: none;
}
.contact-card .value { font: 800 20px/1.3 var(--font-core); letter-spacing: -.01em; word-break: break-word; }
.contact-card p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  :root { --page-gutter: 32px; --section-pad: 80px; }

  .h-display { font-size: 52px; }
  .h-section { font-size: 36px; }
  .video-block h2 { font-size: 36px; }
  .page-head h1 { font-size: 40px; }

  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { max-width: none; }
  .hero__figure img { height: 460px; object-position: 50% 22%; }

  .split, .split--wide-left { grid-template-columns: 1fr; gap: 40px; }

  .steps { grid-template-columns: 1fr; gap: 56px; }
  .step { display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 32px; align-items: center; }
  .step__figure { height: 360px; }

  .reason-grid { grid-template-columns: repeat(2, 1fr); margin: 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --page-gutter: 20px; --section-pad: 64px; }

  .h-display { font-size: 36px; letter-spacing: -.015em; }
  .h-section { font-size: 28px; }
  .video-block h2 { font-size: 28px; }
  .page-head h1 { font-size: 32px; }
  .hero__kicker { font-size: 21px; }
  .lede, .hero__lede { font-size: 17px; }
  .body-lg { font-size: 17px; }
  .h-card { font-size: 19px; }

  .site-header .wrap { flex-direction: column; align-items: flex-start; gap: 14px; min-height: 0; }
  .site-header__logo img { width: 148px; }
  .site-nav { gap: 8px 18px; }
  .site-nav a { font-size: 13px; }
  /* The logo already links home — drop the duplicate so the nav stays one line */
  .site-nav a[href="/"], .site-nav a[href="/nl/"] { display: none; }

  .hero__figure img { height: 340px; }

  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid > div { padding: 28px 24px; }

  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .step { grid-template-columns: 1fr; gap: 24px; }
  .step__figure { height: 320px; }

  .quote-card { padding: 28px 24px; }
  .quote-card p { font-size: 17px; }

  .check-list { grid-template-columns: 1fr; gap: 18px; justify-items: start; }
  .check-list li { font-size: 18px; }

  .btn { padding: 15px 26px; font-size: 13px; }

  .toc ol { columns: 1; }
  .doc h2 { font-size: 24px; margin-top: 44px; padding-top: 28px; }

  .doc table, .doc thead, .doc tbody, .doc th, .doc td, .doc tr { display: block; }
  .doc thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .doc tbody tr {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    margin-bottom: 12px;
  }
  .doc td { border-bottom: none; padding: 6px 14px; }
  .doc td::before {
    content: attr(data-label);
    display: block;
    font: 700 11px/1.2 var(--font-core);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 3px;
  }

  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
}
