/* Schibsted Grotesk, served locally (no Google Fonts request) */
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal; font-display: swap; font-weight: 400 900;
  src: url("fonts/schibsted-grotesk-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal; font-display: swap; font-weight: 400 900;
  src: url("fonts/schibsted-grotesk-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   PR PLUS
   The system is the logo: a plus that multiplies.
   One family (Schibsted Grotesk), one red, off-white + ink.
   ============================================================ */

:root {
  --bg: #f7f4f3;
  --bg-2: #efebea;
  --ink: #1b1616;
  --ink-2: #4d4545;
  --ink-3: #8a8080;
  --line: rgba(27, 22, 22, 0.14);
  --red: #e11d21;
  --red-ink: #c4151b;
  --red-deep: #a8121a;
  --night: #151112;
  --night-ink: #f3efee;
  --night-2: #aaa1a0;

  --font: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1360px;
  --gut: clamp(16px, 4vw, 56px);
  --bar-h: 72px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --z-bar: 20;
  --z-menu: 30;
  --z-skip: 40;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  font-feature-settings: "ss01";
}
@media (min-width: 900px) { body { font-size: 18px; } }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--red); color: #fff; }

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.skip {
  position: fixed; left: 16px; top: 12px; z-index: var(--z-skip);
  background: var(--ink); color: var(--bg); padding: 10px 16px; font-weight: 600;
  transform: translateY(-160%);
}
.skip:focus-visible { transform: none; }

/* ---------- Type ---------- */
.h2 {
  font-size: clamp(2.1rem, 5.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

/* ---------- Buttons ---------- */
.btn {
  --bh: 56px;
  display: inline-flex; align-items: center; gap: 14px;
  height: var(--bh); padding: 0 12px 0 26px;
  background: var(--ink); color: var(--bg);
  font-weight: 600; font-size: 16px; letter-spacing: -0.005em;
  border-radius: 999px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 160ms var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--red); border-radius: inherit;
  transform: translateY(101%);
  transition: transform 420ms var(--ease-expo);
}
.btn:active { transform: scale(0.97); }
.btn-plus {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red); position: relative; flex: none;
  transition: background-color 300ms var(--ease-out), transform 420ms var(--ease-expo);
}
.btn-plus::before, .btn-plus::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 2.5px; background: #fff; border-radius: 1px;
  transform: translate(-50%, -50%);
}
.btn-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover::before { transform: translateY(0); }
  .btn:hover .btn-plus { background: var(--ink); transform: rotate(90deg); }
}
.btn-sm { --bh: 42px; padding: 0 20px; font-size: 15px; }

.link {
  font-weight: 600; font-size: 16px;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1.5px no-repeat;
  padding-bottom: 3px;
  transition: background-size 360ms var(--ease-expo);
}
@media (hover: hover) and (pointer: fine) {
  .link:hover { background-size: 0% 1.5px; background-position: 100% 100%; }
}

/* ---------- Header ---------- */
.bar {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-bar);
  height: var(--bar-h);
  transition: transform 420ms var(--ease-expo), background-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.bar.is-solid { background: var(--bg); box-shadow: 0 1px 0 var(--line); }
.bar.is-hidden { transform: translateY(-100%); }
.bar-in { height: 100%; display: flex; align-items: center; gap: 40px; }
.bar-logo img { height: 26px; width: auto; }
.bar-nav { display: flex; gap: 30px; margin-left: auto; }
.bar-nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0;
  transition: color 200ms var(--ease-out);
}
.bar-nav a::after {
  content: ""; position: absolute; left: 50%; top: -6px;
  width: 7px; height: 7px; margin-left: -3.5px;
  background:
    linear-gradient(var(--red), var(--red)) center / 100% 2px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2px 100% no-repeat;
  opacity: 0; transform: scale(0.5) rotate(-90deg);
  transition: opacity 200ms var(--ease-out), transform 300ms var(--ease-out);
}
.bar-nav a.is-current { color: var(--ink); }
.bar-nav a.is-current::after { opacity: 1; transform: none; }
@media (hover: hover) and (pointer: fine) {
  .bar-nav a:hover { color: var(--ink); }
  .bar-nav a:hover::after { opacity: 1; transform: none; }
}
.bar-menu { display: none; }

@media (max-width: 860px) {
  :root { --bar-h: 62px; }
  .bar-nav, .bar-cta { display: none; }
  .bar-logo img { height: 22px; }
  .bar-menu {
    display: inline-flex; align-items: center; gap: 12px; margin-left: auto;
    height: 44px; padding: 0 4px 0 12px; font-weight: 600; font-size: 15px;
  }
  .bar-menu-icon { width: 22px; height: 22px; position: relative; }
  .bar-menu-icon::before, .bar-menu-icon::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 18px; height: 2.5px; background: var(--red); border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: transform 360ms var(--ease-expo);
  }
  .bar-menu-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  .bar-menu[aria-expanded="true"] .bar-menu-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
  .bar-menu[aria-expanded="true"] .bar-menu-icon::after { transform: translate(-50%, -50%) rotate(135deg); }
}

/* mobile menu */
.menu {
  position: fixed; inset: var(--bar-h) 0 0 0; z-index: var(--z-menu);
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding-block: 24px 32px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 520ms var(--ease-expo);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu-nav { display: flex; flex-direction: column; }
.menu-nav a {
  font-size: clamp(2.4rem, 11vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.12;
  opacity: 0; transform: translateY(20px);
  transition: opacity 400ms var(--ease-out), transform 520ms var(--ease-expo);
}
.menu.is-open .menu-nav a { opacity: 1; transform: none; }
.menu.is-open .menu-nav a:nth-child(2) { transition-delay: 40ms; }
.menu.is-open .menu-nav a:nth-child(3) { transition-delay: 80ms; }
.menu.is-open .menu-nav a:nth-child(4) { transition-delay: 120ms; }
.menu.is-open .menu-nav a:nth-child(5) { transition-delay: 160ms; color: var(--red-ink); }
.menu-foot { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: var(--ink-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* full screen on laptops, capped on tall monitors so the headline never drifts to the bottom */
  min-height: clamp(620px, 100svh, 920px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--bar-h) + 40px);
  padding-bottom: clamp(32px, 6vh, 64px);
  overflow: hidden;
  touch-action: pan-y;
}
.field {
  position: absolute; inset: 0; width: 100%; height: 100%;
  /* quiet the field behind the reading area */
  -webkit-mask-image: radial-gradient(ellipse 42% 30% at 22% 90%, transparent 35%, #000 100%);
          mask-image: radial-gradient(ellipse 42% 30% at 22% 90%, transparent 35%, #000 100%);
}
@media (max-width: 760px) {
  .field {
    -webkit-mask-image: linear-gradient(to bottom, #000 30%, rgba(0,0,0,0.25) 48%, transparent 58%);
            mask-image: linear-gradient(to bottom, #000 30%, rgba(0,0,0,0.25) 48%, transparent 58%);
  }
}
.hero-in { position: relative; pointer-events: none; }
.hero-in a, .hero-in button { pointer-events: auto; }

.hero-title {
  font-size: clamp(2.6rem, 8.4vw, 7.6rem);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 12.5ch;
}
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .w > span { display: inline-block; }
.hero-title .dot { font-style: normal; color: var(--red); }

.hero-foot {
  margin-top: clamp(28px, 5vh, 56px);
  display: grid;
  grid-template-columns: minmax(0, 34ch) auto 1fr;
  align-items: end;
  gap: 28px 48px;
}
.hero-lead { color: var(--ink-2); font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.5; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-reach {
  justify-self: end; text-align: right;
  display: grid; gap: 4px;
}
.hero-reach-n { font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--red-ink); }
.hero-reach-t { font-size: 14px; color: var(--ink-2); line-height: 1.35; }
@media (hover: hover) and (pointer: fine) {
  .hero-reach-t { transition: color 200ms var(--ease-out); }
  .hero-reach:hover .hero-reach-t { color: var(--ink); }
}


@media (max-width: 1080px) {
  .hero-foot { grid-template-columns: 1fr auto; }
  .hero-lead { grid-column: 1 / -1; max-width: 42ch; }
}
@media (max-width: 560px) {
  .hero-foot { grid-template-columns: 1fr; gap: 24px; }
  .hero-reach { justify-self: start; text-align: left; padding-top: 20px; border-top: 1px solid var(--line); width: 100%; }
}

/* hero entrance */
.js .hero-title .w > span { transform: translateY(105%); }
.js .hero-foot > * { opacity: 0; transform: translateY(16px); }
.is-ready .hero-title .w > span {
  transform: none;
  transition: transform 1100ms var(--ease-expo);
  transition-delay: calc(var(--i, 0) * 80ms + 150ms);
}
.is-ready .hero-foot > * {
  opacity: 1; transform: none;
  transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-expo);
  transition-delay: calc(var(--i, 0) * 90ms + 650ms);
}

/* ---------- Sections ---------- */
.sec { padding-block: clamp(88px, 14vw, 180px); position: relative; }

.sec-head {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px 64px; align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.sec-lead { color: var(--ink-2); max-width: 44ch; text-wrap: pretty; }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.svc-groups { display: grid; gap: clamp(64px, 9vw, 120px); }
.svc-group {
  display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 2.2fr);
  gap: 24px clamp(32px, 5vw, 80px); align-items: start;
}
.svc-group-head { position: sticky; top: calc(var(--bar-h) + 32px); padding-top: 22px; }
.svc-group-title {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem); font-weight: 850; letter-spacing: -0.045em; line-height: 0.95;
  display: flex; align-items: baseline; gap: 0.12em;
}
.svc-group-title::after { content: "+"; color: var(--red); }
.svc-group-head p { margin-top: 14px; color: var(--ink-2); max-width: 24ch; }
@media (max-width: 860px) {
  .svc-group { grid-template-columns: 1fr; }
  .svc-group-head { position: static; padding-top: 0; }
}

.svc { border-top: 1.5px solid var(--ink); }
.svc li { border-bottom: 1px solid var(--line); }
.svc a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) 52px;
  gap: 12px 36px; align-items: center;
  padding: clamp(22px, 2.6vw, 32px) 0;
  position: relative; isolation: isolate;
}
.svc a::before {
  content: ""; position: absolute; inset: 0 -20px; z-index: -1;
  background: var(--red);
  transform: scaleY(0); transform-origin: 50% 100%;
  transition: transform 480ms var(--ease-expo);
}
.svc-name {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem); font-weight: 750;
  letter-spacing: -0.03em; line-height: 1.05;
  transition: transform 480ms var(--ease-expo), color 240ms var(--ease-out);
}
.svc-tag {
  font-style: normal; font-size: 0.34em; font-weight: 700; letter-spacing: 0;
  vertical-align: super; color: var(--red-ink); margin-left: 4px; white-space: nowrap;
  transition: color 240ms var(--ease-out);
}
.svc-desc { color: var(--ink-2); max-width: 44ch; font-size: 16px; line-height: 1.5; transition: color 240ms var(--ease-out); }
.svc-go {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--ink);
  position: relative; justify-self: end;
  transition: transform 480ms var(--ease-expo), border-color 240ms var(--ease-out), background-color 240ms var(--ease-out);
}
.svc-go::before, .svc-go::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 2px; background: var(--ink); transform: translate(-50%, -50%);
  transition: background-color 240ms var(--ease-out);
}
.svc-go::after { transform: translate(-50%, -50%) rotate(90deg); }

@media (hover: hover) and (pointer: fine) {
  .svc a:hover::before { transform: scaleY(1); }
  .svc a:hover .svc-name { color: #fff; transform: translateX(14px); }
  .svc a:hover .svc-tag, .svc a:hover .svc-desc { color: #fff; }
  .svc a:hover .svc-go { border-color: #fff; background: #fff; transform: rotate(90deg); }
  .svc a:hover .svc-go::before, .svc a:hover .svc-go::after { background: var(--red); }
}
.svc a:focus-visible { outline-offset: -2px; }

@media (max-width: 760px) {
  .svc a { grid-template-columns: 1fr 44px; }
  .svc-desc { grid-column: 1; grid-row: 2; font-size: 16px; }
  .svc-tag { display: block; font-size: 13px; vertical-align: baseline; margin: 6px 0 0; }
  .svc-go { grid-column: 2; grid-row: 1 / span 2; width: 44px; height: 44px; align-self: start; }
  .svc-go::before, .svc-go::after { width: 14px; }
}

/* ---------- Reach (sticky scrollytelling) ---------- */
.amp { height: 420vh; position: relative; background: var(--bg-2); }
.amp-stick {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; align-items: center;
}
.amp-in {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-areas: "title title" "figure steps";
  gap: clamp(32px, 6vh, 72px) clamp(40px, 6vw, 96px);
  align-items: end;
  padding-top: var(--bar-h);
}
.amp-title {
  grid-area: title;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
}
.amp-title span { color: var(--ink-3); }
.amp-figure { grid-area: figure; }
.amp-num {
  font-size: clamp(4.2rem, 15vw, 13rem);
  font-weight: 850; letter-spacing: -0.055em; line-height: 0.86;
  white-space: nowrap;
}
.amp-unit {
  font-size: 0.2em; font-weight: 700; letter-spacing: -0.02em;
  color: var(--red-ink); vertical-align: 0.2em; margin-left: 0.1em;
}
.amp-bar {
  display: flex; gap: 3px; margin-top: clamp(24px, 4vh, 40px);
  height: 64px; max-width: 760px;
}
.seg {
  flex: 0 0 calc(var(--w) * 1%);
  position: relative;
}
.seg::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 14px;
  background: var(--c); border-radius: 2px;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 700ms var(--ease-expo);
}
.seg i {
  position: absolute; left: 0; top: 24px;
  font-style: normal; font-size: 13px; font-weight: 600; color: var(--ink-2); white-space: nowrap;
  opacity: 0; transform: translateY(6px);
  transition: opacity 400ms var(--ease-out) 200ms, transform 500ms var(--ease-expo) 200ms;
}
.seg-tt { --c: #6f6464; }
.seg-ig { --c: #3a3131; }
.seg-fb { --c: var(--red); }
.seg.is-on::before { transform: scaleX(1); }
.seg.is-on i { opacity: 1; transform: none; }

.amp-steps { grid-area: steps; display: grid; gap: 0; border-top: 1.5px solid var(--ink); }
.amp-steps li {
  padding: 16px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.st-name {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem); font-weight: 750; letter-spacing: -0.02em;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 12px;
  transition: color 300ms var(--ease-out);
}
.st-name::before {
  content: ""; width: 12px; height: 12px; flex: none;
  background:
    linear-gradient(var(--red), var(--red)) center / 100% 2.5px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2.5px 100% no-repeat;
  transform: scale(0) rotate(-90deg);
  transition: transform 420ms var(--ease-expo);
}
.st-text {
  display: grid; color: var(--ink-2); font-size: 16px; line-height: 1.45;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: opacity 300ms var(--ease-out);
}
.amp-steps li.is-active .st-name { color: var(--ink); }
.amp-steps li.is-active .st-name::before { transform: none; }
.amp-steps li.is-active .st-text { max-height: 6em; opacity: 1; padding-top: 8px; padding-left: 24px; }
.amp-steps li.is-past .st-name { color: var(--ink-2); }

.amp-note { grid-column: 1 / -1; font-size: 13px; color: var(--ink-3); margin-top: -12px; }

@media (max-width: 860px) {
  .amp { height: 380vh; }
  .amp-in {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "figure" "steps";
    gap: 28px; align-items: start;
  }
  .amp-bar { height: 52px; }
  .amp-steps li { padding: 11px 0; }
  .st-text { font-size: 15px; }
}
@media (max-height: 640px) and (max-width: 860px) {
  .amp-title span { display: none; }
}

/* portal stats */
.portal { padding-block: clamp(64px, 9vw, 120px); background: var(--bg-2); }
.portal-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr); gap: 32px 64px; align-items: start; }
.portal-lead { font-size: clamp(1.2rem, 1.8vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; max-width: 19ch; }
.portal-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.portal-stats div { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 10px; border-top: 1.5px solid var(--ink); padding-top: 20px; }
.portal-stats dd { font-size: clamp(2rem, 4.4vw, 3.8rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.portal-stats dd .u { font-size: 0.62em; margin-left: 0.04em; vertical-align: 0.34em; }
.portal-stats dt { color: var(--ink-2); font-size: 15px; max-width: 26ch; line-height: 1.4; }
.portal-links { margin-top: 16px; color: var(--ink-2); font-size: 15px; max-width: 30ch; }
.portal-links a { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; text-decoration-color: var(--red); }
@media (hover: hover) and (pointer: fine) { .portal-links a:hover { color: var(--red-ink); } }
@media (max-width: 860px) {
  .portal-in { grid-template-columns: 1fr; }
  .portal-stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Doctrine ---------- */
.doctrine {
  background: var(--night); color: var(--night-ink);
  padding-block: clamp(110px, 16vw, 220px);
  position: relative;
}
.scrub {
  font-size: clamp(1.9rem, 4.6vw, 4.3rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.06;
  max-width: 22ch;
  text-wrap: pretty;
}
.scrub em { font-style: normal; color: var(--red); }
.scrub .sw { opacity: var(--o, 1); transition: opacity 120ms linear; }
.js .scrub .sw { --o: 0.14; }

.principles {
  margin-top: clamp(80px, 11vw, 150px);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 48px;
}
.principles > div { border-top: 1.5px solid rgba(243, 239, 238, 0.9); padding-top: 20px; }
.principles > div:nth-child(2) { margin-top: 48px; }
.principles > div:nth-child(3) { margin-top: 96px; }
.principles h3 { font-size: 1.3rem; font-weight: 750; letter-spacing: -0.02em; margin-bottom: 10px; }
.principles p { color: var(--night-2); max-width: 36ch; }
@media (max-width: 860px) {
  .principles { grid-template-columns: 1fr; }
  .principles > div:nth-child(n) { margin-top: 0; }
}

/* ---------- Clients ---------- */
.clients-in {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 56px clamp(40px, 7vw, 120px); align-items: start;
}
.clients-side .h2 { font-size: clamp(2rem, 4vw, 3.6rem); max-width: 12ch; }
.who { margin-top: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; align-items: flex-start; }
.who button {
  position: relative; text-align: left;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem); font-weight: 600; color: var(--ink-3);
  padding: 10px 0 12px; min-height: 44px;
  transition: color 200ms var(--ease-out);
}
.who button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: 0 50%;
}
.who button[aria-selected="true"] { color: var(--ink); }
.who button[aria-selected="true"]::after { animation: tabprogress var(--dur, 7000ms) linear forwards; }
.who.is-paused button[aria-selected="true"]::after { animation-play-state: paused; }
.who.is-manual button[aria-selected="true"]::after { animation: none; transform: scaleX(1); }
@keyframes tabprogress { to { transform: scaleX(1); } }
@media (hover: hover) and (pointer: fine) { .who button:hover { color: var(--ink); } }

.quote {
  position: sticky; top: calc(var(--bar-h) + 40px);
  padding-top: 8px;
}
.quote::before {
  content: "\201C"; display: block;
  font-size: clamp(6rem, 10vw, 9rem); font-weight: 900; line-height: 1; height: 0.5em; overflow: hidden;
  margin-bottom: 12px;
  color: var(--red);
}
.quote blockquote p {
  font-size: clamp(1.6rem, 3.2vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12;
  text-wrap: pretty;
  min-height: 4.5em;
}
.quote figcaption { margin-top: 28px; color: var(--ink-2); font-size: 16px; }
.quote .q-in { animation: qin 700ms var(--ease-expo) both; }
.quote .q-in-2 { animation: qin 700ms var(--ease-expo) 80ms both; }
@keyframes qin { from { opacity: 0; transform: translateY(18px); } }
@media (max-width: 860px) {
  .clients-in { grid-template-columns: 1fr; }
  .quote { position: static; }
  .quote blockquote p { min-height: 5.6em; }
  .who { flex-direction: row; flex-wrap: wrap; gap: 0 22px; }
}

/* roster marquee */
.roster { margin-top: clamp(96px, 12vw, 160px); }
.roster-head {
  display: flex; justify-content: space-between; align-items: end; gap: 20px 40px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.roster-head > p { color: var(--ink-2); max-width: 36ch; }
.clutch { display: grid; grid-template-columns: auto auto; column-gap: 12px; align-items: center; font-weight: 600; font-size: 15px; }
.clutch strong {
  grid-row: span 2; font-size: 2.4rem; font-weight: 850; letter-spacing: -0.04em; line-height: 1; color: var(--red-ink);
}
.clutch span { font-weight: 500; color: var(--ink-2); font-size: 14px; }
.roster-track {
  display: flex; width: max-content;
  border-block: 1.5px solid var(--ink);
  animation: roster 60s linear infinite;
}
.roster-track:hover { animation-play-state: paused; }
.roster-row { display: flex; flex: none; }
.roster-row span {
  font-size: clamp(2rem, 5vw, 4.4rem); font-weight: 850; letter-spacing: -0.045em; line-height: 1;
  padding: 0.32em 0 0.32em 0.55em; white-space: nowrap; display: flex; align-items: center; gap: 0.55em;
}
.roster-row span::after {
  content: ""; width: 0.36em; height: 0.36em; flex: none;
  background:
    linear-gradient(var(--red), var(--red)) center / 100% 26% no-repeat,
    linear-gradient(var(--red), var(--red)) center / 26% 100% no-repeat;
}
@keyframes roster { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .roster-track { animation: none; flex-wrap: wrap; width: auto; }
  .roster-row + .roster-row { display: none; }
  .roster-row { flex-wrap: wrap; padding-inline: var(--gut); }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--red-deep); color: #fff;
  padding-block: clamp(96px, 13vw, 170px) clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.contact-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px 64px; align-items: end; }
.contact-head p { color: rgba(255, 255, 255, 0.86); max-width: 38ch; }
@media (max-width: 860px) { .contact-head { grid-template-columns: 1fr; } }

.mega {
  display: block; margin-block: clamp(48px, 8vw, 96px);
  font-size: clamp(2.3rem, 10.6vw, 10.2rem);
  font-weight: 850; letter-spacing: -0.05em; line-height: 0.95;
  white-space: nowrap;
}
.mega .ch { display: inline-block; transition: transform 500ms var(--ease-expo), color 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .mega:hover .ch { transform: translateY(calc(var(--lift, 0) * -1px)); }
}
.mega:focus-visible { outline-color: #fff; outline-offset: 8px; }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 48px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.9); padding-top: 24px;
  font-size: 17px; font-weight: 600;
}
.contact-grid div { display: flex; flex-direction: column; gap: 4px; }
.contact-grid .k { font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.8); }
.contact-grid a { width: fit-content; }
@media (hover: hover) and (pointer: fine) {
  .contact-grid a { background: linear-gradient(#fff, #fff) 0 100% / 0% 1.5px no-repeat; transition: background-size 360ms var(--ease-expo); }
  .contact-grid a:hover { background-size: 100% 1.5px; }
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.foot { background: var(--night); color: var(--night-2); padding-block: 56px 32px; font-size: 15px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.foot-logo { height: 26px; width: auto; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.foot-nav a { color: var(--night-ink); padding-block: 6px; }
@media (hover: hover) and (pointer: fine) { .foot-nav a:hover { color: #ff5a5e; } }
.foot-legal {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(243, 239, 238, 0.14);
  display: flex; justify-content: space-between; gap: 12px 32px; flex-wrap: wrap; font-size: 13px;
}

/* ---------- Subpages (privatnost, uvjeti) ---------- */
.page .bar { background: var(--bg); box-shadow: 0 1px 0 var(--line); }
.doc-hero { padding-top: calc(var(--bar-h) + clamp(64px, 10vw, 140px)); padding-bottom: clamp(40px, 6vw, 72px); }
.doc-kicker { font-weight: 600; color: var(--red-ink); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.doc-kicker::before {
  content: ""; width: 12px; height: 12px; flex: none;
  background:
    linear-gradient(var(--red), var(--red)) center / 100% 2.5px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2.5px 100% no-repeat;
}
.doc-title {
  font-size: clamp(2.6rem, 8vw, 6.4rem); font-weight: 850;
  line-height: 0.95; letter-spacing: -0.045em; text-wrap: balance;
}
.doc-meta { margin-top: clamp(24px, 3vw, 36px); display: flex; flex-wrap: wrap; gap: 8px 32px; color: var(--ink-2); font-size: 15px; }

.doc { padding-bottom: clamp(88px, 12vw, 160px); }
.clauses { border-top: 1.5px solid var(--ink); }
.clause {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 12px 64px; padding: clamp(28px, 4vw, 48px) 0; border-bottom: 1px solid var(--line);
}
.clause-no { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -0.03em; color: var(--red-ink); line-height: 1.1; }
.clause h2 { font-size: clamp(1.5rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 14px; }
.clause p { color: var(--ink-2); max-width: 62ch; text-wrap: pretty; }
.clause a, .doc-end a:not(.link) { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
@media (max-width: 760px) { .clause { grid-template-columns: 1fr; } }

.doc-end {
  margin-top: clamp(48px, 6vw, 80px);
  display: flex; justify-content: space-between; align-items: center; gap: 20px 40px; flex-wrap: wrap;
}
.doc-end p { color: var(--ink-2); max-width: 52ch; }

/* ---------- Scroll reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity 800ms var(--ease-out), transform 1000ms var(--ease-expo);
  transition-delay: var(--d, 0ms);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; transition-delay: 0ms !important; }
  .js .hero-title .w > span, .js .hero-foot > *, .js [data-reveal] { transform: none; opacity: 1; }
  .js .scrub .sw { --o: 1; }
  .who button[aria-selected="true"]::after { animation: none; transform: scaleX(1); }
}

.menu[hidden] { display: none; }
