/* Lawur — Design system v2
   Adapted from the (dot)connect reference: Swiss engineering blueprint with a
   single ember. Structure, shape and typographic scale come from that system;
   the palette is Lawur's own.

   Reference          ->  Lawur
   Bone Canvas        ->  cream   #FBFAF7
   Charcoal Ink       ->  charcoal #2B2B2B
   Ash Layer          ->  sand    #F4F1EC
   Mist Border        ->  #D8D4CC
   Ember              ->  bronze  #B08D57

   Accent discipline: bronze appears once per viewport. Primary actions are
   charcoal-filled; bronze is reserved for the manifesto band, section numbers
   and the single conversion CTA. Signal Blue is dropped — a third hue would
   break the two-colour logic.

   Deviations from the reference, on purpose:
   - Photography is kept. The reference is a text-only consultancy; Lawur sells
     a physical object that must be seen.
   - The fixed header takes a solid cream fill once scrolled, because it passes
     over a charcoal section where transparent links would vanish. */

/* ---------------------------------------------------------------- fonts -- */

@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/generalsans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/generalsans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/generalsans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  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;
}

/* ---------------------------------------------------------------- tokens -- */

:root {
  --canvas: #fbfaf7;
  --ink: #2b2b2b;
  --ink-soft: #55514a;
  --ink-muted: #6e6a63;
  --ink-faint: #97928a;
  --ash: #f4f1ec;
  --border: #d8d4cc;
  /* --bronze is a SURFACE/decoration tone: 2.96:1 on cream, so it may never
     carry small text on a light background. --bronze-ink is the text tone
     (4.88:1 on cream, 4.53:1 on sand, 5.10:1 behind white). On charcoal the light --bronze is
     the readable one (4.58:1). */
  --bronze: #b08d57;
  --bronze-ink: #846a41;
  --bronze-ink-deep: #6f5836;
  --bronze-wash: #e6dcca;

  --on-dark: #fbfaf7;
  --on-dark-muted: #a8a29a;
  --border-on-dark: rgba(251, 250, 247, 0.18);

  --font: "General Sans", "Inter", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, sans-serif;

  /* type scale */
  --text-caption: 16px;
  --text-body: 18px;
  --text-subheading: 24px;
  --text-heading-sm: 32px;

  /* radius */
  --r-card: 20px;
  --r-btn: 24px;
  --r-pill: 48px;
  --r-badge: 8px;
  --r-img: 20px;

  /* layout */
  --container: 1200px;
  --gutter: 24px;
  --section-y: 96px;
  --header-h: 80px;

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

@media (max-width: 900px) {
  :root {
    --section-y: 72px;
    --gutter: 20px;
    --header-h: 64px;
  }
}

/* ---------------------------------------------------------------- base -- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
picture {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* Dutch compounds ("terrasoverkappingen") are long enough to overrun a phone
   viewport at display sizes, so headings are allowed to hyphenate and, as a
   last resort, break. */
h1,
h2,
h3,
h4 {
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--on-dark);
  padding: 12px 20px;
  border-radius: var(--r-badge);
  font-size: 14px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

/* ---------------------------------------------------------------- layout -- */

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

.section {
  padding-block: var(--section-y);
}

.section--ash {
  background: var(--ash);
}

.section--dark {
  background: var(--ink);
  color: var(--on-dark);
}
.section--dark h2,
.section--dark h3 {
  color: var(--on-dark);
}

/* ------------------------------------------------------------ typography -- */

/* Reference signature: extreme negative tracking at display sizes, relaxed to
   positive at body sizes. */
.display {
  font-size: clamp(2.6rem, 5.4vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

/* 2.6rem is too big for a 350px content width once a 19-character compound
   lands on one line. */
@media (max-width: 480px) {
  .display {
    font-size: clamp(2rem, 8.6vw, 2.6rem);
    line-height: 1;
  }
}

.h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: var(--text-subheading);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

.lead {
  font-size: var(--text-body);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}
.section--dark .lead {
  color: var(--on-dark-muted);
}

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

.sec-head {
  margin-bottom: 56px;
}

.sec-head__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.section--dark .sec-head__bar {
  border-bottom-color: var(--border-on-dark);
}

.sec-head__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.sec-head__num {
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--bronze-ink);
}
.section--dark .sec-head__num {
  color: var(--bronze);
}

.sec-head .lead {
  margin-top: 20px;
}

/* circular arrow glyph — the reference's only icon */
.ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--canvas);
  display: grid;
  place-items: center;
  flex: none;
}
.ico svg {
  width: 10px;
  height: 10px;
}
.section--dark .ico {
  background: var(--canvas);
  color: var(--ink);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

/* charcoal is the primary action — bronze stays reserved */
.btn--primary {
  background: var(--ink);
  color: var(--on-dark);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: #3d3d3d;
  border-color: #3d3d3d;
}

/* the single accent CTA per viewport */
.btn--accent {
  background: var(--bronze-ink);
  color: #fff;
  border-color: var(--bronze-ink);
}
.btn--accent:hover {
  background: var(--bronze-ink-deep);
  border-color: var(--bronze-ink-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--ink);
}
.section--dark .btn--ghost {
  color: var(--on-dark);
  border-color: var(--border-on-dark);
}
.section--dark .btn--ghost:hover {
  border-color: var(--on-dark);
}

/* arrow pill — dark fill, circular icon on the left */
.btn--arrow {
  background: var(--ink);
  color: var(--on-dark);
  border-color: var(--ink);
  border-radius: var(--r-pill);
  padding: 6px 22px 6px 6px;
  gap: 12px;
}
.btn--arrow .ico {
  width: 32px;
  height: 32px;
  background: var(--canvas);
  color: var(--ink);
}
.btn--arrow .ico svg {
  width: 12px;
  height: 12px;
}
.btn--arrow:hover {
  background: #3d3d3d;
  border-color: #3d3d3d;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

/* inline arrow link */
.alink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-caption);
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}
.alink .ico {
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.alink:hover .ico {
  transform: translateX(3px);
  background: var(--bronze-ink);
}

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

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease);
}
.header.is-stuck {
  background: var(--canvas);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.logo {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.logo span {
  color: var(--bronze-ink);
}

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

.nav__link {
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--ink);
}

.header__cta {
  padding: 10px 22px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.2s linear;
}
.burger span:nth-child(1) {
  top: 17px;
}
.burger span:nth-child(2) {
  top: 23px;
}
.burger span:nth-child(3) {
  top: 29px;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--canvas);
  padding: 32px var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
    visibility 0.3s;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.drawer a:not(.btn) {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.drawer .btn {
  margin-top: 32px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .nav,
  .header__cta {
    display: none;
  }
  .burger {
    display: block;
  }
}

body.is-locked {
  overflow: hidden;
}

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

.hero {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 0;
}

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

/* The charcoal hero inverts everything that assumed a light canvas: the header
   sitting on top of it, the primary button fill, the facts rules. */
.hero--dark {
  background: var(--ink);
  color: var(--on-dark);
  padding-bottom: var(--section-y);
}

.hero--dark .lead,
.hero--dark .hero__meta {
  color: var(--on-dark-muted);
}

.hero--dark .badge {
  background: transparent;
  border-color: var(--border-on-dark);
  color: var(--on-dark-muted);
}

/* charcoal-on-charcoal would vanish: the primary action flips to cream */
.hero--dark .btn--arrow {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--canvas);
}
.hero--dark .btn--arrow .ico {
  background: var(--ink);
  color: var(--canvas);
}
.hero--dark .btn--arrow:hover {
  background: #ebe8e2;
  border-color: #ebe8e2;
}

.hero--dark .btn--ghost {
  color: var(--on-dark);
  border-color: var(--border-on-dark);
}
.hero--dark .btn--ghost:hover {
  border-color: var(--on-dark);
}

/* on charcoal the light bronze is the readable one (4.58:1) */
.hero--dark .hero__meta .dot {
  background: var(--bronze);
}

.hero--dark .facts,
.hero--dark .fact {
  border-color: var(--border-on-dark);
}
.hero--dark .fact__label {
  color: var(--on-dark-muted);
}

/* ------------------------------------------- header sitting on a dark hero -- */

.has-dark-hero .header:not(.is-stuck) .logo {
  color: var(--on-dark);
}
.has-dark-hero .header:not(.is-stuck) .logo span {
  color: var(--bronze);
}
.has-dark-hero .header:not(.is-stuck) .nav__link {
  color: var(--on-dark-muted);
}
.has-dark-hero .header:not(.is-stuck) .nav__link:hover,
.has-dark-hero .header:not(.is-stuck) .nav__link[aria-current="page"] {
  color: var(--on-dark);
}
.has-dark-hero .header:not(.is-stuck) .btn--primary {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--canvas);
}
.has-dark-hero .header:not(.is-stuck) .btn--primary:hover {
  background: #ebe8e2;
  border-color: #ebe8e2;
}
.has-dark-hero .header:not(.is-stuck) .burger span {
  background: var(--on-dark);
}

/* Keeps the container's left inset so the headline aligns with every section
   below, then runs to the right viewport edge so the photograph reads big.
   Uses 100% (not 100vw) so a visible scrollbar cannot cause overflow. */
.hero__wrap {
  width: 100%;
  padding-left: max(
    var(--gutter),
    calc((100% - var(--container)) / 2 + var(--gutter))
  );
  padding-right: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  padding: 7px 14px;
}

.hero__title {
  margin-bottom: 26px;
}

.hero .lead {
  font-size: 20px;
  line-height: 1.45;
  max-width: 44ch;
}

@media (max-width: 900px) {
  .hero .lead {
    font-size: 18px;
  }
}

.hero__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-img) 0 0 var(--r-img);
  background: var(--ash);
}
.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 36px;
  font-size: var(--text-caption);
  color: var(--ink-muted);
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero__meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze-ink);
  flex: none;
}

@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--header-h) + 40px);
  }
  .hero__wrap {
    padding-inline: var(--gutter);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__figure {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-img);
  }
}

/* ---------------------------------------------------------------- facts -- */

/* Structure, not containers: the facts are a ruled row. Cards are reserved for
   blocks that hold a photograph. */
.facts {
  margin-top: var(--section-y);
  border-top: 1px solid var(--border);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--border);
}
.fact:last-child {
  border-right: 0;
}
.fact:not(:first-child) {
  padding-left: 32px;
}

.fact__value {
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.fact__label {
  font-size: var(--text-caption);
  color: var(--ink-muted);
}

/* 900, not 760: an iPad portrait is 768px, so a 760px breakpoint left four
   cramped columns on the most common tablet. This matches every other grid. */
@media (max-width: 900px) {
  .facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact {
    padding: 24px 24px 24px 0;
    border-bottom: 1px solid var(--border);
  }
  .fact:nth-child(2n) {
    border-right: 0;
    padding-left: 24px;
  }
  .fact:nth-child(3) {
    padding-left: 0;
  }
  .fact:nth-child(3),
  .fact:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .fact {
    padding: 24px 14px 24px 0;
  }
  .fact:nth-child(2n) {
    padding-left: 14px;
  }
  .fact__value {
    font-size: 26px;
  }
}

/* ------------------------------------------------------------- manifesto -- */

/* The one sanctioned use of the accent as a surface: a full-bleed band. It is
   the loudest moment on the page, so it carries the brand line and nothing
   else — the type fills the band instead of floating in it. */
.manifesto {
  background: var(--bronze-wash);
  padding-block: clamp(72px, 9vw, 128px);
  text-align: center;
  overflow: hidden;
}

.manifesto__line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 clamp(24px, 4vw, 64px);
  font-size: clamp(2.4rem, 8.4vw, 7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
/* --bronze is 2.27:1 on this band. The periods are display-scale glyphs and
   need only 3:1; --bronze-ink gives 3.63:1. */
.manifesto__line i {
  font-style: normal;
  color: var(--bronze-ink);
}

/* --ink-muted is 3.96:1 here, short of the 4.5:1 a 16px line needs. */
.manifesto__sub {
  margin-top: clamp(20px, 2.5vw, 36px);
  font-size: var(--text-caption);
  color: var(--ink-soft);
}

/* ------------------------------------------------------------- producten -- */

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

/* Column layout + auto margin keeps the arrow links on a shared baseline even
   though the three descriptions differ in length. */
.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.product .alink {
  margin-top: auto;
  align-self: flex-start;
}

/* The whole card is the click target — the arrow link is just the visible
   affordance. Stretching it beats nesting a second <a>, which would be an
   invalid and unreadable structure. */
.product .alink::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product:hover .alink .ico {
  transform: translateX(3px);
  background: var(--bronze-ink);
}

.product__figure {
  aspect-ratio: 4 / 3;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: var(--r-img);
  background: var(--ash);
}
.product__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product:hover .product__figure img {
  transform: scale(1.03);
}

.product__index {
  display: block;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--bronze-ink);
  margin-bottom: 10px;
}

.product h3 {
  margin-bottom: 10px;
}

.product p {
  font-size: var(--text-caption);
  color: var(--ink-soft);
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------------------------------------------------------------- cards -- */

/* Numbered editorial rows. Boxing four two-line claims produced four mostly
   empty cards; a ruled list gives the same information more confidently. */
.reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
}

.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 28px;
  padding-block: 40px;
  border-top: 1px solid var(--border);
}
.section--dark .reason {
  border-top-color: var(--border-on-dark);
}

.reason__num {
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--bronze-ink);
  line-height: 1.6;
}

.reason h3 {
  margin-bottom: 10px;
}

.reason p {
  font-size: var(--text-caption);
  color: var(--ink-soft);
  max-width: 42ch;
}

@media (max-width: 860px) {
  .reasons {
    grid-template-columns: 1fr;
  }
  .reason {
    column-gap: 20px;
    padding-block: 28px;
  }
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 28px;
  padding-block: 40px;
  border-top: 1px solid var(--border-on-dark);
}

.step__num {
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--bronze);
  line-height: 1.6;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: var(--text-caption);
  color: var(--on-dark-muted);
  max-width: 44ch;
}

/* The closing statement carries the section, so it is set at display scale. */
.steps__note {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--border-on-dark);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--on-dark);
  max-width: 20ch;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    column-gap: 20px;
    padding-block: 28px;
  }
  .steps__note {
    margin-top: 56px;
    padding-top: 40px;
  }
}

/* ------------------------------------------------------------- catalogue -- */

/* Same card language as the home page's product cards, at catalogue density. */
.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px var(--gutter);
}

.cat {
  display: flex;
  flex-direction: column;
}

.cat__figure {
  aspect-ratio: 4 / 3;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: var(--r-img);
  background: var(--ash);
}
.cat__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat:hover .cat__figure img {
  transform: scale(1.03);
}

.cat__index {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--bronze-ink);
  margin-bottom: 8px;
}

.cat h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.cat p {
  font-size: var(--text-caption);
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .catalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px var(--gutter);
  }
}
@media (max-width: 560px) {
  .catalog {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------------------------------------------------------------- faq -- */

/* Built on <details>/<summary> so it opens and closes with no JS at all, and
   is keyboard- and screen-reader-navigable for free. */
.faq {
  max-width: 900px;
}

.faq__item {
  border-top: 1px solid var(--border);
}
.faq__item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-size: var(--text-subheading);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  transition: color 0.25s var(--ease);
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q:hover {
  color: var(--bronze-ink);
}

/* plus/minus drawn from two rules so no icon font is needed */
.faq__sign {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: var(--bronze-ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq__sign::before {
  top: 10px;
  left: 0;
  width: 22px;
  height: 2px;
}
.faq__sign::after {
  top: 0;
  left: 10px;
  width: 2px;
  height: 22px;
}
.faq__item[open] .faq__sign::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__a {
  padding: 0 56px 32px 0;
  font-size: var(--text-caption);
  color: var(--ink-soft);
  max-width: 68ch;
}
.faq__a p + p {
  margin-top: 14px;
}

@media (max-width: 600px) {
  .faq__q {
    font-size: 19px;
    padding: 22px 0;
  }
  .faq__a {
    padding-right: 0;
    padding-bottom: 24px;
  }
}

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

/* No container: the headline is the section. */
.cta {
  text-align: center;
  padding-block: clamp(96px, 12vw, 176px);
}

.cta__title {
  font-size: clamp(2.4rem, 6.4vw, 5.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.028em;
  max-width: 16ch;
  margin-inline: auto;
}

.cta .lead {
  margin: 28px auto 0;
  text-align: center;
}
.cta .btn-row {
  justify-content: center;
}
.cta__note {
  margin-top: 24px;
  font-size: var(--text-caption);
  color: var(--ink-faint);
}

/* bedankt.html reuses the centred treatment at a calmer size */
.cta--compact .cta__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

/* ---------------------------------------------------------------- contact -- */

.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

/* Grid items default to min-width:auto and so refuse to shrink below their
   longest word. On a 320px phone a badge like
   "Officieel VD AluSysteme-vertegenwoordiger NL" pushed this column past the
   viewport. */
.contact-grid > * {
  min-width: 0;
}

.info-block + .info-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.info-block__label {
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.info-block__value {
  font-size: var(--text-subheading);
  font-weight: 500;
  letter-spacing: -0.012em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.3;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
}
a.info-block__value:hover {
  color: var(--bronze-ink);
}

.info-block p {
  font-size: var(--text-caption);
  color: var(--ink-muted);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.badge {
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-badge);
  padding: 5px 10px;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------------------------------------------------------------- form -- */

.form {
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 40px;
}

@media (max-width: 600px) {
  .form {
    padding: 24px;
  }
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field .req {
  color: var(--bronze-ink);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: var(--text-caption);
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  transition: border-color 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze-ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}

.form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.form__note {
  font-size: 14px;
  color: var(--ink-faint);
  max-width: 34ch;
  line-height: 1.45;
}

.form__honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

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

.footer {
  background: var(--ink);
  color: var(--on-dark);
  padding-block: 80px 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer .logo {
  color: var(--on-dark);
  font-size: 24px;
}
.footer .logo span {
  color: var(--bronze);
}

.footer__tagline {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.footer__tagline i {
  font-style: normal;
  color: var(--bronze);
}

.footer__blurb {
  margin-top: 18px;
  font-size: var(--text-caption);
  color: var(--on-dark-muted);
  max-width: 34ch;
}

.footer__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 18px;
}

.footer li + li {
  margin-top: 10px;
}

.footer a {
  color: var(--on-dark-muted);
  text-decoration: none;
  font-size: var(--text-caption);
  transition: color 0.25s var(--ease);
}
.footer a:hover {
  color: var(--on-dark);
}

/* -------------------------------------------------------------- socials -- */

.socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  display: grid;
  place-items: center;
  color: var(--on-dark-muted);
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.social svg {
  width: 18px;
  height: 18px;
}
.social:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ink);
}

/* Named towns are a local-search signal, and a real answer to "do you come to
   my town?" — so they are set as readable text, not hidden markup. */
.footer__area {
  padding-top: 28px;
  border-top: 1px solid var(--border-on-dark);
  margin-bottom: 24px;
}
.footer__area .footer__title {
  margin-bottom: 12px;
}
.footer__area p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-dark-muted);
  max-width: 90ch;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
  font-size: 14px;
  color: var(--on-dark-muted);
}

@media (max-width: 760px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------------------------------------------------------------- reveal -- */

/* Only hide reveal targets when JS is present to un-hide them. Without the
   .js class (script blocked/failed) the content stays visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Children of a .stagger container come in one after another rather than as a
   single block. --i is set per child by main.js, so the delay survives cards
   being added or reordered. */
.js .stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js .stagger.is-in > * {
  opacity: 1;
  transform: none;
}

/* A long catalogue would otherwise end on a 1s delay; cap the ramp. */
.js .stagger--fast > * {
  transition-delay: calc(var(--i, 0) * 45ms);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal,
  .js .stagger > * {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
}
