/* =========================================================
   VOOR MENSEN ONLINE — HOMEPAGE · v1.1
   Industrial Editorial · Rotterdam · Hi-vis
   Polish pass + fotografie
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink: #0a0b0d;
  --ink-2: #141619;
  --ink-3: #1d2025;
  --paper: #efeae0;
  --paper-2: #e6e0d3;
  --paper-3: #d9d2c2;
  --hivis: #ff5b14;
  --hivis-dim: #c94309;
  --hivis-glow: #ff7c3d;
  --steel: #3d4147;
  --steel-2: #6b7078;
  --steel-3: #9aa0a9;
  --line: rgba(10, 11, 13, 0.12);
  --line-light: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(10, 11, 13, 0.9);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --grain:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--hivis); color: var(--ink); }

/* ---------- Global chrome: grain overlay ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image: var(--grain);
  background-size: 200px 200px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ---------- Utility: container ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography utilities ---------- */
.mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* =========================================================
   MARQUEE TICKER (top strip)
   ========================================================= */
.ticker {
  background: var(--hivis);
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1.5px solid var(--ink);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  gap: 3rem;
  animation: tickmove 45s linear infinite;
}
.ticker__track span::after {
  content: "•";
  margin-left: 3rem;
  color: var(--ink);
  opacity: 0.4;
}
@keyframes tickmove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 32px; /* below ticker */
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.96);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 91, 20, 0.35);
  box-shadow:
    0 1px 0 0 rgba(0, 0, 0, 0.6),
    0 10px 30px -10px rgba(0, 0, 0, 0.55);
  color: #fff;
}
.nav::after {
  /* subtle hi-vis accent line */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--hivis) 20%, var(--hivis) 80%, transparent 100%);
  opacity: 0.55;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
}
.nav__logo b { margin: 0 0.05em; }
.nav__logo b {
  color: var(--hivis);
  font-weight: 800;
}
.nav__logo::after {
  content: "/010";
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-left: 0.35rem;
  align-self: center;
  margin-bottom: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  position: relative;
}
.nav__links a:hover { color: #fff; }
.nav__links a:not(.btn):hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--hivis);
}
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block; width: 26px; height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 2px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  white-space: nowrap;
}
.btn::after {
  content: "↗";
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.18s ease;
}
.btn:hover::after { transform: translate(2px, -2px); }
.btn--hivis {
  background: var(--hivis);
  color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.btn--hivis:hover {
  background: var(--hivis-glow);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 4px 4px 0 0 var(--hivis);
}
.btn--dark:hover {
  background: var(--ink-3);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--hivis);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.68rem; box-shadow: 3px 3px 0 0 var(--ink); }
.btn--lg { padding: 1.15rem 1.8rem; font-size: 0.78rem; }

/* Layout: main offset for fixed ticker (32px) + nav (72px) = 104px, plus breathing */
main { padding-top: 120px; }
@media (max-width: 700px) {
  main { padding-top: 112px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* blueprint grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  pointer-events: none;
  z-index: 0;
}
.hero__corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  z-index: 2;
}
.hero__corner--tl { top: 1.5rem; left: var(--gutter); }
.hero__corner--tr { top: 1.5rem; right: var(--gutter); }
.hero__corner--bl { bottom: 1.75rem; left: var(--gutter); }
.hero__corner--br { bottom: 1.75rem; right: var(--gutter); text-align: right; }
@media (max-width: 900px) {
  .hero__corner { font-size: 0.58rem; }
  .hero__corner--tr, .hero__corner--br { display: none; }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.hero__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__meta .mono { color: rgba(255, 255, 255, 0.5); }
.hero__meta .mono b { color: var(--hivis); font-weight: 500; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9.5vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #fff;
}
.hero__title .row {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__title .row:nth-child(1) { animation-delay: 0.1s; }
.hero__title .row:nth-child(2) { animation-delay: 0.2s; }
.hero__title .row:nth-child(3) { animation-delay: 0.3s; }
.hero__title .hi { color: var(--hivis); font-style: italic; }
.hero__title .num {
  font-family: var(--font-display);
  font-weight: 800;
  -webkit-text-stroke: 2px var(--hivis);
  color: transparent;
  font-style: normal;
  margin-right: 0.05em;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sticker {
  position: absolute;
  top: 0;
  right: var(--gutter);
  width: clamp(120px, 18vw, 210px);
  aspect-ratio: 1;
  background: var(--hivis);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  box-shadow: 0 10px 40px rgba(255, 91, 20, 0.4);
  animation: wobble 6s ease-in-out infinite;
  z-index: 2;
  text-align: center;
  padding: 1rem;
}
.hero__sticker .s1 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.hero__sticker .s2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__sticker .s3 {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.8;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(-4deg) scale(1.03); }
}

.hero__aside {
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  max-width: 42ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s forwards;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.65s forwards;
}

/* =========================================================
   TRUST BAR — monospaced engineering strip
   ========================================================= */
.trust {
  background: var(--ink-2);
  color: #fff;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__cell {
  padding: 0.25rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.trust__cell:first-child { border-left: none; padding-left: 0; }
.trust__idx {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--hivis);
  margin-bottom: 0.3rem;
}
.trust__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.35rem;
}
.trust__lbl {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--steel-3);
  text-transform: uppercase;
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  position: relative;
}
.section--dark {
  background: var(--ink);
  color: #fff;
}
.section--paper-2 {
  background: var(--paper-2);
}
.section--white {
  background: #fdfcf8;
}
.section--hivis {
  background: var(--hivis);
  color: var(--ink);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  position: relative;
}
.section__hd {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.section--dark .section__hd { border-bottom-color: rgba(255, 255, 255, 0.1); }
.section--hivis .section__hd { border-bottom-color: rgba(10, 11, 13, 0.25); }
.section__kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hivis);
  padding-top: 0.4rem;
}
.section__kicker b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
  color: currentColor;
  margin-top: 0.4rem;
  line-height: 0.85;
  color: var(--ink);
}
.section--dark .section__kicker b { color: #fff; }
.section--hivis .section__kicker b { color: var(--ink); }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.section__title .hi { color: var(--hivis); }
.section__title .em { font-style: italic; font-weight: 700; }
.section--dark .section__title .hi { color: var(--hivis-glow); }
.section__lede {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 58ch;
  line-height: 1.6;
}
.section--dark .section__lede { color: rgba(255, 255, 255, 0.68); }

/* =========================================================
   PROBLEM GRID — stickered cards
   ========================================================= */
.probs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.prob {
  background: #fdfcf8;
  border: 1.5px solid var(--ink);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prob:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.prob__idx {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--ink);
  color: var(--hivis);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 0.4rem 0.75rem;
  text-transform: uppercase;
}
.prob__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  background: var(--paper-3);
  border-radius: 2px;
  font-size: 1.6rem;
  filter: grayscale(0.2);
}
.prob__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.prob__text {
  color: var(--steel);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* =========================================================
   PROCESS — large DAY typography
   ========================================================= */
.procg {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.procg__step {
  padding: 2.25rem 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.procg__step:last-child { border-right: none; }
.procg__step:hover { background: rgba(255, 91, 20, 0.04); }
.procg__idx {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--hivis);
  margin-bottom: 0.5rem;
}
.procg__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-bottom: 0.75rem;
  color: #fff;
  -webkit-text-stroke: 0;
}
.procg__num .sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.35rem;
  display: inline-block;
  vertical-align: super;
  text-transform: uppercase;
}
.procg__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.procg__txt {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pc {
  background: #fdfcf8;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.pc:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.mock {
  background: linear-gradient(135deg, var(--paper-2), var(--paper-3));
  padding: 0.75rem 0.75rem 0;
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.6rem;
}
.mock__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.18;
}
.mock__dot:first-child { background: var(--hivis); opacity: 1; }
.mock__url {
  flex: 1;
  background: rgba(10, 11, 13, 0.05);
  border: 1px solid rgba(10, 11, 13, 0.08);
  border-radius: 2px;
  margin-left: 0.35rem;
  height: 22px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--steel);
}
.mock__screen {
  aspect-ratio: 16 / 10;
  background: var(--ink);
  color: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.mock__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.mock__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  position: relative;
}
.mock__hd {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  position: relative;
}
.mock__hd em { color: var(--hivis); font-style: italic; font-weight: 700; }
.mock__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mock__btn {
  background: var(--hivis);
  color: var(--ink);
  padding: 0.35rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.mock__dots {
  display: flex;
  gap: 4px;
}
.mock__dots span {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.mock__dots span:first-child { background: var(--hivis); }

.pc__body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--line);
}
.pc__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.pc__meta b { color: var(--hivis); font-weight: 500; }
.pc__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.pc__result {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding: 0.75rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 0.9rem;
  position: relative;
}
.pc__result::before {
  content: "Resultaat";
  position: absolute;
  top: -8px; left: 0;
  background: #fdfcf8;
  padding: 0 0.5rem 0 0;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.pc__quote {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.55;
  font-style: italic;
}
.pc__quote::before { content: "“"; color: var(--hivis); margin-right: 0.1em; font-size: 1.2em; }
.pc__quote::after { content: "”"; color: var(--hivis); margin-left: 0.1em; font-size: 1.2em; }

/* =========================================================
   PACKAGES
   ========================================================= */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.pack {
  background: #fdfcf8;
  border: 1.5px solid var(--ink);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pack:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.pack--star {
  background: var(--ink);
  color: #fff;
  transform: translateY(-12px);
}
.pack--star:hover { transform: translate(-3px, -15px); box-shadow: 6px 6px 0 0 var(--hivis); }
.pack__sticker {
  position: absolute;
  top: -14px;
  right: 2rem;
  background: var(--hivis);
  color: var(--ink);
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transform: rotate(4deg);
  border: 1.5px solid var(--ink);
}
.pack__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.pack__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-2);
  margin-bottom: 1.5rem;
}
.pack--star .pack__tag { color: var(--hivis); }
.pack__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.pack--star .pack__price { color: #fff; }
.pack__price .hi { color: var(--hivis); }
.pack__price small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: var(--steel-2);
  text-transform: uppercase;
}
.pack--star .pack__price small { color: rgba(255, 255, 255, 0.5); }
.pack__feats {
  flex: 1;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pack--star .pack__feats { border-color: rgba(255, 255, 255, 0.14); }
.pack__feats li {
  padding: 0.4rem 0 0.4rem 1.7rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--steel);
  line-height: 1.5;
}
.pack--star .pack__feats li { color: rgba(255, 255, 255, 0.85); }
.pack__feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--hivis);
  font-weight: bold;
}

/* =========================================================
   TESTIMONIALS — editorial pullquotes
   ========================================================= */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.quote {
  padding: 2.5rem 2rem;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.quote:first-child { border-left: none; }
.quote__stars {
  font-family: var(--font-mono);
  color: var(--hivis);
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.quote__body {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex: 1;
  position: relative;
}
.quote__body::before {
  content: "“";
  position: absolute;
  top: -1.75rem;
  left: -0.4rem;
  font-size: 4.5rem;
  color: var(--hivis);
  line-height: 1;
  font-family: var(--font-display);
}
.quote__who {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.quote__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.quote__meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-2);
}

/* =========================================================
   FAQ — magazine TOC style
   ========================================================= */
.faqs {
  border-top: 1px solid var(--line);
}
.faq {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  text-align: left;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq__q:hover { color: var(--hivis); }
.faq__idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--steel-2);
}
.faq__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.faq__ico {
  width: 36px; height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.faq.open .faq__ico {
  transform: rotate(135deg);
  background: var(--hivis);
  color: var(--ink);
  border-color: var(--hivis);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-left: calc(80px + 2rem);
  padding-right: calc(36px + 2rem);
  color: var(--steel);
  line-height: 1.65;
  font-size: 0.98rem;
}
.faq.open .faq__a {
  max-height: 600px;
  padding-bottom: 1.75rem;
}

/* =========================================================
   BIG CTA SECTION — hivis with diagonal stripes
   ========================================================= */
.section--hivis::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 60px,
    rgba(10, 11, 13, 0.05) 60px,
    rgba(10, 11, 13, 0.05) 62px
  );
  pointer-events: none;
}
.cta-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.cta-title .em { font-style: italic; font-weight: 700; }
.cta-aside {
  text-align: right;
}
.cta-aside p {
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.cta-aside .phone {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta-aside .phone b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
  margin-top: 0.35rem;
  text-transform: none;
}

/* =========================================================
   FORM
   ========================================================= */
.formsec {
  background: var(--paper);
  position: relative;
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.form-side h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.form-side h2 .hi { color: var(--hivis); }
.form-side p {
  color: var(--steel);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.form-side ul {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.form-side li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--steel);
}
.form-side li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hivis);
  font-weight: bold;
}

.form {
  background: #fdfcf8;
  border: 1.5px solid var(--ink);
  padding: 2rem;
  position: relative;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.form__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.form__id {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.form__id b { color: var(--hivis); font-weight: 500; }
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fld { margin-bottom: 1rem; }
.fld label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-2);
  margin-bottom: 0.4rem;
}
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid transparent;
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  outline: none;
  border-color: var(--hivis);
  background: #fdfcf8;
}
.fld textarea {
  min-height: 110px;
  resize: vertical;
}
.form__success {
  display: none;
  padding: 1rem;
  background: rgba(255, 91, 20, 0.1);
  border: 1px solid var(--hivis);
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.form__success.show { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--steel-3);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  height: 18px;
  background: repeating-linear-gradient(
    135deg,
    var(--hivis) 0, var(--hivis) 18px,
    var(--ink) 18px, var(--ink) 36px
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.footer__top {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.footer__logo b { color: var(--hivis); }
.footer__desc {
  max-width: 340px;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer__col li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.footer__col a { color: var(--steel-3); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--hivis); }
.footer__bottom {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-3);
}

/* =========================================================
   REVEAL
   ========================================================= */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rev.on {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__sticker {
    position: relative;
    top: auto; right: auto;
    margin-left: auto;
    transform: rotate(-6deg);
  }
  .trust__row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .trust__cell { padding: 0.75rem 1rem; }
  .trust__cell:nth-child(3) { border-left: none; padding-left: 0; }
  .probs { grid-template-columns: 1fr; }
  .procg { grid-template-columns: 1fr; }
  .procg__step { border-right: none; }
  .portf, .packs { grid-template-columns: 1fr; }
  .pack--star { transform: none; }
  .pack--star:hover { transform: translate(-3px, -3px); }
  .quotes { grid-template-columns: 1fr; }
  .quote { border-left: none; border-top: 1px solid var(--line); }
  .quote:first-child { border-top: none; }
  .section__hd { grid-template-columns: 1fr; gap: 1rem; }
  .cta-wrap { grid-template-columns: 1fr; }
  .cta-aside { text-align: left; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__top > :first-child { grid-column: 1 / -1; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .hero__corner { display: none; }
}

@media (max-width: 600px) {
  .nav__links {
    position: fixed;
    top: 100px; /* ticker + nav */
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1rem;
    transform: translateY(-200%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--line-light);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { width: 100%; }
  .row2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .faq__q { grid-template-columns: 44px 1fr auto; gap: 0.75rem; }
  .faq__a { padding-left: calc(44px + 0.75rem); padding-right: calc(36px + 0.75rem); }
  .quote__body::before { left: -0.2rem; }
}

/* =========================================================
   v1.1 ADDITIONS — Photography & Polish
   ========================================================= */

/* ---------- Polish: refined focus states ---------- */
:focus-visible {
  outline: 2px solid var(--hivis);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 5px; }

/* ---------- Polish: custom scrollbar ---------- */
@media (pointer: fine) {
  html { scrollbar-width: thin; scrollbar-color: var(--ink-3) transparent; }
  html::-webkit-scrollbar { width: 10px; height: 10px; }
  html::-webkit-scrollbar-track { background: transparent; }
  html::-webkit-scrollbar-thumb {
    background: var(--ink-3);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }
  html::-webkit-scrollbar-thumb:hover { background-color: var(--hivis); background-clip: padding-box; }
}

/* ---------- Polish: refined type rendering ---------- */
.hero__title,
.section__title,
.cta-title,
.faq__text,
.quote__body,
.pc__name,
.pack__name {
  font-feature-settings: "ss01", "ss02", "kern", "liga";
  font-variant-ligatures: common-ligatures;
}
.trust__num, .mono, .tag, .ticker,
[class*="__idx"], [class*="__lbl"] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "kern";
}

/* ---------- Polish: smoother cubic-bezier curves ---------- */
.btn, .pc, .prob, .pack, .faq__ico, .nav__links a {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   HERO PHOTO — right column portrait
   ========================================================= */
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  overflow: hidden;
  background: var(--ink-2);
  /* Enter animation */
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: photoRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
@keyframes photoRise {
  to { opacity: 1; transform: none; }
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Duotone base: grayscale + contrast */
  filter: grayscale(1) contrast(1.08) brightness(0.95);
}
.hero__photo::before {
  /* hi-vis orange duotone overlay */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hivis);
  mix-blend-mode: multiply;
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
}
.hero__photo::after {
  /* shadow/edge darkening */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 13, 0.35) 0%, transparent 35%, rgba(10, 11, 13, 0.55) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}
.hero__photo-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 3;
  pointer-events: none;
}
.hero__photo-caption {
  position: absolute;
  bottom: 1.15rem;
  left: 1.15rem;
  right: 1.15rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  gap: 0.75rem;
  pointer-events: none;
}
.hero__photo-caption b {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.hero__photo-index {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}
.hero__photo-index::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--hivis);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---------- Hero: tidy up aside spacing polish ---------- */
.hero__aside { padding-bottom: 0; }
.hero__sub {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.005em;
}

/* =========================================================
   PORTFOLIO — craft accent photos
   ========================================================= */
.pc__craft {
  position: relative;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.pc__craft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(0.9);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc:hover .pc__craft img { transform: scale(1.05); }
.pc__craft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hivis);
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}
.pc__craft::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 11, 13, 0.3) 0%, transparent 50%, rgba(10, 11, 13, 0.45) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}
.pc__craft-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 3;
  background: var(--hivis);
  color: var(--ink);
  padding: 0.35rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  pointer-events: none;
}

/* =========================================================
   TESTIMONIALS — real avatar photos
   ========================================================= */
.quote__who {
  align-items: center;
}
.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.75rem;
  flex-shrink: 0;
  background: var(--paper-3);
  border: 1.5px solid var(--ink);
  position: relative;
}
.quote__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  display: block;
}
.quote__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hivis);
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
}
.quote__who-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.quote__who-left .quote__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* =========================================================
   Hero meta row — tighten spacing on mobile
   ========================================================= */
.hero__meta .mono b { color: var(--hivis-glow); }

/* =========================================================
   Polish: refined card hover shadows (softer, more considered)
   ========================================================= */
.pc, .prob, .pack {
  transition-duration: 0.35s;
}
.pc:hover {
  box-shadow:
    6px 6px 0 0 var(--ink),
    0 12px 32px -8px rgba(10, 11, 13, 0.25);
}
.prob:hover {
  box-shadow:
    6px 6px 0 0 var(--ink),
    0 8px 24px -6px rgba(10, 11, 13, 0.18);
}
.pack:hover {
  box-shadow:
    6px 6px 0 0 var(--ink),
    0 16px 40px -12px rgba(10, 11, 13, 0.3);
}
.pack--star:hover {
  box-shadow:
    6px 6px 0 0 var(--hivis),
    0 18px 48px -10px rgba(10, 11, 13, 0.5);
}

/* =========================================================
   Polish: staggered card reveals
   ========================================================= */
.probs .rev:nth-child(1),
.portf .rev:nth-child(1),
.packs .rev:nth-child(1) { transition-delay: 0.05s; }
.probs .rev:nth-child(2),
.portf .rev:nth-child(2),
.packs .rev:nth-child(2) { transition-delay: 0.15s; }
.probs .rev:nth-child(3),
.portf .rev:nth-child(3),
.packs .rev:nth-child(3) { transition-delay: 0.25s; }
.probs .rev:nth-child(4) { transition-delay: 0.35s; }

/* =========================================================
   Polish: ticker performance + subtle hover pause
   ========================================================= */
.ticker:hover .ticker__track { animation-play-state: paused; }

/* =========================================================
   Polish: reduce motion support
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms \!important;
    animation-iteration-count: 1 \!important;
    transition-duration: 0.01ms \!important;
    scroll-behavior: auto \!important;
  }
  .rev { opacity: 1; transform: none; }
  .hero__title .row, .hero__sub, .hero__cta, .hero__photo { opacity: 1; transform: none; }
}

/* =========================================================
   Polish: link accent underline on body prose inside FAQs
   ========================================================= */
.faq__a a {
  color: var(--hivis);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 91, 20, 0.5);
  transition: text-decoration-color 0.2s ease;
}
.faq__a a:hover { text-decoration-color: var(--hivis); }

/* =========================================================
   Polish: image lazy-load fade
   ========================================================= */
img {
  transition: opacity 0.4s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img.loaded, img[loading="lazy"].loaded {
  opacity: 1;
}

/* =========================================================
   Photo-reel strip (full-width editorial break)
   ========================================================= */
.reel {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
}
.reel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.reel__frame {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.reel__frame:last-child { border-right: none; }
.reel__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}
.reel__frame:hover img {
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.05) brightness(1);
}
.reel__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hivis);
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.reel__frame:hover::before { opacity: 0.35; }
.reel__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 11, 13, 0.7) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}
.reel__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 3;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.reel__caption b { color: var(--hivis-glow); font-weight: 500; }

/* =========================================================
   Responsive polish for photo elements
   ========================================================= */
@media (max-width: 900px) {
  .hero__photo {
    max-height: 440px;
    margin-top: 1rem;
  }
  .reel__grid { grid-template-columns: repeat(2, 1fr); }
  .reel__frame:nth-child(2) { border-right: none; }
  .reel__frame:nth-child(1), .reel__frame:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 600px) {
  .reel__grid { grid-template-columns: 1fr; }
  .reel__frame { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .reel__frame:last-child { border-bottom: none; }
  .hero__photo { aspect-ratio: 3 / 4; }
}

/* =========================================================
   ============== SHARED PAGE STYLES (v1.1) ================
   For diensten / portfolio / proces / over / contact
   All use this single stylesheet so the site feels unified.
   ========================================================= */

/* ---------- Page header (replaces dark hero on subpages) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
  z-index: 0;
}
.page-hero__watermark {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.8;
  color: rgba(255, 91, 20, 0.06);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.page-hero__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.page-hero__meta .mono b { color: var(--hivis); font-weight: 500; }
.page-hero__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hivis);
  margin-bottom: 1.25rem;
}
.page-hero__kicker::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--hivis);
  margin-right: 0.75rem;
  vertical-align: middle;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7.5vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
}
.page-hero__title .hi { color: var(--hivis); font-style: italic; }
.page-hero__lede {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 48ch;
  margin-top: 0.5rem;
}
.page-hero__aside {
  align-self: end;
  padding-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-hero__watermark { font-size: 18rem; right: -2rem; opacity: 0.8; }
}

/* ---------- Pages: comparison table ---------- */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  background: #fff;
  border: 1.5px solid var(--ink);
  margin-top: 2rem;
}
.cmp-table th,
.cmp-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: middle;
}
.cmp-table thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.cmp-table thead th:first-child { text-align: left; }
.cmp-table thead th:last-child { border-right: none; }
.cmp-table thead th.is-star {
  background: var(--hivis);
  color: var(--ink);
}
.cmp-table tbody td { text-align: center; border-right: 1px solid var(--line); }
.cmp-table tbody td:first-child {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--steel);
  text-transform: uppercase;
  background: var(--paper);
  white-space: nowrap;
}
.cmp-table tbody td:last-child { border-right: none; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td { background: rgba(255, 91, 20, 0.03); }
.cmp-table .yes {
  color: var(--hivis);
  font-weight: 600;
  font-size: 1.1rem;
}
.cmp-table .no {
  color: var(--steel-3);
  font-size: 1rem;
}
@media (max-width: 760px) {
  .cmp-table { font-size: 0.82rem; }
  .cmp-table th, .cmp-table td { padding: 0.7rem 0.6rem; }
  .cmp-table tbody td:first-child { font-size: 0.65rem; }
}

/* ---------- 10-day timeline ---------- */
.timeline {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.tl-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.tl-row:last-child { border-bottom: none; }
.tl-row:hover { background: rgba(255, 91, 20, 0.02); }
.tl-day {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hivis);
  padding-top: 0.4rem;
  border-left: 2px solid var(--hivis);
  padding-left: 0.9rem;
}
.tl-day b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 0.3rem;
}
.tl-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.tl-title em {
  font-style: italic;
  color: var(--hivis);
  font-weight: 700;
}
.tl-body {
  color: var(--steel);
  font-size: 0.94rem;
  line-height: 1.6;
}
.tl-body strong { color: var(--ink); font-weight: 500; }
.tl-body ul { margin-top: 0.6rem; }
.tl-body li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
}
.tl-body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--hivis);
}
@media (max-width: 760px) {
  .tl-row { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.5rem 0; }
  .tl-day { padding-left: 0.75rem; border-left-width: 3px; }
  .tl-day b { font-size: 1.5rem; }
}

/* ---------- Portfolio grid (6 cards page) ---------- */
.portf-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}
@media (max-width: 820px) { .portf-6 { grid-template-columns: 1fr; } }

/* ---------- Team grid (over page) ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}
.team-card {
  background: #fff;
  border: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.team-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hivis);
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.team-card:hover .team-card__photo::before { opacity: 0.35; }
.team-card__photo-idx {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.team-card__body { padding: 1.25rem; border-top: 1.5px solid var(--ink); }
.team-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hivis);
  margin-top: 0.25rem;
}
.team-card__bio {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.55;
}
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }

/* ---------- Values (over page) ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  margin-top: 2rem;
}
.value {
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid var(--line);
  position: relative;
}
.value:last-child { border-right: none; }
.value__idx {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hivis);
  margin-bottom: 0.75rem;
}
.value__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.value__title em { color: var(--hivis); font-style: italic; }
.value__body { color: var(--steel); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 820px) {
  .values { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--line); }
  .value:last-child { border-bottom: none; }
}

/* ---------- Contact grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2rem;
}
.contact-info {
  background: var(--ink);
  color: #fff;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 60%;
  background: var(--hivis);
}
.contact-info__kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hivis);
  margin-bottom: 0.75rem;
}
.contact-info__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.contact-info__block {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info__block:last-child { border-bottom: none; }
.contact-info__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}
.contact-info__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.contact-info__value a:hover { color: var(--hivis); }
.contact-info__value.sub {
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0;
}
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.25rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid #25D366;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whatsapp-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 rgba(0,0,0,0.6);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Generic breadcrumb trail ---------- */
.crumbs {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.crumbs a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s ease; }
.crumbs a:hover { color: var(--hivis); }
.crumbs span.sep { color: rgba(255, 255, 255, 0.3); }
.crumbs b { color: #fff; font-weight: 500; }

/* =========================================================
   ===========  POLISH PASS (desktop + mobile)  ===========
   Layered on top of everything above. Order matters:
   anything in here wins.
   ========================================================= */

/* ---------- Global guards ---------- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; background: var(--ink); }
body {
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(255, 91, 20, 0.18);
  /* close the seam between ticker / nav / hero — first section is always dark, so body bg below header should be too */
  background: var(--ink);
}
img, svg, video { max-width: 100%; height: auto; }

/* ---------- Sticky chrome: ticker + nav (with iOS safe-area) ----------
   Use CSS variables so every layer uses the same numbers.
*/
:root {
  --ticker-h: 24px; /* slimmer marquee bar */
  --nav-h: 60px;
  --safe-top: env(safe-area-inset-top, 0px);
  --chrome-h: calc(var(--safe-top) + var(--ticker-h) + var(--nav-h));
}
@media (min-width: 701px) {
  :root { --nav-h: 72px; --ticker-h: 28px; }
}

/* The ticker now owns BOTH the iOS safe-area band AND the marquee row.
   Explicit padding on all sides + content-box keeps the visible marquee
   exactly --ticker-h tall while the orange chrome paints up under the notch. */
.ticker {
  top: 0;
  left: 0; right: 0;
  padding: var(--safe-top) 0 0 0; /* explicit: only top padding for safe-area */
  height: var(--ticker-h);
  box-sizing: content-box;
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--ink);
  z-index: 102;
  background: var(--hivis);
  overflow: hidden;
  font-size: 0.66rem; /* slightly tighter for narrower bar */
}
.ticker__track { padding: 0; }
.nav {
  top: calc(var(--safe-top) + var(--ticker-h));
  background: rgba(10, 11, 13, 1); /* fully opaque so nothing bleeds through */
  border-top: none;
  z-index: 101;
}
.nav__inner { height: var(--nav-h); }

/* No more body::before — the ticker now paints its own safe-area band */
body::before { content: none; }

/* Hero / page-hero anchor flush against nav (no body-bg gap) */
main { padding-top: 0; }
.hero, .page-hero {
  padding-top: calc(var(--chrome-h) + clamp(1.5rem, 5vw, 3.5rem));
}
@media (max-width: 700px) {
  .hero, .page-hero {
    padding-top: var(--chrome-h);
    padding-bottom: 2rem !important;
  }
  /* On mobile the title is the first visible thing in the grid — stick it to the top */
  .hero__grid { align-items: start !important; }
  .hero__title { margin-top: 0 !important; padding-top: 0 !important; }
}

/* ---------- Mobile nav: prevent logo/hamburger overlap ---------- */
@media (max-width: 700px) {
  .nav__inner { gap: 0.75rem; padding-left: var(--gutter); padding-right: 0.5rem; }
  .nav__logo { font-size: 0.95rem; gap: 0.25rem; }
  /* Hide the "/010" decorative suffix on mobile — saves precious width */
  .nav__logo::after { display: none; }
  .nav__toggle { width: 44px; height: 44px; flex: 0 0 auto; }
}
@media (max-width: 380px) {
  .nav__logo { font-size: 0.88rem; }
}

/* Image fade-in only on JS-ready pages (won't hide images on no-JS) */
.js-ready img:not(.loaded) { opacity: 0; transition: opacity 0.5s ease; }
.js-ready img.loaded { opacity: 1; }

/* iOS safe area padding (notch + home indicator) */
.nav, .ticker { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }

/* Body lock when mobile nav is open */
body.nav-locked { overflow: hidden; touch-action: none; }

/* Hover-only effects (avoid sticky hover state on touch) */
@media (hover: none) {
  .btn:hover { transform: none !important; box-shadow: inherit !important; }
  .pc:hover, .pack:hover, .prob:hover, .team-card:hover, .tl-row:hover { transform: none !important; box-shadow: inherit !important; background: inherit !important; }
}

/* ---------- Nav: scroll state, active link, mobile drawer ---------- */
.nav { transition: top 0.25s ease, height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
.nav.is-scrolled .nav__inner { height: 60px; }
.nav.is-scrolled { background: rgba(8, 9, 11, 0.985); }

.nav__links a.active {
  color: #fff;
}
.nav__links a.active:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--hivis);
}

/* Mobile drawer (≤600) — full-bleed, larger touch targets */
@media (max-width: 600px) {
  .nav__inner { height: 60px; }
  .nav.is-scrolled .nav__inner { height: 56px; }
  main { padding-top: 100px; }

  .nav__links {
    position: fixed;
    /* Start exactly under the nav (ticker + nav + iOS safe-area) */
    top: var(--chrome-h);
    left: 0; right: 0;
    bottom: 0;
    height: calc(100vh - var(--chrome-h));
    height: calc(100dvh - var(--chrome-h));
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    border-top: 1.5px solid rgba(255, 91, 20, 0.35);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99; /* below nav (100) so the bar stays sharp on top */
  }
  .nav__links.open { transform: translateY(0); }

  .nav__links li { list-style: none; width: 100%; }

  .nav__links a:not(.btn) {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #fff;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block; /* simple left-aligned link, no flex tricks */
    text-align: left;
    width: 100%;
    min-height: 48px;
  }
  /* Active page indicator — small bar to the LEFT of the label */
  .nav__links a:not(.btn)::before { content: none; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links a.active {
    color: var(--hivis);
  }

  .nav__links .btn {
    width: 100%;
    margin-top: 1.75rem;
    padding: 1.15rem 1.25rem;
    font-size: 0.78rem;
    box-shadow: 4px 4px 0 0 var(--hivis);
    text-align: center;
  }

  .nav__toggle { display: flex; }
}

/* ---------- Buttons: full-width on tiny screens ---------- */
@media (max-width: 460px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .cta__buttons, .cta__row { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn, .cta__row .btn { width: 100%; }
  .btn { padding: 1rem 1.25rem; min-height: 48px; }
  .btn--lg { padding: 1.15rem 1.4rem; }
}

/* ---------- Hero typography on mobile (tight: title + photo in one glance) ---------- */
@media (max-width: 700px) {
  .hero {
    padding-bottom: 2rem;
    min-height: 0;
  }
  .hero__grid { gap: 0.5rem; }
  /* Hide the breadcrumb meta on mobile — gives the title room to breathe */
  .hero__meta { display: none; }
  /* Bigger headline on mobile now that meta is gone */
  .hero__title {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin: 0;
  }
  /* Photo: shrink so heading + photo fit on iPhone */
  .hero__photo {
    aspect-ratio: auto;
    max-height: 40vh;
    height: 40vh;
    margin-top: 1rem;
  }
  .hero__photo img { height: 100%; object-fit: cover; }
  .hero__sub {
    font-size: 0.92rem;
    max-width: none;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 1.45;
  }
  .hero__photo-frame { display: none; }
  .hero__photo-caption { font-size: 0.55rem; padding: 0.5rem 0.7rem; }
  .hero__photo-index { font-size: 0.55rem; padding: 0.35rem 0.65rem; top: 0.5rem; left: 0.5rem; }
  /* Hide the editorial corner annotations on mobile — they steal space */
  .hero__corner { display: none; }
  .hero__cta { margin-top: 1rem; gap: 0.65rem; }
}

@media (max-width: 460px) {
  .hero__title { font-size: clamp(2.1rem, 11vw, 3.4rem); }
  .hero__photo { max-height: 36vh; height: 36vh; }
  .hero__sub { font-size: 0.88rem; margin-top: 0.85rem; margin-bottom: 0.85rem; }
}

/* ---------- Trust strip on mobile ---------- */
@media (max-width: 600px) {
  .trust { padding: 1.6rem 0; }
  .trust__row { grid-template-columns: 1fr 1fr; gap: 0.5rem 0; }
  .trust__cell { padding: 0.65rem 0.9rem; }
  .trust__cell:nth-child(2n+1) { border-left: none; }
  .trust__num { font-size: 1.5rem; }
}

/* ---------- Comparison table: card mode on mobile ---------- */
@media (max-width: 700px) {
  .cmp-table { display: block; border: none; background: transparent; }
  .cmp-table thead { display: none; }
  .cmp-table tbody, .cmp-table tr, .cmp-table td { display: block; width: 100%; }
  .cmp-table tbody { display: grid; gap: 1rem; }
  .cmp-table tr {
    border: 1.5px solid var(--ink);
    background: #fff;
    padding: 1rem 1.1rem 0.5rem;
  }
  .cmp-table tbody tr:hover td { background: transparent; }
  .cmp-table tbody td {
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 0.65rem 0;
    text-align: right;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    font-size: 0.92rem;
  }
  .cmp-table tbody td:first-child {
    background: transparent;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    text-transform: none;
    text-align: left;
    padding: 0.25rem 0 0.85rem;
    margin-bottom: 0.3rem;
    border-bottom: 1.5px solid var(--ink);
    grid-template-columns: 1fr;
    white-space: normal;
  }
  .cmp-table tbody td:not(:first-child)::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    text-align: left;
    justify-self: start;
  }
  .cmp-table tbody td:last-child { border-bottom: none; padding-bottom: 0.5rem; }
}

/* ---------- Timeline mobile: hi-vis day pill on the left ---------- */
@media (max-width: 760px) {
  .timeline { border-top: 1.5px solid var(--ink); }
  .tl-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.5rem 0;
    position: relative;
  }
  .tl-day {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    border-left: none;
    padding: 0.4rem 0.7rem;
    background: var(--hivis);
    color: var(--ink);
    width: max-content;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .tl-day b { display: inline; font-size: 0.95rem; margin-top: 0; color: var(--ink); }
  .tl-title { font-size: 1.25rem; }
  .tl-body { font-size: 0.9rem; }
}

/* ---------- Portfolio cards ---------- */
@media (max-width: 600px) {
  .pc { padding: 1.25rem; }
  .pc__title { font-size: 1.4rem; }
}

/* ---------- Sections / containers on mobile ---------- */
@media (max-width: 600px) {
  :root { --gutter: 1.15rem; }
  .section { padding: 3rem 0; }
  .section__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .section__hd { gap: 0.75rem; }
}

/* ---------- Forms on mobile: bigger fields, no iOS zoom ---------- */
input, select, textarea {
  font-size: 16px; /* prevent iOS auto-zoom on focus */
}
.field input, .field select, .field textarea, .form input, .form select, .form textarea {
  min-height: 48px;
}
.field textarea, .form textarea { min-height: 120px; }
.has-error, [aria-invalid="true"] {
  border-color: #e8540a !important;
  box-shadow: 0 0 0 3px rgba(232, 84, 10, 0.18);
}

/* ---------- Footer on mobile ---------- */
@media (max-width: 600px) {
  .footer { padding: 2.5rem 0 0; }
  .footer__top { gap: 1.75rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1.25rem 0 1.5rem; }
}

/* ---------- Quotes/testimonials mobile ---------- */
@media (max-width: 600px) {
  .quote { padding: 1.25rem 0; }
  .quote__body { font-size: 1rem; }
}

/* ---------- Reveal timing: snappier on mobile ---------- */
@media (max-width: 700px) {
  .rev { transition-duration: 0.55s; transform: translateY(20px); }
}

/* ---------- Reduce motion respected ---------- */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .hero__sticker { animation: none; }
  .rev { transition: none; transform: none; opacity: 1; }
  .hero__title .row { animation: none; opacity: 1; transform: none; }
  .hero__sub, .hero__cta { animation: none; opacity: 1; transform: none; }
}

/* ---------- Selection ---------- */
::selection { background: var(--hivis); color: var(--ink); }

/* ---------- Print: minimal, ink-friendly ---------- */
@media print {
  .ticker, .nav, .footer, .cta, .hero__sticker, .nav__toggle, video, iframe { display: none !important; }
  body { background: #fff; color: #000; }
  main { padding-top: 0; }
  a { color: #000; text-decoration: underline; }
  .hero, .page-hero, .section { background: #fff !important; color: #000 !important; padding: 1rem 0 !important; }
  .hero__title, .page-hero__title, .section__title { color: #000 !important; font-size: 2rem !important; }
}

/* =========================================================
   DESIGN POLISH — production-grade refinements
   Applied after all other rules. Focused, defensive, tasteful.
   ========================================================= */

/* ---- OpenType polish: kerning, ligatures, stylistic alternates ---- */
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
.hero__title, .page-hero__title, .section__title, .section__kicker b,
.pack__name, .pc__title, .prob__title, .footer__logo {
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1, "ss02" 1;
  text-rendering: geometricPrecision;
}
/* Tabular numerals where numbers line up vertically (price tables, stats) */
.trust__num, .pack__price, .pc__year, .timeline .tl-day,
.cmp-table td, .cmp-table th, .mono { font-variant-numeric: tabular-nums lining-nums; }

/* ---- Text-wrap: keep big headings balanced, no widows ---- */
.hero__title, .page-hero__title, .section__title, .cta__title,
.pack__name, .pc__title {
  text-wrap: balance;
}
.hero__sub, .section__lede, .quote__body, .prob__text {
  text-wrap: pretty;
}

/* ---- Atmospheric grain — barely-there film texture on dark surfaces ---- */
.hero::after, .cta::after, .footer::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---- Hi-vis focus rings (accessibility + brand expression) ---- */
:focus { outline: none; }
:focus-visible {
  outline: 2.5px solid var(--hivis);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2.5px solid var(--hivis);
  outline-offset: 1px;
}

/* ---- Selection: orange highlight, dark text ---- */
::selection { background: var(--hivis); color: var(--ink); text-shadow: none; }
::-moz-selection { background: var(--hivis); color: var(--ink); text-shadow: none; }

/* ---- Button hover refinement (desktop only, no sticky touch states) ---- */
@media (hover: hover) {
  .btn { transition: transform 0.18s cubic-bezier(0.34, 1.5, 0.64, 1), box-shadow 0.22s ease, background 0.18s ease; }
  .btn:hover { transform: translate(-1px, -2px); }
  .btn--hivis:hover { box-shadow: 6px 8px 0 0 rgba(10, 11, 13, 0.85); }
  .btn--ghost:hover { background: rgba(255, 255, 255, 0.06); }
}

/* ---- Smooth scroll + scroll-padding so hash-jumps don't hide behind chrome ---- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--chrome-h) + 1rem); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---- Logo: refined optical kerning so the wordmark feels custom-set ---- */
.nav__logo b { color: var(--hivis); font-weight: 800; letter-spacing: -0.02em; }
.nav__logo {
  font-feature-settings: "kern" 1, "calt" 1, "ss01" 1;
}

/* ---- Hero title: optical sizing for big display sizes ---- */
.hero__title { font-optical-sizing: auto; font-variation-settings: "opsz" 96; }
.hero__title .hi { font-feature-settings: "kern" 1, "calt" 1, "salt" 1; }

/* ---- Hero photo: subtle duotone treatment via CSS (over the existing img) ---- */
.hero__photo { isolation: isolate; }
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 91, 20, 0.08) 60%, rgba(255, 91, 20, 0.18) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* ---- Space Grotesk weight cap (max is 700, not 800) ---- */
.hero__title, .page-hero__title, .section__title,
.nav__logo, .footer__logo, .pack__name, .pc__title, .prob__title {
  font-weight: 700;
}
.hero__title { font-variation-settings: normal; }

/* ---- DEFINITIVE mobile chrome + hero fix ---- */
@media (max-width: 700px) {
  /* Slimmer chrome so title sits closer to top */
  :root {
    --ticker-h: 20px;
    --nav-h: 50px;
  }
  .nav__inner { height: 50px !important; }
  .nav.is-scrolled .nav__inner { height: 48px !important; }

  /* Hero: zero padding above the title (chrome-h is the entire top spacing) */
  .hero {
    padding: var(--chrome-h) 0 1.5rem !important;
    min-height: 0 !important;
  }
  .hero > .wrap { padding-top: 0; padding-bottom: 0; }
  .hero__grid {
    align-items: start !important;
    gap: 0.6rem !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-template-rows: auto auto auto;
  }
  .hero__grid > *:first-child { margin-top: 0 !important; padding-top: 0 !important; }
  .hero__title {
    margin: 0 !important;
    padding: 0.5rem 0 0 0 !important;
  }
  /* Ensure the title's own animation transform doesn't leave visual space above */
  .hero__title .row { transform: none !important; opacity: 1 !important; animation: none !important; }
  .hero__sticker { display: none !important; }
}

/* ---- Hide ticker on tiny screens for max content visibility ---- */
@media (max-width: 380px) {
  .ticker { display: none; }
  :root { --ticker-h: 0px; }
}

/* =========================================================
   HERO V3 — 50/50 split: left = heading + text + CTA, right = photo
   ========================================================= */
.hero__grid {
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(1.5rem, 4vw, 3.5rem) !important;
  align-items: center !important;
  max-width: 1400px;
  margin: 0 auto;
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  min-width: 0;
}
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 6rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.04em;
  margin: 0 !important;
}
.hero__left .hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  margin: 0;
}
.hero__left .hero__cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 0;
}

/* The right-side hero photo */
.hero__photo--right {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__photo--right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.05);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.hero__photo--right:hover img { filter: grayscale(0) contrast(1.05); transform: scale(1.02); }
.hero__photo--right .hero__photo-frame {
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(255, 91, 20, 0.5);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.hero__photo--right .hero__photo-index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--hivis);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  z-index: 3;
}
.hero__photo--right .hero__photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__photo--right .hero__photo-caption b {
  color: var(--hivis);
  font-weight: 500;
}

/* TABLET — narrower split, photo gets a little less weight */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr !important; }
}

/* MOBILE — stack: heading + text + CTA, then photo below */
@media (max-width: 800px) {
  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    align-items: start !important;
  }
  .hero__photo--right { aspect-ratio: 4 / 5; max-height: 65vh; }
}

@media (max-width: 700px) {
  .hero__title {
    font-size: clamp(2.4rem, 11vw, 4rem) !important;
  }
  .hero__photo--right {
    aspect-ratio: 4 / 5;
    max-height: 60vh;
  }
  .hero__photo--right .hero__photo-index { font-size: 0.55rem; padding: 0.35rem 0.6rem; top: 0.7rem; left: 0.7rem; }
  .hero__photo--right .hero__photo-caption { font-size: 0.55rem; padding: 0.7rem 0.85rem; }
  .hero__left .hero__sub { font-size: 1rem; line-height: 1.5; }
}

@media (max-width: 460px) {
  .hero__title { font-size: clamp(2.1rem, 10vw, 3.4rem) !important; }
  .hero__left .hero__cta { flex-direction: column; }
  .hero__left .hero__cta .btn { width: 100%; text-align: center; justify-content: center; }
}

