@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   FRATEUR — "Spectacle & Vakmanschap"
   Editorial Belgian craft. Warm cream + ink + single ember accent.
   Signature device: THE MEASURE — hairline tick rules (scale-rule),
   oversized Fraunces numerals and clipped editorial type reveals.
   ============================================================ */

:root {
  /* ---- Core palette ---- */
  --ink: #101315;
  --ink-soft: #1b1b1b;
  --cream: #f5f0e8;
  --paper: #fbf8f3;
  --stone: #6b6258;
  --border: #e2d9cc;
  --ember: #c2410c;
  --ember-hover: #9a3412;
  --ember-tint: #fed7aa;
  --white: #ffffff;

  /* ---- Derived / functional ---- */
  --ink-70: rgba(16, 19, 21, 0.72);
  --ink-52: rgba(16, 19, 21, 0.52);
  --ink-08: rgba(16, 19, 21, 0.08);
  --ink-04: rgba(16, 19, 21, 0.04);
  --cream-70: rgba(245, 240, 232, 0.72);
  --cream-40: rgba(245, 240, 232, 0.42);
  --cream-12: rgba(245, 240, 232, 0.12);

  /* ---- 8pt spacing scale ---- */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-7: 56px;
  --s-8: 64px;
  --s-10: 80px;
  --s-12: 96px;
  --s-15: 120px;
  --s-18: 144px;

  /* ---- Layout ---- */
  --container: 1240px;
  --gutter: 20px;
  --section-pad: clamp(64px, 9vw, 120px);
  --measure: 68ch;
  --measure-tight: 54ch;

  /* ---- Type scale (modular, rem) ---- */
  --t-xs: 0.8125rem;
  --t-sm: 0.875rem;
  --t-base: 1.0625rem;
  --t-md: 1.1875rem;
  --t-lg: 1.375rem;
  --t-xl: 1.75rem;
  --t-2xl: clamp(1.875rem, 1.35rem + 1.6vw, 2.75rem);
  --t-3xl: clamp(2.25rem, 1.5rem + 2.8vw, 3.375rem);
  --t-4xl: clamp(2.625rem, 1.5rem + 4.6vw, 4.75rem);
  --t-5xl: clamp(3.25rem, 1.6rem + 7vw, 6rem);

  /* ---- Families ---- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Elevation system (hard, directional, no soft blobs) ---- */
  --elev-1: 0 1px 0 rgba(16, 19, 21, 0.05), 0 10px 24px -18px rgba(16, 19, 21, 0.45);
  --elev-2: 0 24px 48px -32px rgba(16, 19, 21, 0.55), 0 2px 0 rgba(16, 19, 21, 0.06);
  --elev-3: 0 48px 96px -56px rgba(16, 19, 21, 0.7);
  --elev-ink: 0 32px 64px -40px rgba(0, 0, 0, 0.85);

  /* ---- Radii ---- */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-pill: 999px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 0.68, 0.16, 1);
  --ease-in-out: cubic-bezier(0.6, 0.04, 0.2, 1);
  --dur: 0.55s;

  /* ---- Texture ---- */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   RESET / BASE
   ============================================================ */

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

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

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* film grain — tactile editorial texture over everything, non-interactive */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: 0.035;
  mix-blend-mode: multiply;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

::selection {
  background: var(--ember);
  color: var(--white);
}

/* ============================================================
   SKIP LINK
   ============================================================ */

.skip-link {
  position: absolute;
  left: var(--s-3);
  top: var(--s-3);
  z-index: 9999;
  transform: translateY(-200%);
  padding: 12px 20px;
  background: var(--ink);
  color: var(--cream);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ============================================================
   CONTAINER
   ============================================================ */

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

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(16, 19, 21, 0.55), rgba(16, 19, 21, 0));
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 243, 0.9);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  color: var(--ink);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(16, 19, 21, 0.04), 0 18px 40px -38px rgba(16, 19, 21, 0.9);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 72px;
  padding-block: 10px;
}

/* ---- Brand ---- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: var(--r-xs);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  overflow: hidden;
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 46%, currentColor 46%, currentColor 54%, transparent 54%);
  opacity: 0.14;
}

.brand:hover .brand-mark {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--white);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.62;
}

/* ---- Nav toggle (>=44px target) ---- */

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-inline-end: -6px;
  border-radius: var(--r-sm);
  color: inherit;
  transition: background-color 0.25s var(--ease-out);
}

.nav-toggle:hover {
  background: rgba(127, 127, 127, 0.14);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s var(--ease-out);
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Primary nav: mobile drawer ---- */

.primary-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(380px, 88vw);
  height: 100dvh;
  padding: calc(var(--s-10) + 20px) var(--s-5) var(--s-6);
  background: var(--paper);
  color: var(--ink);
  border-left: 1px solid var(--border);
  box-shadow: var(--elev-3);
  transform: translateX(101%);
  visibility: hidden;
  transition: transform 0.5s var(--ease-out), visibility 0.5s;
}

.primary-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: 0.04;
  pointer-events: none;
}

.primary-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  counter-reset: navidx;
}

.nav-list li {
  border-bottom: 1px solid var(--border);
}

.nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 56px;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.28s var(--ease-out), padding-left 0.28s var(--ease-out);
}

.nav-list a::before {
  counter-increment: navidx;
  content: "0" counter(navidx);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--stone);
  transform: translateY(-0.35em);
}

.nav-list a:hover {
  color: var(--ember);
  padding-left: 6px;
}

/* ---- Buttons ---- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.28s var(--ease-out), color 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out), transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
  border-color: var(--ember);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, var(--elev-1);
}

.btn-primary:hover {
  background: var(--ember-hover);
  border-color: var(--ember-hover);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, var(--elev-2);
}

.btn-primary::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.28s var(--ease-out);
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.nav-cta {
  min-height: 44px;
  padding: 12px 18px;
  font-size: var(--t-sm);
  flex: 0 0 auto;
}

/* ============================================================
   SIGNATURE DEVICE — THE MEASURE
   ============================================================ */

.scale-rule {
  --tick: 12px;
  --tick-major: 96px;
  display: block;
  width: 100%;
  height: 10px;
  color: var(--ember);
  opacity: 0.5;
  background-image: repeating-linear-gradient(
      to right,
      currentColor 0 1px,
      transparent 1px var(--tick)
    ),
    repeating-linear-gradient(to right, currentColor 0 1px, transparent 1px var(--tick-major));
  background-size: 100% 5px, 100% 10px;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
}

.scale-rule--light {
  color: var(--cream);
  opacity: 0.28;
}

/* Overline with a measuring tick prefix */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
}

.overline::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}

.overline-light {
  color: var(--ember-tint);
}

/* ============================================================
   BANDS + SECTIONS
   ============================================================ */

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

.band-cream {
  background: var(--cream);
}

.section {
  position: relative;
  padding-block: var(--section-pad);
}

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

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

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 780px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head h2 {
  font-size: var(--t-3xl);
}

.lead {
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--ink-70);
  max-width: var(--measure);
}

.section-head .lead {
  max-width: 58ch;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(620px, 92svh, 940px);
  margin-top: calc(-1 * (72px + 20px));
  padding-top: calc(72px + 20px);
  overflow: clip;
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.94) contrast(1.05);
  transform: scale(1.08);
  animation: hero-drift 26s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

@keyframes hero-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(0, -1.6%, 0);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      to top,
      rgba(16, 19, 21, 0.94) 0%,
      rgba(16, 19, 21, 0.6) 34%,
      rgba(16, 19, 21, 0.28) 58%,
      rgba(16, 19, 21, 0.62) 100%
    ),
    radial-gradient(120% 90% at 78% 12%, rgba(194, 65, 12, 0.28) 0%, transparent 58%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(56px, 10vw, 108px) var(--gutter) clamp(72px, 11vw, 128px);
}

.hero-title {
  max-width: 16ch;
  font-size: var(--t-5xl);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.032em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  -webkit-clip-path: inset(-20% -20% -20% -20%);
  clip-path: inset(-20% -20% -20% -20%);
  animation: title-rise 1.05s var(--ease-out) 0.08s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ember-tint);
}

@keyframes title-rise {
  from {
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% -20%);
    clip-path: inset(0 0 100% -20%);
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    -webkit-clip-path: inset(-20% -20% -20% -20%);
    clip-path: inset(-20% -20% -20% -20%);
    transform: translateY(0);
  }
}

.hero-sub {
  max-width: 56ch;
  font-size: clamp(1.0625rem, 0.9rem + 0.6vw, 1.3125rem);
  line-height: 1.55;
  color: var(--cream-70);
  animation: fade-rise 0.9s var(--ease-out) 0.26s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-2);
  animation: fade-rise 0.9s var(--ease-out) 0.38s both;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream-40);
}

.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* credibility chip — in-flow, never floating over the stats */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-2);
  padding: 9px 16px 9px 12px;
  border: 1px solid var(--cream-12);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-70);
  animation: fade-rise 0.9s var(--ease-out) 0.5s both;
}

.chip-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.22);
  animation: chip-pulse 2.8s var(--ease-in-out) infinite;
}

@keyframes chip-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.22);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(194, 65, 12, 0);
  }
}

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 64px);
}

.stats-band::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ember), transparent);
  opacity: 0.45;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-5) var(--s-4);
  counter-reset: statidx;
}

.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--s-2);
  border-top: 1px solid var(--border);
}

.stat::before {
  counter-increment: statidx;
  content: "0" counter(statidx);
  position: absolute;
  top: -9px;
  right: 0;
  padding-inline: 6px;
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--stone);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.4rem + 3vw, 3.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.stat-label {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================================
   SERVICES — ASYMMETRIC EDITORIAL MOSAIC
   ============================================================ */

.services {
  position: relative;
  background: var(--cream);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.feature:hover {
  border-color: var(--ink-08);
  transform: translateY(-4px);
  box-shadow: var(--elev-2);
}

.feature-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  isolation: isolate;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 19, 21, 0.62) 0%,
    rgba(16, 19, 21, 0.14) 42%,
    rgba(16, 19, 21, 0) 72%
  );
  pointer-events: none;
}

.feature:hover .feature-media img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.06);
}

.feature-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-3) var(--s-4);
}

.feature-body .overline {
  font-size: 0.625rem;
}

.feature-body h3 {
  font-size: var(--t-xl);
  line-height: 1.12;
}

.feature-body p {
  font-size: var(--t-base);
  line-height: 1.58;
  color: var(--ink-70);
  max-width: 46ch;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: var(--s-1);
  padding-bottom: 3px;
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ember);
  border-bottom: 1px solid currentColor;
  transition: color 0.28s var(--ease-out), gap 0.28s var(--ease-out);
}

.link-more::after {
  content: "→";
  font-size: 1em;
  line-height: 1;
  transition: transform 0.32s var(--ease-out);
}

.link-more:hover {
  color: var(--ember-hover);
  gap: 16px;
}

.link-more:hover::after {
  transform: translateX(3px);
}

.feature-tall .feature-media {
  aspect-ratio: 3 / 4;
}

.feature-wide .feature-media {
  aspect-ratio: 16 / 11;
}

/* ============================================================
   SPLIT LAYOUTS
   ============================================================ */

.split {
  position: relative;
  padding-block: var(--section-pad);
  background: var(--cream);
}

.split.section-cream {
  background: var(--paper);
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink);
  isolation: isolate;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 1.1s var(--ease-out);
}

.split-media:hover img {
  transform: scale(1.035);
}

.split-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  max-width: 62ch;
}

.split-body h2 {
  font-size: var(--t-2xl);
  line-height: 1.04;
}

.split-body p {
  font-size: var(--t-md);
  line-height: 1.58;
  color: var(--ink-70);
  max-width: var(--measure-tight);
}

.split-flagship {
  background: var(--cream);
}

.split-media-framed {
  border: 1px solid var(--border);
  padding: 10px;
  background: var(--paper);
  box-shadow: var(--elev-1);
  border-radius: var(--r-md);
}

.split-media-framed img {
  border-radius: var(--r-sm);
}

.split-media-framed::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 84px;
  height: 1px;
  background: var(--ember);
  opacity: 0.85;
}

.split-media-tall img {
  aspect-ratio: 3 / 4;
}

/* spec list */
.spec-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: var(--s-1);
  border-top: 1px solid var(--border);
}

.spec-list li,
.spec-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 13px 2px;
  border-bottom: 1px solid var(--border);
  font-size: var(--t-sm);
  color: var(--ink-70);
}

.spec-list dt,
.spec-list strong,
.spec-list span:first-child {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: var(--stone);
}

.spec-list dd,
.spec-list span:last-child {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   GUINNESS / CREDIBILITY — DARK BAND
   ============================================================ */

.band-ink {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: clip;
  isolation: isolate;
}

.band-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: 0.05;
  pointer-events: none;
}

.band-ink::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 88% -10%, rgba(194, 65, 12, 0.3) 0%, transparent 62%);
  pointer-events: none;
}

.band-ink .container {
  position: relative;
  z-index: 2;
}

.record {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.record-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--cream-12);
  box-shadow: var(--elev-ink);
}

.record-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1) brightness(0.94);
}

.record-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 19, 21, 0.72), rgba(16, 19, 21, 0.05) 55%);
  pointer-events: none;
}

.record-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}

.record-body h2 {
  font-size: var(--t-3xl);
  color: var(--white);
  max-width: 20ch;
}

.record-body h2 em {
  font-style: italic;
  color: var(--ember-tint);
}

.record-body p {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--cream-70);
  max-width: 52ch;
}

/* logo strip */
.logo-strip-label {
  display: block;
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2) clamp(20px, 4vw, 48px);
  padding-top: var(--s-3);
  border-top: 1px solid var(--cream-12);
}

.logo-item {
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 0.8rem + 0.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  opacity: 0.42;
  filter: grayscale(1);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out),
    letter-spacing 0.35s var(--ease-out);
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  letter-spacing: 0.03em;
}

/* ============================================================
   CRAFT / ALLROUND VAKMANSCHAP
   ============================================================ */

.craft {
  background: var(--paper);
  padding-block: var(--section-pad);
}

.craft-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.craft-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.4s var(--ease-out), padding-left 0.4s var(--ease-out);
}

.craft-item:hover {
  background: var(--ink-04);
  padding-left: var(--s-2);
}

.craft-index {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ember);
  min-width: 2.2ch;
}

.craft-text {
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 62ch;
}

.craft-text strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* ============================================================
   REASSURANCE (LOW, POSITIVE, PRACTICAL)
   ============================================================ */

.reassure {
  background: var(--cream);
  padding-block: var(--section-pad);
}

.reassure-title {
  font-size: var(--t-2xl);
  max-width: 24ch;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.reassure-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-4);
  counter-reset: reassureidx;
  border-top: 1px solid var(--border);
  padding-top: var(--s-5);
}

.reassure-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: var(--s-5);
  counter-increment: reassureidx;
}

.reassure-item::before {
  content: "0" counter(reassureidx);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ember);
}

.reassure-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 18px;
  height: 1px;
  background: var(--border);
}

.reassure-item h3 {
  font-size: var(--t-lg);
  line-height: 1.16;
}

.reassure-item p {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 34ch;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(72px, 10vw, 128px);
  overflow: clip;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 12% 110%, rgba(194, 65, 12, 0.34) 0%, transparent 60%),
    linear-gradient(to top, rgba(16, 19, 21, 0.6), rgba(16, 19, 21, 0));
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: 0.05;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.final-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
}

.final-cta-text h2 {
  font-size: var(--t-4xl);
  color: var(--white);
  max-width: 18ch;
  line-height: 0.99;
}

.final-cta-text p {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--cream-70);
  max-width: 52ch;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}

.final-cta .scale-rule {
  margin-bottom: var(--s-5);
  color: var(--cream);
  opacity: 0.3;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  background: #0b0d0e;
  color: var(--cream-70);
  padding-block: clamp(56px, 8vw, 96px) var(--s-6);
  overflow: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: var(--cream-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-6) var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--cream-12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  min-width: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 44ch;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.footer-blurb {
  font-size: var(--t-sm);
  line-height: 1.62;
  color: var(--cream-40);
  max-width: 40ch;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-40);
  margin-bottom: var(--s-1);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  display: inline-block;
  font-size: var(--t-sm);
  color: var(--cream-70);
  transition: color 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.footer-list a:hover {
  color: var(--ember-tint);
  transform: translateX(3px);
}

.footer-list li:last-child {
  margin-top: 2px;
}

.footer-col .scale-rule {
  margin-top: var(--s-1);
  color: var(--cream);
  opacity: 0.22;
}

/* ============================================================
   SCROLL REVEAL — progressive enhancement only
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .feature,
    .split-media,
    .split-body,
    .craft-item,
    .reassure-item,
    .stat,
    .record-body,
    .logo-strip {
      animation: reveal-up both linear;
      animation-timeline: view();
      animation-range: entry 4% cover 32%;
    }

    .split-media,
    .record-media {
      animation-name: reveal-media;
    }
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-media {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (min-width: 640px) {
  :root {
    --gutter: 24px;
  }

  .stats-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .craft-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--s-6);
  }

  .reassure-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-5) var(--s-5);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) {
  .editorial-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--s-5);
    align-items: stretch;
  }

  .editorial-grid > .feature:nth-child(1) {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
  }

  .editorial-grid > .feature:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
  }

  .editorial-grid > .feature:nth-child(3) {
    grid-column: 8 / span 5;
    grid-row: 2;
  }

  .editorial-grid > .feature:nth-child(4) {
    grid-column: 3 / span 8;
    grid-row: 3;
  }

  .editorial-grid > .feature:nth-child(1) .feature-media {
    flex: 1 1 auto;
    aspect-ratio: auto;
    min-height: 380px;
  }

  .editorial-grid > .feature:nth-child(1) .feature-body {
    padding: var(--s-4) var(--s-5) var(--s-5);
  }

  .editorial-grid > .feature:nth-child(4) .feature-media {
    aspect-ratio: 21 / 8;
  }

  .split-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 96px);
  }

  .split-flagship .split-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .split-reverse .split-inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }

  .split-reverse .split-media {
    order: 2;
  }

  .split-reverse .split-body {
    order: 1;
  }

  .record {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
  }

  .record-body {
    order: 1;
  }

  .record-media {
    order: 2;
  }

  .craft-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reassure-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    align-items: end;
  }

  .final-cta-actions {
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
    gap: var(--s-8) var(--s-6);
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP NAV
   ============================================================ */

@media (min-width: 1024px) {
  :root {
    --gutter: 32px;
  }

  html {
    scroll-padding-top: 112px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    color: inherit;
    border: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .primary-nav::before {
    display: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-inline-end: var(--s-3);
  }

  .nav-list li {
    border-bottom: 0;
  }

  .nav-list a {
    gap: 0;
    min-height: 40px;
    padding: 8px 12px;
    font-family: var(--font-sans);
    font-size: var(--t-sm);
    font-weight: 500;
    letter-spacing: 0.008em;
    border-radius: var(--r-sm);
    transition: color 0.28s var(--ease-out), background-color 0.28s var(--ease-out);
  }

  .nav-list a::before {
    display: none;
  }

  .nav-list a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
  }

  .nav-list a:hover {
    padding-left: 12px;
    background: rgba(127, 127, 127, 0.1);
    color: var(--ember);
  }

  .site-header:not(.is-scrolled) .nav-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ember-tint);
  }

  .nav-list a:hover::after {
    transform: scaleX(1);
  }

  .hero {
    min-height: clamp(700px, 94svh, 1000px);
  }
}

@media (min-width: 1200px) {
  .stats-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--s-5) var(--s-5);
  }

  .hero-inner {
    padding-bottom: clamp(96px, 12vw, 148px);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-media img {
    transform: scale(1.04);
    animation: none !important;
  }

  .hero-title,
  .hero-sub,
  .hero-actions,
  .hero-chip {
    opacity: 1;
    transform: none;
    clip-path: none;
    -webkit-clip-path: none;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  body::after,
  .site-header,
  .hero-scrim,
  .final-cta::before,
  .final-cta::after {
    display: none !important;
  }

  .hero,
  .band-ink,
  .final-cta,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }
}