/* ============================================================
   TROOPER · styles.css
   Design: "Trooper Forside" (claude.ai/design) · juli 2026
   Fonte: Fraunces (variable, retunet: SOFT 0 + WONK 1) + Open Sans (variable), self-hosted
   Alle design-tokens bor her – rør dem ét sted.
   ============================================================ */

/* ---------- Fonte (self-hosted i /assets/fonts/) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin-full-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin-full-italic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-stretch: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/open-sans-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #F6F5F3;
  --ink: #241F21;
  --coral: #F06C5F;
  --charcoal: #2a2a2e;
  --gray: #6B6B6B;
  --warmgray: #a39f97;
  --body: #34332e;
  --body-2: #54534c;
  --muted-dark: #b7b5ae;
  --line: #DCD9D3;
  --line-dark: rgba(246, 245, 243, .14);
  --page-bg: #e7e4de;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Open Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  z-index: 200;
}
.skip:focus { left: 0; }

/* Serif-accent i overskrifter (coral, uden kursiv) */
.accent-i {
  font-family: var(--serif);
  font-style: normal;
  color: var(--coral);
  font-weight: 640;
}

/* ---------- Canvas (papir-fladen) ---------- */
.canvas {
  max-width: 1280px;
  margin: 0 auto;
  background-color: var(--paper);
  /* Tern: kun i sidens hoved – fader ud og dækkes af papiret længere nede */
  background-image:
    linear-gradient(to bottom, rgba(243, 244, 245, 0) 0px, rgba(243, 244, 245, 0) 950px, #F3F4F5 2100px),
    linear-gradient(rgba(36, 31, 33, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 31, 33, .14) 1px, transparent 1px);
  background-size: 100% 100%, 80px 80px, 80px 80px;
  background-position: 0 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

/* Kicker / eyebrow */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--coral);
}
.kicker--plain::before { display: none; }
.kicker--dark { color: var(--warmgray); }

/* ============================================================
   HEADER · TROOPER kollapser til E'et (menu) ved scroll
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 30px 64px;
  background: rgba(246, 245, 243, .8);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  backdrop-filter: saturate(1.5) blur(14px);
  box-shadow: 0 1px 0 rgba(22, 22, 24, .07);
  transition: padding .4s var(--ease-out);
}
.site-header.is-collapsed { padding: 15px 64px; }
.header-inner { position: relative; height: 72px; }

.logo-full {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 72px;
  width: auto;
  display: block;
  transition: opacity .7s ease, transform .85s var(--ease-out);
}
.is-collapsed .logo-full {
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
}
.menu-btn {
  position: absolute;
  left: 241px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  height: 72px;
  line-height: 0;
  cursor: pointer;
  transition: transform .85s var(--ease-out);
}
.is-collapsed .menu-btn { transform: translateY(-50%) translateX(-241px); }
.menu-btn img { height: 72px; width: auto; display: block; }
.logo-mobile {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  width: auto;
}

/* Dropdown-menu */
.menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 14px;
  width: 392px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(22, 22, 24, .28);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .32s var(--ease-out);
}
.menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px 16px;
  border-bottom: 1px solid rgba(22, 22, 24, .12);
}
.menu-head .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}
.menu-head .wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--warmgray);
}
.menu-head .wordmark::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--coral);
}
.menu-item {
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  column-gap: 16px;
  padding: 16px 26px;
  text-decoration: none;
  transition: padding .28s var(--ease-out), background .2s ease;
}
.menu-item + .menu-item { border-top: 1px solid rgba(22, 22, 24, .09); }
.menu-item:hover {
  padding-left: 34px;
  background: rgba(22, 22, 24, .035);
}
.menu-item .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--coral);
  font-weight: 680;
}
.menu-item .title {
  display: block;
  font-family: var(--serif);
  font-weight: 580;
  font-size: 25px;
  line-height: 1.04;
  color: var(--ink);
}
.menu-item .sub {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: #6a685f;
}
.menu-item .arrow { font-size: 14px; color: var(--coral); }
.menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  background: var(--ink);
  text-decoration: none;
  transition: background .2s ease;
}
.menu-cta:hover { background: var(--coral); }
.menu-cta .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
}
.menu-cta .arrow { font-size: 14px; color: var(--coral); }
.menu-cta:hover .arrow { color: var(--ink); }

/* ============================================================
   HERO · zoom ved scroll
   ============================================================ */
.hero {
  position: relative;
  height: 780px;
  overflow: hidden;
  background: #cbcfd3 url("assets/paper-header.jpg") center/cover;
  cursor: crosshair;
}
.fig {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.fig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.18) brightness(1.02);
}
.fig--male img { object-position: 50% 33%; }
.fig--female img { object-position: 50% 31%; }
.fig .tint {
  filter: grayscale(1) sepia(1) saturate(2.7) hue-rotate(-18deg) brightness(1.06);
  -webkit-mask: radial-gradient(circle 165px at var(--mx, -400px) var(--my, -400px), #000 0%, #000 44%, transparent 100%);
  mask: radial-gradient(circle 165px at var(--mx, -400px) var(--my, -400px), #000 0%, #000 44%, transparent 100%);
}
.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(241, 242, 244, .34), rgba(241, 242, 244, .34)),
    linear-gradient(to right, rgba(233, 235, 237, .86) 0%, rgba(233, 235, 237, .34) 24%, rgba(233, 235, 237, .12) 42%, rgba(233, 235, 237, .12) 58%, rgba(233, 235, 237, .48) 80%, rgba(233, 235, 237, .78) 100%),
    linear-gradient(to top, rgba(233, 235, 237, .92) 0%, rgba(233, 235, 237, .4) 28%, rgba(233, 235, 237, .06) 56%);
}

.hero-links {
  position: absolute;
  right: 0;
  top: 0;
  width: 454px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 56px 0 0;
}
.hero-link {
  display: grid;
  grid-template-columns: 64px 1fr 24px;
  align-items: baseline;
  column-gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(22, 22, 24, .2);
  text-decoration: none;
  opacity: 0;
  transform: translateX(70px);
  transition: opacity .5s ease, transform .7s cubic-bezier(.16, 1, .3, 1), border-color .25s ease;
}
.hero-link:last-child { border-bottom: 1px solid rgba(22, 22, 24, .2); }
.hero-link:hover { border-color: var(--coral); }
.hero-link .num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 680;
  color: var(--coral);
}
.hero-link .title {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 33px;
  line-height: 1.06;
  color: var(--ink);
}
.hero-link .sub {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--body-2);
}
.hero-link .arrow {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(22, 22, 24, .42);
  align-self: center;
}

.hero-head {
  position: absolute;
  left: 56px;
  bottom: 64px;
  transform-origin: left bottom;
  will-change: transform;
  max-width: 600px;
  transform: scale(.4);
  opacity: .34;
  transition: transform .5s var(--ease-out), opacity .4s ease;
}
.hero-head h1 {
  font-family: var(--serif);
  font-weight: 640;
  font-size: 66px;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0;
}
.hero-head h1 .accent-i {
  font-weight: 560;
}
.hero-lead {
  margin: 22px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #3a382f;
  max-width: 430px;
  text-wrap: pretty;
}
.hero-hint {
  position: absolute;
  left: 56px;
  top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(22, 22, 24, .6);
  transition: opacity .3s ease;
}
.hero-hint .dash {
  width: 30px;
  height: 1px;
  background: rgba(22, 22, 24, .34);
}

/* Uden JS (eller med reduced motion) vises hero-indholdet fuldt */
.no-zoom .hero-head { transform: none; opacity: 1; }
.no-zoom .hero-link { opacity: 1; transform: none; }
.no-zoom .hero-hint { display: none; }

/* ============================================================
   LYS → PAPIR → KOKSGRÅ FORLØB
   ============================================================ */
.depth {
  position: relative;
  isolation: isolate;
  background-color: transparent;
}
.depth::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: url("assets/paper-body-hero.jpg") top center/cover no-repeat;
  -webkit-mask: linear-gradient(to bottom, transparent 0, transparent 2100px, rgba(0, 0, 0, .3) 2500px, rgba(0, 0, 0, .7) 2900px, #000 3200px, #000 100%);
  mask: linear-gradient(to bottom, transparent 0, transparent 2100px, rgba(0, 0, 0, .3) 2500px, rgba(0, 0, 0, .7) 2900px, #000 3200px, #000 100%);
}
.depth::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(42, 42, 46, 0) 0%, rgba(42, 42, 46, 0) 31%, rgba(42, 42, 46, .16) 38%, rgba(42, 42, 46, .6) 47%, rgba(42, 42, 46, .85) 53%, rgba(42, 42, 46, .87) 75%, rgba(42, 42, 46, .9) 88%, rgba(42, 42, 46, .95) 93%, rgba(42, 42, 46, .95) 100%);
}

/* ============================================================
   KERNEFORTÆLLING
   ============================================================ */
.kerne { padding: 98px 64px 82px; border-bottom: 1px solid var(--line); }
.kerne .kicker { margin-bottom: 46px; }
.kerne h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 0;
  max-width: 1000px;
  text-wrap: balance;
}
.kerne-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  margin-top: 48px;
}
.kerne-grid p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
}
.kerne-sub {
  margin-top: 58px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.kerne-sub h3 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: -.014em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.kerne-sub h3 .accent-i {
  font-weight: 500;
}
.kerne-sub p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
}
.kerne-link {
  display: inline-block;
  margin-top: 24px;
}

/* ============================================================
   ARTIKLER
   ============================================================ */
.articles { padding: 64px 64px 60px; }
.articles-foot {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: right;
}
.articles-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.link-underline {
  flex: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
}
.link-underline .arrow { color: var(--coral); }

.feature-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 52px 0 56px;
  text-decoration: none;
}
.media-reveal {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.media-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.04);
  transition: filter .5s ease;
}
.feature-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 22px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.feature-card h3 .accent-i {
  font-weight: 460;
}
.feature-card p {
  margin: 0 0 30px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--body);
  max-width: 420px;
}
.feature-card .read-more {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 6px;
}

.article-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.article-row:last-child { border-bottom: 1px solid var(--line); }
.article-row .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 11px;
}
.article-row h3 {
  font-family: var(--serif);
  font-weight: 520;
  font-size: 29px;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
.article-row p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}
.article-row .meta { font-size: 12px; color: var(--gray); }

/* ============================================================
   YDELSER
   ============================================================ */
.services-head { padding: 70px 60px 44px; }
.services-head .kicker { margin-bottom: 28px; }
.services-head h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  max-width: 880px;
  text-wrap: balance;
}
.services-head h2 .accent-i {
  font-weight: 500;
}

.billboard {
  display: block;
  position: relative;
  margin: 0 0 8px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  text-decoration: none;
}
.billboard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
  pointer-events: none;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.05);
}
.billboard .shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(12, 12, 14, .8) 0%, rgba(12, 12, 14, .34) 30%, rgba(12, 12, 14, 0) 56%);
}
.billboard .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 60px;
  pointer-events: none;
}
.billboard .tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 16px;
}
.billboard .tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(246, 245, 243, .28);
  max-width: 220px;
}
.billboard h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -.022em;
  color: var(--paper);
  margin: 0;
  max-width: 760px;
  text-wrap: balance;
}
.billboard h3 .accent-i {
  font-weight: 500;
}

.training-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 60px 26px;
}
.training-head h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 48px;
  line-height: .96;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 0;
}
.training-head h3 .accent-i {
  font-weight: 500;
}
.training-head .sub { font-size: 14px; color: var(--warmgray); margin-top: 12px; }
.link-underline--light {
  color: var(--paper);
  border-bottom-color: rgba(246, 245, 243, .5);
}

/* Mosaik-grid */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  gap: 14px;
  padding: 0 60px 56px;
}
.mosaic-card {
  overflow: hidden;
  position: relative;
  background: var(--ink);
  text-decoration: none;
}
.mosaic-card--w7t { grid-column: span 7; grid-row: span 5; }
.mosaic-card--w5t { grid-column: span 5; grid-row: span 5; }
.mosaic-card--w5b { grid-column: span 5; grid-row: span 4; }
.mosaic-card--w7b { grid-column: span 7; grid-row: span 4; }
.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.05);
}
.mosaic-card--w5b img { object-position: 55% 28%; }
.mosaic-card .shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(12, 12, 14, .8) 0%, rgba(12, 12, 14, .26) 36%, transparent 62%);
}
.mosaic-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 30px;
  pointer-events: none;
}
.mosaic-card--w5b .caption,
.mosaic-card--w7b .caption { padding: 26px 28px; }
.mosaic-card .tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 11px;
}
.mosaic-card h4 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 31px;
  line-height: 1.03;
  letter-spacing: -.012em;
  color: var(--paper);
  margin: 0;
  text-wrap: balance;
}
.mosaic-card--w5b h4,
.mosaic-card--w7b h4 {
  font-size: 28px;
  letter-spacing: -.01em;
  font-weight: 480;
}

/* ============================================================
   KLIPPEKORT-BÅND
   ============================================================ */
.klip {
  border-top: 1px solid var(--line-dark);
  padding: 38px 60px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  align-items: center;
}
.klip .kicker { margin-bottom: 6px; }
.klip h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -.018em;
  color: var(--paper);
  margin: 0;
  max-width: 560px;
  text-wrap: balance;
}
.klip h2 .accent-i {
  font-weight: 500;
}
.klip-aside { justify-self: end; }
.klip-aside p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 320px;
}
.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--coral);
  color: var(--ink);
  text-decoration: none;
  padding: 18px 26px;
}
.btn-coral .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ============================================================
   BAG TROOPER
   ============================================================ */
.founder {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 56px;
  padding: 60px 60px 64px;
  align-items: center;
}
.founder .kicker { margin-bottom: 22px; }
.founder h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -.018em;
  color: var(--paper);
  margin: 0 0 22px;
  text-wrap: balance;
}
.founder p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 520px;
}
.founder p:last-of-type { margin-bottom: 0; }
.founder .signature {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  color: var(--muted-dark);
}
.founder-portrait {
  display: block;
  width: 560px;
  max-width: 100%;
  height: 680px;
  justify-self: end;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  text-decoration: none;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 28%;
  display: block;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.03);
}

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta {
  padding: 62px 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 0;
  max-width: 680px;
  text-wrap: balance;
}
.cta h2 .accent-i {
  font-weight: 480;
}
.cta .btn-cta {
  flex: none;
  background: var(--coral);
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(246, 245, 243, .12);
  padding: 44px 64px 26px;
  color: var(--warmgray);
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 56px;
  align-items: start;
  padding-bottom: 36px;
}
.site-footer .brand { display: inline-block; }
.site-footer .brand img {
  height: 44px;
  width: auto;
  display: block;
}
.footnav { display: grid; gap: 9px; font-size: 13.5px; }
.footnav strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.footnav a { color: var(--muted-dark); text-decoration: none; }
.footnav a:hover { color: var(--paper); }
.copyright {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 245, 243, .12);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   GLOBAL CURSOR-AURA (gul) · kun synlig over aktive elementer
   ============================================================ */
.aura {
  position: fixed;
  left: 0;
  top: 0;
  width: 230px;
  height: 230px;
  margin: -115px 0 0 -115px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .18s ease;
  transform: translate(-9999px, -9999px);
  will-change: transform, opacity;
}
.aura .glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 182, 72, .52) 0%, rgba(240, 182, 72, .15) 46%, transparent 68%);
  mix-blend-mode: screen;
}
.aura .glow2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 150, 40, .32) 0%, rgba(222, 150, 40, .08) 46%, transparent 68%);
  mix-blend-mode: multiply;
}
.aura .ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  border: 1.5px solid rgba(176, 104, 20, .55);
}
.aura .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: rgba(168, 96, 14, .9);
}

/* ============================================================
   RESPONSIVT
   ============================================================ */
@media (max-width: 1024px) {
  .kerne, .articles, .cta, .site-footer { padding-left: 40px; padding-right: 40px; }
  .site-header { padding-left: 40px; padding-right: 40px; }
  .services-head, .training-head, .mosaic, .klip, .founder { padding-left: 40px; padding-right: 40px; }
  .billboard .caption { padding: 34px 40px; }
  .hero-head { left: 40px; }
  .hero-hint { left: 40px; }
  .kerne h2 { font-size: 46px; }
  .hero-head h1 { font-size: 54px; }
  .founder { grid-template-columns: 1fr; }
  .founder-portrait { justify-self: start; height: auto; aspect-ratio: 3 / 4; width: 100%; max-width: 560px; }
}

@media (max-width: 700px) {
  html, body { overflow-x: hidden; }
  .aura { display: none; }

  /* Header: logo til højre, E som menu-knap til venstre */
  .site-header { padding: 16px 22px; }
  .site-header.is-collapsed { padding: 16px 22px; }
  .header-inner { height: 46px; }
  .logo-full { display: none; }
  .logo-mobile { display: block; }
  .menu-btn { left: -14px; padding: 0 14px; transform: translateY(-50%); opacity: 1; pointer-events: auto; }
  .is-collapsed .menu-btn { transform: translateY(-50%); }
  .menu-btn img { height: 42px; }
  .menu { width: 86vw; left: 0; }
  .menu-item .title { font-size: 30px; }
  .menu-item .sub { font-size: 15px; }

  /* Hero forenklet: statuerne bag teksten, let parallax ved scroll (styres i site.js) */
  .hero { height: auto; min-height: 100vw; cursor: default; display: flex; align-items: flex-end; } /* højde = statuernes højde + ~0,5 cm luft over hovedet */
  .hero-links, .hero-hint { display: none; }
  /* Statuerne store – ca. halvdelen af kroppen synlig, én i hver side, uden overlap */
  .fig img {
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: 0;
    width: 176vw;
    height: auto;
    max-width: none;
    object-fit: contain;
  }
  .fig--male img { left: -34vw; }
  .fig--female img { right: -46vw; }
  .fig--male { transform: translateX(-8%); }
  .fig--female { transform: translateX(8%); }
  .fig .tint { display: none; }
  .hero-head {
    position: relative;
    z-index: 2;
    transform: none;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    padding: 28px 22px 36px;
  }
  .hero-head h1 { font-size: 9.8vw; line-height: 1.05; }
  .hero-lead { color: var(--ink); font-weight: 500; }

  /* Sektioner: enkeltkolonne + smallere gutters */
  .kerne, .articles, .cta, .site-footer,
  .services-head, .training-head, .klip, .founder { padding-left: 22px; padding-right: 22px; }
  .kerne { padding-top: 56px; padding-bottom: 48px; }
  .kerne h2 { font-size: 8.6vw; line-height: 1.08; }
  .kerne-grid, .kerne-sub, .feature-card, .article-row, .klip, .founder { grid-template-columns: 1fr; gap: 16px; }
  .kerne-sub h3 { font-size: 7.2vw; }
  .feature-card h3 { font-size: 8.6vw; }
  .article-row h3 { font-size: 6.4vw; }
  .services-head h2 { font-size: 8.6vw; line-height: 1.08; }
  .billboard { aspect-ratio: 4 / 3; }
  .billboard .caption { padding: 24px 22px; }
  .billboard h3 { font-size: 8.6vw; }
  .training-head { flex-wrap: wrap; }
  .training-head h3 { font-size: 8.6vw; }

  /* Mosaik: kun tekst på mobil, ingen billeder – mørke kort, så teksten altid kan læses */
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 10px; padding-bottom: 40px; }
  .mosaic-card {
    grid-column: auto;
    grid-row: auto;
    background: var(--ink);
    border-top: none;
    padding: 20px 22px;
  }
  .mosaic-card img, .mosaic-card .shade { display: none; }
  .mosaic-card canvas { display: none !important; } /* ingen maleafsløring af billeder på mobil */
  .mosaic-card .caption { position: static; padding: 0; }
  .mosaic-card h4, .mosaic-card--w5b h4, .mosaic-card--w7b h4 { color: var(--paper); margin-top: 4px; font-size: 6.4vw; }

  .klip { padding-top: 28px; padding-bottom: 28px; }
  .klip h2 { font-size: 7.2vw; }
  .klip-aside { justify-self: start; }
  .founder h2 { font-size: 8.6vw; }
  .founder-portrait { width: 100%; height: auto; aspect-ratio: 3 / 4; }
  .cta { flex-wrap: wrap; }
  .cta h2 { font-size: 8.6vw; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Reduceret bevægelse */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-head, .hero-link, .logo-full, .menu-btn, .menu, .site-header { transition: none; }
}

/* ============================================================
   ARTIKEL-SIDER & BLOG-OVERSIGT
   ============================================================ */
.article-hero {
  padding: 96px 64px 44px;
  max-width: 1060px;
}
.article-hero .kicker { margin-bottom: 34px; }
.article-hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.article-hero h1 .accent-i { font-weight: 500; }
.article-lead {
  margin: 26px 0 0;
  font-size: 20px;
  line-height: 1.62;
  color: var(--body);
  max-width: 720px;
  text-wrap: pretty;
}
.article-meta {
  margin: 26px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
}

.article-body {
  padding: 8px 64px 64px;
  max-width: 812px; /* 64px gutter + ~684px tekstmål */
}
.article-body p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -.014em;
  color: var(--ink);
  margin: 46px 0 18px;
  text-wrap: balance;
}
.article-body h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 23px;
  line-height: 1.2;
  color: var(--ink);
  margin: 36px 0 14px;
}
.article-body ul { margin: 0 0 22px; padding-left: 22px; }
.article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 12px; line-height: 1.7; color: var(--body); }

/* Tabeller i brødtekst */
.article-body table { width: 100%; border-collapse: collapse; margin: 26px 0 32px; font-size: 15.5px; line-height: 1.55; }
.article-body th { text-align: left; font-weight: 600; color: var(--ink); padding: 10px 14px 10px 0; border-bottom: 2px solid var(--ink); }
.article-body td { color: var(--body); padding: 10px 14px 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 3px; }

/* Artikelbillede */
.article-figure {
  margin: 10px 64px 26px;
  max-width: 684px;
}
.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--ink);
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.05);
}

/* FAQ på artikelsider – samme venstre margin og tekstmål som brødteksten */
.article-faq {
  padding: 8px 64px 24px;
  max-width: 812px;
}
.article-faq h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -.014em;
  color: var(--ink);
  margin: 26px 0 18px;
  text-wrap: balance;
}
.article-faq h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 23px;
  line-height: 1.2;
  color: var(--ink);
  margin: 30px 0 12px;
}
.article-faq p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
}

/* Forfatter-boks (E-E-A-T) */
.article-author {
  margin: 48px 64px 0;
  max-width: 684px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-author p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--body-2); }
.article-author strong { color: var(--ink); }

/* Læs også */
.article-related { padding: 26px 64px 72px; }
.article-related .kicker { margin-bottom: 8px; }

/* Mørk CTA på artikelsider */
.article-cta {
  background: var(--charcoal);
  padding: 58px 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.article-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 0;
  max-width: 640px;
  text-wrap: balance;
}
.article-cta h2 .accent-i { font-weight: 480; }

/* Blog-oversigt */
.blog-hero { padding: 96px 64px 10px; }
.blog-hero .kicker { margin-bottom: 34px; }
.blog-hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
}
.blog-hero h1 .accent-i { font-weight: 500; }
.blog-hero .article-lead { max-width: 640px; }
.blog-list { padding: 44px 64px 72px; }

/* Avis-forside-layout på blogoversigten (varierede størrelser) */
.blog-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 8px 0 46px;
}
.blog-feature { display: block; text-decoration: none; }
.blog-feature .media-reveal { aspect-ratio: 16 / 9; margin-bottom: 22px; }
.blog-feature .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 14px;
}
.blog-feature h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.blog-feature .teaser {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--body);
  max-width: 660px;
}
.blog-feature .meta { margin: 0; font-size: 12px; color: var(--gray); }

.blog-side { display: flex; flex-direction: column; }
.side-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
  text-decoration: none;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.side-card:first-child { border-top: none; padding-top: 0; }
.side-card .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}
.side-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.05);
  transition: filter .4s ease;
}
.side-card:hover .thumb img { filter: none; }
.side-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 8px;
}
.side-card h3 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 20px;
  line-height: 1.16;
  color: var(--ink);
  margin: 0 0 8px;
  text-wrap: balance;
}
.side-card .meta { margin: 0; font-size: 12px; color: var(--gray); }

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0 44px;
  border-top: 1px solid var(--line);
}
.blog-card { display: block; text-decoration: none; }
.blog-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 18px;
}
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.05);
  transition: filter .4s ease;
}
.blog-card:hover .thumb img { filter: none; }
.blog-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 10px;
}
.blog-card h3 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 10px;
  text-wrap: balance;
}
.blog-card .teaser {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body-2);
}
.blog-card .meta { margin: 0; font-size: 12px; color: var(--gray); }

.blog-more { border-top: 1px solid var(--line); padding-top: 34px; }
.blog-more .kicker { margin-bottom: 6px; }

@media (max-width: 1024px) {
  .blog-top { grid-template-columns: 1fr; }
  .blog-side .side-card:first-child { border-top: 1px solid var(--line); padding-top: 22px; }
  .blog-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .blog-feature h2 { font-size: 8vw; }
  .blog-cards { grid-template-columns: 1fr; gap: 34px; }
  .side-card { grid-template-columns: 96px 1fr; }
}

@media (max-width: 1024px) {
  .article-hero, .article-body, .article-related, .article-cta, .blog-hero, .blog-list { padding-left: 40px; padding-right: 40px; }
  .article-author { margin-left: 40px; margin-right: 40px; }
  .article-hero h1, .blog-hero h1 { font-size: 46px; }
}
@media (max-width: 700px) {
  .article-hero, .article-body, .article-related, .article-cta, .blog-hero, .blog-list { padding-left: 22px; padding-right: 22px; }
  .article-author { margin-left: 22px; margin-right: 22px; }
  .article-hero { padding-top: 48px; }
  .blog-hero { padding-top: 48px; }
  .article-hero h1, .blog-hero h1 { font-size: 9.4vw; line-height: 1.08; }
  .article-lead { font-size: 18px; }
  .article-body h2 { font-size: 7.4vw; }
  .article-cta { flex-wrap: wrap; }
  .article-cta h2 { font-size: 8.6vw; }
}

/* ============================================================
   ARTIKELSIDE v2 · efter "Trooper Artikel"-designet
   ============================================================ */
.article-head {
  padding: 56px 64px 40px;
  display: grid;
  gap: 0;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  margin-bottom: 40px;
}
.article-back .arrow { color: var(--coral); }
.article-head h1 {
  font-family: var(--serif);
  font-weight: 580;
  font-size: 76px;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0 0 30px;
  max-width: 1000px;
  text-wrap: balance;
}
.article-head .article-lead {
  font-family: var(--serif);
  font-weight: 460;
  font-size: 25px;
  line-height: 1.42;
  color: #3a382f;
  margin: 0 0 36px;
  max-width: 760px;
  text-wrap: pretty;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-byline .who { display: flex; align-items: center; gap: 13px; }
.article-byline .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: var(--ink);
}
.article-byline .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 26%;
  display: block;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.03);
}
.article-byline .who-txt { line-height: 1.3; }
.article-byline .name { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.article-byline .role { display: block; font-size: 12.5px; color: #6a685f; }
.article-byline .sep { width: 1px; height: 34px; background: var(--line); }
.article-byline .when { font-size: 13px; color: #6a685f; }

/* Fuldbredde-hero med farve-afsløring */
.article-figure--hero {
  margin: 16px 0 8px;
  max-width: none;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--ink);
  position: relative;
  cursor: crosshair;
}
.article-figure--hero img { aspect-ratio: auto; height: 100%; }
.fig-hint {
  padding: 0 64px;
  font-size: 12.5px;
  color: #8a877d;
  margin: 0 0 8px;
}
@media (hover: none) { .fig-hint { display: none; } }

/* Layout: TOC + brødtekst */
.article-layout { padding: 44px 64px 20px; max-width: 812px; }
.article-toc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--warmgray);
  line-height: 1.9;
  margin-bottom: 34px;
}
.article-toc .toc-title {
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.article-layout .article-body { padding: 0; max-width: 684px; }

/* Indledning: uncial (samme skriftstørrelse som resten af brødteksten) */
.article-body > p:first-of-type { font-size: 17px; line-height: 1.72; color: var(--body); }
.article-body > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 84px;
  line-height: .72;
  float: left;
  padding: 10px 14px 0 0;
  color: var(--coral);
}
.article-body h2 { font-size: 36px; line-height: 1.1; letter-spacing: -.02em; }

/* Pullquote */
.article-body blockquote.pull {
  margin: 36px 0;
  padding: 0 0 0 30px;
  border-left: 2px solid var(--coral);
}
.article-body blockquote.pull p {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 30px;
  line-height: 1.32;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.article-body blockquote.pull footer {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gray);
}
.article-body blockquote.pull:first-child { margin-top: 0; }

/* Billedtekster i brødtekst */
.article-body figcaption { font-size: 12.5px; color: #8a877d; margin: 6px 0 40px; }

/* Forfatterbånd (koksgrå med papirtekstur) */
.author-band {
  position: relative;
  margin-top: 36px;
  background: #26262A;
  overflow: hidden;
}
.author-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/paper-body.jpg") center/cover;
  opacity: .14;
  mix-blend-mode: screen;
}
.author-band a {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 64px;
  text-decoration: none;
}
.author-band .portrait {
  width: 150px;
  height: 180px;
  overflow: hidden;
  display: block;
  background: var(--ink);
  position: relative;
  cursor: crosshair;
}
.author-band .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 24%;
  display: block;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.03);
}
.author-band .kicker { margin-bottom: 14px; }
.author-band h3 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 34px;
  line-height: 1.05;
  color: var(--paper);
  margin: 0 0 12px;
}
.author-band .bio { font-size: 15.5px; line-height: 1.65; color: var(--muted-dark); margin: 0; max-width: 560px; }
.author-band .more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--paper);
  white-space: nowrap;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 6px;
}
.author-band .more .c { color: var(--coral); }

/* CTA med papirtekstur */
.article-cta { position: relative; overflow: hidden; background: #26262A; }
.article-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/paper-body.jpg") center/cover;
  opacity: .14;
  mix-blend-mode: screen;
}
.article-cta > * { position: relative; }

/* Responsivt for artikel v2 */
@media (max-width: 1024px) {
  .article-head, .article-layout, .fig-hint { padding-left: 40px; padding-right: 40px; }
  .article-head h1 { font-size: 56px; }
  .author-band a { padding: 40px; }
}
@media (max-width: 700px) {
  .article-head, .article-layout, .fig-hint { padding-left: 22px; padding-right: 22px; }
  .article-head h1 { font-size: 11vw; }
  .article-head .article-lead { font-size: 20px; }
  .article-byline { flex-wrap: wrap; gap: 12px; }
  .article-byline .sep { display: none; }
  .article-figure--hero { aspect-ratio: 4 / 3; }
  .article-body > p:first-of-type::first-letter { font-size: 60px; }
  .article-body h2 { font-size: 7.6vw; }
  .article-body blockquote.pull p { font-size: 6.6vw; }
  .author-band a { grid-template-columns: 1fr; gap: 24px; padding: 32px 22px; }
  .author-band .portrait { width: 120px; height: 144px; }
}

/* TOC-links + ankre */
.article-toc a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.article-toc a:hover { color: var(--coral); }
.article-body h2 { scroll-margin-top: 120px; }

/* "Flere artikler" med thumbnail */
.article-row--thumb { grid-template-columns: 96px 1.05fr 1fr; }
.article-row--thumb .thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: var(--ink);
  align-self: center;
}
.article-row--thumb .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.05);
  transition: filter .4s ease;
}
.article-row--thumb:hover .thumb img { filter: none; }
@media (max-width: 700px) {
  .article-row--thumb { grid-template-columns: 72px 1fr; }
  .article-row--thumb .thumb { width: 72px; height: 72px; }
  .article-row--thumb > div:last-child { grid-column: 1 / -1; } /* uddrag i fuld bredde under titlen */
}

/* ============================================================
   AI-ROLLEATLAS · 2x2-model i artikler
   ============================================================ */
.atlas { margin: 36px 0 44px; }
.atlas-axis {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin: 0;
}
.atlas-axis--top { margin-bottom: 18px; }
.atlas-axis--bottom { margin-top: 18px; }
.atlas-mid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.atlas-axis--side {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}
.atlas-axis--right { transform: none; }
.atlas-cells {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0;
}
.atlas-cells div {
  background: var(--coral);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  padding: 12px;
}
.atlas figcaption { font-size: 12.5px; color: #8a877d; margin-top: 14px; }
@media (max-width: 700px) {
  .atlas-mid { gap: 8px; }
  .atlas-cells div { min-height: 96px; font-size: 11px; }
}

/* Atlas: eksempler ved hover */
.atlas-cells .cell {
  background: var(--coral);
  aspect-ratio: 1 / 1;
  min-height: 240px;
  position: relative;
  display: grid;
  padding: 0;
}
.atlas-cells .cell .t,
.atlas-cells .cell ul { grid-area: 1 / 1; }
.atlas-cells .cell .t {
  place-self: center;
  align-self: center;
  justify-self: center;
  padding: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  transition: opacity .2s ease;
}
.atlas-cells .cell ul {
  margin: 0;
  padding: 40px 42px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: #E8E6E1;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2;
}
.atlas-cells .cell ul li {
  font-family: var(--sans);
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 12px;
  position: relative;
}
.atlas-cells .cell ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--coral);
}
.atlas-cells .cell ul li.mini {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  padding-left: 0;
  margin-bottom: 4px;
}
.atlas-cells .cell ul li.mini::before { display: none; }
.atlas-cells .cell:hover .t,
.atlas-cells .cell:focus-within .t { opacity: 0; }
.atlas-cells .cell:hover ul,
.atlas-cells .cell:focus-within ul { opacity: 1; }


/* Touch: vis eksempler direkte */
@media (hover: none) {
  .atlas-cells .cell { min-height: 0; padding: 0; }
  .atlas-cells .cell .t { display: none; }
  .atlas-cells .cell ul { position: static; opacity: 1; background: transparent; padding: 26px; }
  .atlas-cells .cell ul li { color: var(--ink); }
  .atlas-cells .cell ul li::before { color: var(--paper); }
  .atlas-cells .cell ul li.mini { color: var(--ink); }
}

/* ============================================================
   KOMPONENTER · kategorikort, moduler, filter, linkbokse, landing
   ============================================================ */

/* Dekorative kategorikort (uden billeder) */
.cat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 40px 0 8px;
}
.cat-wrap { padding: 8px 64px 48px; }
.cat-card {
  position: relative;
  display: block;
  padding: 44px 40px 38px;
  background: var(--charcoal);
  border: 1px solid rgba(246, 245, 243, .12);
  text-decoration: none;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s var(--ease-out);
}
.cat-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.cat-card .num {
  position: absolute;
  right: 22px;
  top: 6px;
  font-family: var(--serif);
  font-weight: 640;
  font-size: 110px;
  line-height: 1;
  color: rgba(240, 108, 95, .22);
  pointer-events: none;
}
.cat-card .kicker { margin-bottom: 16px; }
.cat-card h2, .cat-card h3 {
  font-family: var(--serif);
  font-weight: 580;
  font-size: 33px;
  line-height: 1.06;
  letter-spacing: -.018em;
  color: var(--paper);
  margin: 0 0 14px;
  text-wrap: balance;
  position: relative;
}
.cat-card p { margin: 0 0 20px; font-size: 15px; line-height: 1.62; color: var(--muted-dark); max-width: 420px; position: relative; }
.cat-card .go {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--paper);
}
.cat-card .go .c { color: var(--coral); }

/* Foldbare moduler (details/summary) */
.modul {
  border: 1px solid var(--line);
  background: var(--paper);
  margin: 0 0 14px;
}
.modul summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 26px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--serif);
  font-weight: 580;
  font-size: 21px;
  line-height: 1.2;
  color: var(--ink);
}
.modul summary::-webkit-details-marker { display: none; }
.modul summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  color: var(--coral);
  text-align: center;
  transition: transform .25s ease;
}
.modul[open] summary::after { content: "–"; }
.modul .modul-body { padding: 0 24px 22px; }
.modul .modul-body p, .modul .modul-body li { font-size: 15.5px; line-height: 1.68; color: var(--body); }
.modul .modul-body ul { margin: 0 0 10px; padding-left: 20px; }

/* Filterknapper */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 1px solid var(--line);
  padding: 9px 16px;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--coral); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* Linkbokse ("læs videre") */
.next-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 8px 64px 64px;
}
.next-box {
  display: block;
  padding: 26px 26px 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  transition: border-color .25s ease, transform .25s var(--ease-out);
}
.next-box:hover { border-color: var(--coral); transform: translateY(-3px); }
.next-box .tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 10px;
}
.next-box h3 {
  font-family: var(--serif);
  font-weight: 580;
  font-size: 21px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 8px;
  text-wrap: balance;
}
.next-box p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.55; color: var(--body-2); }
.next-box .go { font-size: 12.5px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--coral); padding-bottom: 4px; }

/* Landingpage-sektioner (sparringsabonnement) */
.landing-hero { padding: 96px 64px 78px; border-bottom: 1px solid var(--line); }
.landing-hero h1 {
  font-family: var(--serif);
  font-weight: 620;
  font-size: 76px;
  line-height: .98;
  letter-spacing: -.032em;
  color: var(--ink);
  margin: 0;
  max-width: 1060px;
  text-wrap: balance;
}
.landing-hero .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.landing-hero .grid p { margin: 0; font-size: 18px; line-height: 1.68; color: var(--body); max-width: 460px; }
.landing-hero .cta-row { display: flex; align-items: center; gap: 26px; align-self: center; }
.landing-hero .ghost { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.landing-hero .ghost:hover { border-color: var(--coral); }

.landing-sec { padding: 88px 64px 80px; border-bottom: 1px solid var(--line); }
.landing-sec .kicker { margin-bottom: 30px; }
.landing-sec h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: -.022em;
  color: var(--ink);
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
}
.landing-sec .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 46px; }
.landing-sec .two-col p { margin: 0; font-size: 17px; line-height: 1.72; color: var(--body); }
.landing-sub {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.landing-sub h3 { font-family: var(--serif); font-weight: 540; font-size: 33px; line-height: 1.14; color: var(--ink); margin: 0; text-wrap: balance; }
.landing-sub p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--body-2); }

.step-row {
  display: grid;
  grid-template-columns: 74px 1fr 1.1fr;
  column-gap: 32px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.step-row .no { font-family: var(--serif); font-weight: 580; font-size: 30px; color: var(--coral); }
.step-row h4 { font-family: var(--serif); font-weight: 540; font-size: 26px; line-height: 1.1; color: var(--ink); margin: 0; text-wrap: balance; }
.step-row p { margin: 0; font-size: 16px; line-height: 1.66; color: var(--body-2); }

.benefit-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: stretch; }
.benefit-split .media { position: relative; overflow: hidden; background: #161619; min-height: 520px; }
.benefit-split .media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; display: block; position: absolute; inset: 0; filter: grayscale(1) sepia(.6) hue-rotate(180deg) saturate(.55) contrast(1.04); }
.benefit-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 16px;
  align-items: baseline;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}
.benefit-row .dash { width: 22px; height: 1px; background: var(--coral); align-self: center; }
.benefit-row span:last-child { font-size: 16px; line-height: 1.55; color: var(--body); }

.pricing {
  position: relative;
  background: #26262A;
  padding: 90px 64px 96px;
  overflow: hidden;
}
.pricing::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .10; background: url("assets/paper-body.jpg") center/cover; }
.pricing > * { position: relative; }
.pricing .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.pricing h2 { font-family: var(--serif); font-weight: 560; font-size: 50px; line-height: 1.04; color: var(--paper); margin: 0; max-width: 640px; text-wrap: balance; }
.pricing .note { flex: none; margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted-dark); max-width: 300px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(246, 245, 243, .04);
  border: 1px solid rgba(246, 245, 243, .16);
  padding: 38px 32px 34px;
}
.tier.is-featured::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--coral); }
.tier.is-featured .flag { position: absolute; top: 20px; right: 24px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); }
.tier .aud { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--warmgray); margin-bottom: 14px; }
.tier h3 { font-family: var(--serif); font-weight: 580; font-size: 34px; line-height: 1; color: var(--paper); margin: 0 0 22px; }
.tier .price { display: flex; align-items: baseline; gap: 10px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid rgba(246, 245, 243, .14); }
.tier .price .amount { font-family: var(--serif); font-weight: 580; font-size: 34px; color: var(--paper); }
.tier .price .unit { font-size: 13px; color: var(--warmgray); }
.tier .point { display: grid; grid-template-columns: 20px 1fr; column-gap: 12px; align-items: baseline; padding: 9px 0; }
.tier .point .d { color: var(--coral); font-size: 14px; }
.tier .point span:last-child { font-size: 14.5px; line-height: 1.5; color: #C4C2BA; }
.tier .tier-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 20px;
  border: 1px solid rgba(246, 245, 243, .28);
  text-decoration: none;
}
.tier .tier-cta:hover { border-color: var(--coral); }
.tier .tier-cta span:first-child { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); }
.tier .tier-cta span:last-child { color: var(--coral); font-size: 14px; }
.tier .tier-cta--solid { background: var(--coral); border: none; }
.tier .tier-cta--solid span { color: var(--ink) !important; }

.quote-band { background: #26262A; padding: 96px 64px 100px; }
.quote-band .kicker { margin-bottom: 40px; }
.quote-band blockquote { margin: 0; }
.quote-band blockquote p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.24;
  color: var(--paper);
  margin: 0 0 26px;
  max-width: 980px;
  text-wrap: balance;
}
.quote-band footer { font-size: 14px; color: var(--warmgray); }

.faq-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.faq-split h2 { font-family: var(--serif); font-weight: 560; font-size: 44px; line-height: 1.06; color: var(--ink); margin: 0; text-wrap: balance; }
.faq-item { padding: 24px 0; border-top: 1px solid var(--line); }
.faq-item h4 { font-family: var(--serif); font-weight: 560; font-size: 22px; line-height: 1.2; color: var(--ink); margin: 0 0 10px; }
.faq-item p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--body); }

@media (max-width: 1024px) {
  .cat-cards { grid-template-columns: 1fr; }
  .next-boxes { grid-template-columns: 1fr; padding-left: 40px; padding-right: 40px; }
  .landing-hero, .landing-sec, .pricing, .quote-band { padding-left: 40px; padding-right: 40px; }
  .landing-hero h1 { font-size: 54px; }
  .tiers { grid-template-columns: 1fr; }
  .benefit-split { grid-template-columns: 1fr; }
  .benefit-split .media { min-height: 320px; }
  .faq-split { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 700px) {
  .landing-hero, .landing-sec, .pricing, .quote-band, .next-boxes { padding-left: 22px; padding-right: 22px; }
  .landing-hero h1 { font-size: 10.5vw; }
  .landing-hero .grid, .landing-sec .two-col, .landing-sub { grid-template-columns: 1fr; gap: 20px; }
  .landing-sec h2 { font-size: 8.6vw; }
  .step-row { grid-template-columns: 44px 1fr; }
  .step-row p { grid-column: 2; margin-top: 8px; }
  .quote-band blockquote p { font-size: 7.6vw; }
  .cat-card .num { font-size: 80px; }
}


/* Foredragsbokse */
.talk-wrap { padding: 8px 64px 24px; }
.talk-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.talk-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px 36px 32px;
}
.talk-card .kicker { margin-bottom: 16px; }
.talk-card h2 {
  font-family: var(--serif);
  font-weight: 580;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -.014em;
  color: var(--ink);
  margin: 0 0 16px;
  text-wrap: balance;
}
.talk-card p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.68; color: var(--body); }
.talk-card .meta {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
  color: var(--body-2);
}
@media (max-width: 900px) { .talk-cards { grid-template-columns: 1fr; } .talk-wrap { padding-left: 22px; padding-right: 22px; } .cat-wrap { padding-left: 22px; padding-right: 22px; } }

/* Overskrift over linkbokse */
.next-boxes .next-title {
  grid-column: 1 / -1;
  margin: 8px 0 2px;
  font-family: var(--serif);
  font-weight: 580;
  font-size: 26px;
  color: var(--ink);
}

/* Video i hero-figur */
.article-figure--hero video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Blog-top: side-thumbnails flugter med det store billede */
.blog-top { align-items: start; }
.blog-side {
  aspect-ratio: 1.147;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.blog-top .side-card {
  border-top: none;
  padding: 0;
  grid-template-columns: 42% 1fr;
  gap: 20px;
  min-height: 0;
}
.blog-top .side-card .thumb { height: 100%; aspect-ratio: auto; }
.blog-top .side-card > div:last-child { align-self: center; }
@media (max-width: 1024px) {
  .blog-side { aspect-ratio: auto; }
  .blog-top .side-card { grid-template-columns: 140px 1fr; padding: 22px 0; border-top: 1px solid var(--line); }
  .blog-top .side-card .thumb { aspect-ratio: 1; }
}

/* Citat-rotator i grå boks */
.quote-band .q { display: none; }
.quote-band .q.is-active { display: block; animation: qfade .8s ease; }
@keyframes qfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   COOKIE-BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  padding: 20px 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}
.cookie-banner p { margin: 0 0 14px; font-size: 14px; line-height: 1.55; color: var(--paper); }
.cookie-banner a { color: var(--coral); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner button {
  border: none;
  cursor: pointer;
  font: 600 12px/1 var(--sans, sans-serif);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 18px;
  background: var(--coral);
  color: var(--ink);
}
.cookie-banner button.ghost {
  background: none;
  border: 1px solid rgba(246, 245, 243, .4);
  color: var(--paper);
}
.cookie-banner button:hover { opacity: .88; }

/* ============================================================
   V2-LAYOUT (pilot): fuld skærmbredde + indeks-menu med
   sektioner, der skifter i højre side (scoped til body.v2)
   ============================================================ */
body.v2 .canvas { max-width: none; }

/* Head: H1 til venstre, manchet til højre */
.svc-head {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  column-gap: 72px;
  align-items: end;
  padding-bottom: 52px;
}
.svc-head .article-back { grid-column: 1 / -1; }
.svc-head h1 { grid-column: 1; }
.svc-head-aside { grid-column: 2; padding-bottom: 6px; }
.svc-head-aside .article-lead { margin-top: 0; max-width: 560px; }
.svc-hint {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}
.svc-hint .accent-i { font-style: italic; font-weight: 560; }

/* To-kolonne-område */
.svc-wrap { border-top: 1px solid var(--line); }
.svc-layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 64px 84px;
}

/* Venstre: indeks */
.svc-toc { padding: 46px 48px 0 0; }
.svc-toc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--warmgray);
  margin: 0 0 14px;
}
.svc-toc-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background .25s var(--ease-out);
}
.svc-toc-item .num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--coral);
}
.svc-toc-item .title {
  display: block;
  font-family: var(--serif);
  font-weight: 580;
  font-size: 21px;
  line-height: 1.14;
  letter-spacing: -.012em;
  color: var(--ink);
}
.svc-toc-item .sub {
  display: block;
  margin-top: 5px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--gray);
}
.svc-toc-item .arrow { color: #b9b6af; transition: color .25s, transform .25s var(--ease-out); }
.svc-toc-item:hover { background: rgba(236, 234, 230, .55); }
.svc-toc-item:hover .arrow { color: var(--coral); transform: translateX(4px); }
.svc-toc-item.is-active {
  background: #ECEAE6;
  border: 1px solid #D8D5CF;
  border-left: 3px solid var(--coral);
}
.svc-toc-item.is-active .arrow { color: var(--coral); }
.svc-toc-cta {
  display: inline-block;
  margin-top: 30px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--ink);
}
.svc-toc-cta .arrow { color: var(--coral); }

/* Højre: indholdspanel */
.svc-panel {
  border-left: 1px solid var(--line);
  padding: 46px 0 0 64px;
  display: flex;
  flex-direction: column;
}
.svc-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}
.svc-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.svc-kicker .dash { width: 26px; height: 2px; background: var(--coral); display: inline-block; }
.svc-counter {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--warmgray);
  white-space: nowrap;
}
.svc-sections { flex: 1 1 auto; }
.svc-section.article-body { padding: 0; max-width: 720px; }
.svc-section.article-body > p:first-of-type::first-letter {
  font-size: inherit;
  float: none;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.svc-section h2 { margin-top: 0; }
.svc-section:not(:first-child) { margin-top: 56px; } /* uden JS: sektioner stakket */

/* Med JS: kun aktiv sektion vises */
body.svc-js .svc-section { display: none; }
body.svc-js .svc-section.is-active { display: block; margin-top: 0; animation: svcFade .45s var(--ease-out); }
@keyframes svcFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  body.svc-js .svc-section.is-active { animation: none; }
}

.svc-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 26px;
}
.svc-prevnext { display: flex; gap: 28px; }
.svc-nav-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.svc-nav-btn .arrow { color: var(--coral); }
.svc-nav-btn:disabled { opacity: .35; cursor: default; }
.svc-foot-cta {
  background: var(--ink);
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 2px;
}
.svc-foot-cta .arrow { color: var(--coral); }
.svc-foot-cta:hover { background: var(--charcoal); }

/* Øvrige bånd på v2-sider holdes på linje med indholdet */
body.v2 .next-boxes { max-width: 1400px; margin: 0 auto; box-sizing: border-box; }

/* Gængse breakpoints */
@media (max-width: 1180px) {
  .svc-layout { grid-template-columns: 340px minmax(0, 1fr); padding-left: 40px; padding-right: 40px; }
  .svc-panel { padding-left: 44px; }
  .svc-head { padding-left: 40px; padding-right: 40px; column-gap: 48px; }
}
@media (max-width: 1024px) {
  .svc-head { grid-template-columns: 1fr; }
  .svc-head h1, .svc-head-aside { grid-column: 1; }
  .svc-head-aside { padding-top: 22px; padding-bottom: 0; }
  .svc-layout { grid-template-columns: 1fr; padding-bottom: 64px; }
  .svc-toc { padding: 36px 0 0; }
  .svc-panel { border-left: 0; border-top: 1px solid var(--line); margin-top: 36px; padding: 36px 0 0; }
}
@media (max-width: 700px) {
  .svc-head { padding-left: 22px; padding-right: 22px; }
  .svc-layout { padding-left: 22px; padding-right: 22px; }
  .svc-toc-item { padding: 16px 12px; grid-template-columns: 36px minmax(0, 1fr) auto; }
  .svc-toc-item .title { font-size: 18px; }
  .svc-panel-foot { margin-top: 36px; }
  .svc-foot-cta { width: 100%; text-align: center; }
}

/* Fix: CTA-knap i mørkt bånd var mørk-på-mørk på artikel-/tjenestesider */
.article-cta .btn-cta {
  flex: none;
  background: var(--coral);
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}

/* ============================================================
   Globale layoutrettelser (aug 2026): bredere canvas,
   centreret og bredere tekstkolonne på alle tekstsider
   ============================================================ */
.canvas { max-width: 1440px; }

.article-head, .article-hero, .blog-hero { max-width: 1160px; margin-inline: auto; width: 100%; box-sizing: border-box; }
.article-layout { max-width: 868px; margin-inline: auto; width: 100%; box-sizing: border-box; }
.article-body { max-width: 868px; margin-inline: auto; }
.article-layout .article-body { max-width: 740px; margin-inline: 0; }
.article-author { margin-inline: auto; max-width: 740px; box-sizing: content-box; padding-left: 64px; padding-right: 64px; margin-left: auto; margin-right: auto; }
.article-related { max-width: 1160px; margin-inline: auto; width: 100%; box-sizing: border-box; }
.article-faq { max-width: 868px; margin-inline: auto; width: 100%; box-sizing: border-box; }
.next-boxes { max-width: 1160px; margin-inline: auto; width: 100%; box-sizing: border-box; }
.blog-list { max-width: 1160px; margin-inline: auto; width: 100%; box-sizing: border-box; }

@media (max-width: 700px) {
  .article-author { padding-left: 22px; padding-right: 22px; }
}
.svc-section.article-body { margin-inline: 0; }
/* Flydende typografi: én sammenhængende kurve fra 320 til 1440 px.
   Basen er i rem, så browserzoom stadig virker (WCAG 1.4.4). */
.hero-head h1, .landing-hero h1 { font-size: clamp(1.875rem, 1.232rem + 3.214vw, 4.125rem); }
.article-head h1 { font-size: clamp(1.875rem, 1.054rem + 4.107vw, 4.75rem); }
.blog-hero h1, .article-hero h1 { font-size: clamp(1.75rem, 1.25rem + 2.5vw, 3.5rem); }
.kerne h2 { font-size: clamp(1.688rem, 1.17rem + 2.589vw, 3.5rem); }
.services-head h2, .landing-sec h2 { font-size: clamp(1.625rem, 1.196rem + 2.143vw, 3.125rem); }
.billboard h3, .training-head h3 { font-size: clamp(1.625rem, 1.161rem + 2.321vw, 3.25rem); }
.cta h2 { font-size: clamp(1.562rem, 1.188rem + 1.875vw, 2.875rem); }
.feature-card h3 { font-size: clamp(1.5rem, 1.143rem + 1.786vw, 2.75rem); }
.founder h2, .article-cta h2 { font-size: clamp(1.5rem, 1.214rem + 1.429vw, 2.5rem); }
.klip h2, .blog-feature h2 { font-size: clamp(1.438rem, 1.17rem + 1.339vw, 2.375rem); }
.article-body h2 { font-size: clamp(1.375rem, 1.125rem + 1.25vw, 2.25rem); }
.kerne-sub h3 { font-size: clamp(1.312rem, 1.08rem + 1.161vw, 2.125rem); }
.article-body blockquote.pull p, .quote-band blockquote p { font-size: clamp(1.312rem, 1.08rem + 1.161vw, 2.125rem); }
.mosaic-card h4, .mosaic-card--w5b h4, .mosaic-card--w7b h4 { font-size: clamp(1.25rem, 1.054rem + 0.9821vw, 1.938rem); }
.article-row h3, .talk-card h2 { font-size: clamp(1.25rem, 1.089rem + 0.8036vw, 1.812rem); }
.article-head .article-lead { font-size: clamp(1.125rem, 1rem + 0.625vw, 1.562rem); }

/* Lange danske sammensatte ord må aldrig hugges over af kanten.
   hyphens deler pænt hvor sproget tillader det; overflow-wrap er
   sikkerhedsnettet, hvis browseren ikke har en dansk orddeling. */
.canvas :is(h1, h2, h3, h4, h5, p, li, dt, dd, blockquote, figcaption, a) {
  overflow-wrap: break-word;
  hyphens: manual; /* ingen automatisk orddeling (Loa, 24. sep 2026) */
}
/* Kun på smalle skærme i selve brødteksten må browseren dele ord,
   så lange sammensatte ord ikke giver store huller. Aldrig i overskrifter. */
@media (max-width: 560px) {
  .canvas .article-body :is(p, li) { hyphens: auto; }
}
/* Grid- og flexbørn skrumper ikke af sig selv: deres min-width er som
   udgangspunkt "auto", så det bredeste ord bestemmer kolonnens bredde og
   presser den ud over skærmkanten. Dette er standardgrebet i moderne
   CSS-resets – uden det kan et layout ikke blive smallere end sit
   længste ord. */
.canvas * { min-width: 0; }

/* Atlas-cellerne tvang to kvadratiske felter ved siden af hinanden,
   også når der kun var plads til ét. */
.atlas-cells { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
@media (max-width: 700px) {
  .atlas-cells .cell { min-height: 180px; }
  .talk-card { padding: 28px 22px 24px; }
}

/* Kortene på foredragssiden var bredere end skærmen på store telefoner. */
.talk-cards, .talk-card { min-width: 0; }
.talk-card { box-sizing: border-box; max-width: 100%; }


/* Hero-overskriften arvede left:40px fra desktop, selvom den på mobil
   er relativt placeret – den skubbede hele teksten 40px ud over kanten. */
@media (max-width: 700px) {
  .hero-head { left: 0; }
}

/* ============================================================
   STORE SKÆRME (over 1440 px)
   Indholdet bliver i sin 1440-kolonne, men rammen holder op med at
   ligne et afklippet ark: baggrunden fylder hele skærmen i samme tone,
   og de store bånd – hero, CTA, citater og footer – går ud til kanten.
   ============================================================ */
@media (min-width: 1441px) {
  /* 100vw tæller rullepanelet med. På en pc med klassisk rullepanel ville
     de fuldbredde-bånd derfor stikke ~15px ud og give vandret scroll.
     "clip" skjuler det uden at ødelægge den klæbende header (det gør
     overflow:hidden derimod). */
  html { overflow-x: clip; }

  /* Samme papirtone hele vejen ud, så arkets kant forsvinder */
  body {
    background-color: var(--paper);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat;
  }
  .canvas {
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    background-repeat: repeat;
  }

  /* Bånd der må fylde hele bredden */
  /* Fuldbredde-tricket er ikke længere nødvendigt: .canvas har intet
     breddeloft, så båndene fylder allerede hele skærmen af sig selv. */

  /* … men deres indhold trækkes tilbage på linje med kolonnen */
  /* Indrykningen styres af den fælles kolonne længere nede i filen. */
}

/* ============================================================
   ÉN VENSTREKANT PÅ HELE SITET (aug 2026)
   Før dette havde siden fem forskellige venstrekanter: logoet,
   overskrifterne, kortene, tekstspalten og de brede bånd startede
   hvert sit sted. Nu deler alt indhold den samme kolonne:
   1400 px indhold med 64 px luft ud til siden = 1528 px blok.
   Billeder, kort og gitre fylder kolonnen; løbende tekst holdes på
   820 px og står venstrestillet på samme kant. Én venstrekant,
   forskellig højrekant – avis-logikken.
   Blokken centreres. Fordi "arket" (.canvas) også er centreret,
   lander venstrekanten samme sted på både v2-sider (fuldbredde-ark)
   og de øvrige sider (1440 px ark).
   ============================================================ */
:root { --gutter: 64px; --col: 1400px; --block: 1528px; }

/* Arket må ikke længere være smallere end kolonnen. Procent-padding
   regnes ud fra forælderen, så en .canvas låst til 1440 ville give
   headeren en anden venstrekant end indholdet. v2-siderne har kørt
   uden loft hele tiden – nu gør alle sider det. */
.canvas { max-width: none; }
@media (max-width: 1024px) { :root { --gutter: 40px; } }
@media (max-width: 700px)  { :root { --gutter: 22px; } }

/* 1. Blokke der bærer indhold uden egen baggrund */
.article-head, .article-hero, .blog-hero, .svc-head,
.article-layout, .article-related, .article-faq, .article-author,
.next-boxes, .blog-list, .svc-layout,
.talk-wrap, .cat-wrap,
.kerne, .articles, .services-head, .training-head, .klip, .founder,
.mosaic, .billboard, .cta,
.landing-hero, .landing-sec {
  max-width: var(--block);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
  width: 100%;
}

/* 2. Bånd med egen baggrund: farven fylder hele bredden,
      men indholdet trækkes ind på kolonnens kant. */
.site-header, .site-footer, .article-cta, .quote-band {
  padding-inline: max(var(--gutter), calc((100% - var(--col)) / 2));
}

/* 3. Heroens tekst hænger på samme kant */
@media (min-width: 701px) {
  .hero-head, .hero-hint { left: max(var(--gutter), calc((100% - var(--col)) / 2)); }
  .hero-links { right: max(var(--gutter), calc((100% - var(--col)) / 2)); padding-right: 0; }
}

/* 4. Brødteksten: venstrestillet på kolonnens kant, ikke centreret,
      og lidt bredere end før (820 px ≈ 85 tegn pr. linje). */
.article-body,
.article-layout .article-body,
.svc-section.article-body { max-width: 820px; margin-inline: 0; }

/* En indholdsblok inde i en anden indholdsblok må ikke lægge luft oveni:
   kun den yderste i kæden sætter kolonnen. */
.canvas :is(.article-head, .article-hero, .blog-hero, .svc-head, .article-layout, .article-related, .article-faq, .article-author, .next-boxes, .blog-list, .svc-layout, .talk-wrap, .cat-wrap, .kerne, .articles, .services-head, .training-head, .klip, .founder, .mosaic, .billboard, .cta, .landing-hero, .landing-sec) :is(.article-head, .article-hero, .blog-hero, .svc-head, .article-layout, .article-related, .article-faq, .article-author, .next-boxes, .blog-list, .svc-layout, .talk-wrap, .cat-wrap, .kerne, .articles, .services-head, .training-head, .klip, .founder, .mosaic, .billboard, .cta, .landing-hero, .landing-sec) {
  max-width: none;
  padding-inline: 0;
}

/* De to links over mosaikken lå i .depth's lyse zone, men brugte den lyse
   linkfarve (papir på papir = usynligt). Den mørke gradient i .depth
   sætter først ind omkring 47% af sektionens højde – linkene ligger ved 32%. */
.training-head .link-underline--light {
  color: var(--ink);
  border-bottom-color: rgba(36, 31, 33, .35);
}
.training-head .link-underline--light:hover { border-bottom-color: var(--ink); }

/* ============================================================
   LIV-PAS (sep 2026): statue-motiv, dybde/lag, store sektionstal,
   coral-detaljer og bløde overgange på v2-tjenestesiderne
   ============================================================ */

/* 1) Statue-motiv i head-båndet (markup pr. side: img.svc-statue) */
.svc-head { position: relative; overflow: hidden; }
.svc-head > * { position: relative; z-index: 1; }
.svc-statue {
  position: absolute;
  z-index: 0;
  right: -20px;
  bottom: -38%;
  height: 165%;
  width: auto;
  max-width: none;
  opacity: .13;
  filter: grayscale(1) contrast(1.06);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(100deg, transparent 18%, rgba(0,0,0,1) 62%);
  mask-image: linear-gradient(100deg, transparent 18%, rgba(0,0,0,1) 62%);
  will-change: transform;
}
@media (max-width: 1024px) {
  .svc-statue { height: 120%; bottom: -20%; right: -60px; opacity: .10; }
}

/* 2) Dybde: panelet som løftet ark, aktivt menupunkt løftes */
.svc-layout { column-gap: 56px; }
.svc-panel {
  border: 1px solid #E3E0D9;
  border-radius: 3px;
  background:
    linear-gradient(rgba(252, 251, 249, .82), rgba(252, 251, 249, .82)),
    url("assets/paper-body.jpg") center/cover;
  padding: 42px 48px 30px;
  box-shadow:
    0 1px 2px rgba(22, 22, 24, .05),
    0 18px 44px -22px rgba(22, 22, 24, .22);
  position: relative;
  overflow: hidden;
}
.svc-panel::after { /* fin coral kant foroven som brandsignatur */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 72px; height: 3px;
  background: var(--coral);
}
.svc-toc-item {
  transition: background .25s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.svc-toc-item.is-active {
  background: #F3F1ED;
  transform: translateX(5px);
  box-shadow: 0 10px 26px -14px rgba(22, 22, 24, .28);
}

/* 3) Stort sektionstal som vandmærke (indsættes af site.js) + coral-detaljer */
.svc-sections, .svc-panel-head, .svc-panel-foot { position: relative; z-index: 1; }
.svc-bignum {
  position: absolute;
  z-index: 0;
  top: 44px;
  right: 26px;
  font-family: var(--serif);
  font-weight: 640;
  font-size: 220px;
  line-height: .8;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 108, 95, .30);
  pointer-events: none;
}
@supports not (-webkit-text-stroke: 1px black) {
  .svc-bignum { color: rgba(240, 108, 95, .10); }
}
@media (max-width: 1024px) {
  .svc-bignum { font-size: 150px; top: auto; bottom: 80px; right: 10px; opacity: .8; }
}
.svc-nav-btn .arrow { display: inline-block; transition: transform .25s var(--ease-out); }
.svc-nav-btn:not(:disabled):hover { color: var(--coral); }
[data-svc-prev]:not(:disabled):hover .arrow { transform: translateX(-4px); }
[data-svc-next]:not(:disabled):hover .arrow { transform: translateX(4px); }
.svc-foot-cta { transition: background .25s var(--ease-out), transform .25s var(--ease-out); }
.svc-foot-cta:hover { transform: translateY(-2px); }
.next-box { transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.next-box:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -20px rgba(22, 22, 24, .28); }

/* 4) Levende overgange: sektionsskift, indløb og reveals */
@media (prefers-reduced-motion: no-preference) {
  body.svc-js .svc-section.is-active { animation: svcFade .55s var(--ease-out); }
  .svc-bignum { transition: opacity .4s var(--ease-out); }
  body.svc-js.svc-anim .svc-toc-item { animation: svcItemIn .55s var(--ease-out) backwards; }
  .svc-toc-item:nth-child(1) { animation-delay: .04s; }
  .svc-toc-item:nth-child(2) { animation-delay: .10s; }
  .svc-toc-item:nth-child(3) { animation-delay: .16s; }
  .svc-toc-item:nth-child(4) { animation-delay: .22s; }
  .svc-toc-item:nth-child(5) { animation-delay: .28s; }
  .svc-toc-item:nth-child(6) { animation-delay: .34s; }
  .svc-toc-item:nth-child(7) { animation-delay: .40s; }
  .svc-toc-item:nth-child(8) { animation-delay: .46s; }
  body.svc-js .svc-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  body.svc-js .svc-reveal.is-in { opacity: 1; transform: none; }
}
@keyframes svcItemIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
/* Ark-panelet på smalle skærme: mindre indre luft */
@media (max-width: 1024px) {
  .svc-panel { padding: 30px 24px 22px; }
}
@media (max-width: 700px) {
  .svc-panel { padding: 24px 18px 16px; }
}
/* Statue-motivet forstyrrer læsningen på små skærme – der ligger den bag teksten */
@media (max-width: 700px) {
  .svc-statue { display: none; }
}

/* ============================================================
   FARVE- OG SKYGGE-PAS (sep 2026): to-tonet flade, varm coral-
   glød, dybere lag og flere coral-detaljer på v2-siderne
   ============================================================ */

/* Varm coral-glød bag statuen i head-båndet */
.svc-head::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(240, 108, 95, .16), rgba(240, 108, 95, .05) 55%, transparent 75%);
  pointer-events: none;
}
.svc-statue { opacity: .17; }

/* To-tonet flade: selve menu-området bliver en anelse varmere og
   mørkere end papiret, så det lyse ark-panel træder tydeligt frem */
.svc-wrap {
  background:
    linear-gradient(rgba(228, 222, 211, .48), rgba(228, 222, 211, .16) 420px, rgba(228, 222, 211, .05)),
    radial-gradient(1000px 460px at 88% 0%, rgba(240, 108, 95, .07), transparent 70%);
  border-top: 1px solid #DAD6CD;
}

/* Dybere, blødere lag */
.svc-panel {
  box-shadow:
    0 1px 2px rgba(22, 22, 24, .06),
    0 10px 24px -12px rgba(22, 22, 24, .16),
    0 30px 70px -30px rgba(22, 22, 24, .35);
}
.svc-toc-item.is-active {
  background: #FCFBF9;
  box-shadow: 0 2px 4px rgba(22, 22, 24, .05), 0 14px 32px -16px rgba(22, 22, 24, .32);
}
.next-box {
  background: rgba(252, 251, 249, .8);
  border: 1px solid #E3E0D9;
  box-shadow: 0 1px 2px rgba(22, 22, 24, .04), 0 12px 30px -20px rgba(22, 22, 24, .18);
}
.next-box:hover { box-shadow: 0 2px 4px rgba(22, 22, 24, .05), 0 22px 48px -22px rgba(22, 22, 24, .32); }

/* Flere coral-detaljer */
.svc-toc-item .num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(240, 108, 95, .12);
}
.svc-toc-item.is-active .num { background: var(--coral); color: #fff; }
.svc-toc-item { grid-template-columns: 44px minmax(0, 1fr) auto; }
.svc-toc-cta { border-bottom-color: var(--coral); }
.svc-toc-cta:hover { color: var(--coral); }
.next-box { position: relative; overflow: hidden; }
.next-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.next-box:hover::before { transform: scaleX(1); }
.svc-counter { color: var(--coral); }

/* ============================================================
   V2 · overført fra retning 2b: tern, Samarbejde, artikel-fliser
   ============================================================ */

.art-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, clamp(200px, 15vw, 270px));
  gap: 14px;
  padding: 36px 0 0;
}
.art-tile {
  position: relative; display: block; overflow: hidden;
  background: var(--ink); text-decoration: none; color: var(--paper);
}
.art-tile--main { grid-row: 1 / span 3; }
.art-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.3) brightness(.78);
  transition: transform .85s var(--ease-out);
}
.art-tile:hover img { transform: scale(1.04); }
.art-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22, 22, 25, .95) 0%, rgba(22, 22, 25, .25) 55%, rgba(22, 22, 25, 0)); }
.art-corner { position: absolute; width: 18px; height: 18px; }
.art-corner--tl { left: 18px; top: 18px; border-left: 1px solid var(--coral); border-top: 1px solid var(--coral); }
.art-corner--br { right: 18px; bottom: 18px; border-right: 1px solid var(--coral); border-bottom: 1px solid var(--coral); }
.art-text { position: absolute; left: 28px; right: 28px; bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.art-tag { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--coral); }
.art-title { font-family: var(--serif); font-weight: 600; font-size: 24px; line-height: 1.08; color: var(--paper); text-wrap: balance; }
.art-tile--main .art-title { font-size: 46px; letter-spacing: -.02em; max-width: 620px; }
.art-tile--main .art-title .accent-i { font-weight: 560; }
.art-tile--main .art-text { left: 40px; right: 40px; bottom: 40px; }
.art-sub { font-size: 16px; line-height: 1.6; color: var(--muted-dark); max-width: 520px; }

.collab { padding-block: 70px 90px; max-width: var(--block); margin-inline: auto; padding-inline: var(--gutter); box-sizing: border-box; width: 100%; }
.collab-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.collab-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: 50px; line-height: 1.04;
  letter-spacing: -.025em; color: var(--ink); margin: 0;
}
.collab-label { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); }
.collab-row {
  display: grid; grid-template-columns: 80px 1fr 1.3fr 120px; align-items: center; column-gap: 32px;
  padding: 38px 0; border-bottom: 1px solid var(--line); text-decoration: none;
  transition: padding-left .3s var(--ease-out), background .25s ease;
}
.collab-row:hover { padding-left: 16px; background: rgba(36, 31, 33, .03); }
.collab-row .num { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--coral); }
.collab-row .title { font-family: var(--serif); font-size: 32px; font-weight: 600; line-height: 1.06; color: var(--ink); }
.collab-row .text { font-size: 15px; line-height: 1.65; color: var(--body); }
.collab-row .go { display: flex; justify-content: flex-end; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.collab-row .go .arrow { font-family: var(--serif); font-size: 20px; color: var(--coral); }

@media (max-width: 1024px) {
  .art-grid { grid-template-columns: 1fr; grid-template-rows: 420px repeat(3, 220px); }
  .art-tile--main { grid-row: auto; }
  .art-tile--main .art-title { font-size: 34px; }
  .collab-row { grid-template-columns: 56px 1fr; row-gap: 10px; }
  .collab-row .text { grid-column: 2; }
  .collab-row .go { grid-column: 2; justify-content: flex-start; }
}
@media (max-width: 700px) {
  .collab { padding-block: 50px 60px; }
  .collab-head h2 { font-size: 36px; }
  .collab-row .title { font-size: 24px; }
}

/* Bred skærm: sektionsindekset rykker ud til kanten, så den kvindelige statues ansigt (ca. 62–75 % af bredden) er frit */
@media (min-width: 1500px) {
  .hero-links { right: max(var(--gutter), calc((100% - var(--col)) / 2)); width: 400px; }
}
@media (min-width: 1900px) {
  .hero { height: 860px; }
  .hero-links { width: 380px; }
}

/* Intet krøllet papir – kun ternene */
.depth::before { display: none; }

/* Samarbejde står på den lyse flade; det mørke felt starter straks derefter */
.depth::after { background: #26282E; }
.depth { border-top: 1px solid var(--line); }
.collab { border-bottom: 0; }

/* Mellembredder (701–1300px): indeks og overskrift må ikke overlappe.
   Overskriften skaleres til 1,14 i slutstillingen, så dens råbredde holdes under det, der er plads til. */
@media (min-width: 701px) and (max-width: 1300px) {
  .hero-links { width: 320px; }
  .hero-link { grid-template-columns: 44px 1fr 20px; padding: 14px 0; }
  .hero-link .num { font-size: 20px; }
  .hero-link .title { font-size: 25px; }
  .hero-link .sub { font-size: 13px; }
  .hero-head { max-width: calc((100vw - 320px - 2 * var(--gutter) - 32px) / 1.14); }
  .hero-head h1 { font-size: clamp(40px, 5vw, 60px); }
  .hero-lead { font-size: 15px; max-width: 100%; }
}

/* Tern i heroen: ligger OVER det lyse slør, så nettet også er synligt her */
.hero-grid {
  display: none;

  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(36, 31, 33, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 31, 33, .09) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask: linear-gradient(to bottom, #000 0, #000 55%, transparent 100%);
  mask: linear-gradient(to bottom, #000 0, #000 55%, transparent 100%);
}
/* Sløret må ikke dække nettet: kun kant- og bundtoning */
.hero-veil {
  background:
    linear-gradient(to right, rgba(233, 235, 237, .7) 0%, rgba(233, 235, 237, 0) 22%, rgba(233, 235, 237, 0) 78%, rgba(233, 235, 237, .6) 100%),
    linear-gradient(to top, rgba(246, 245, 243, .95) 0%, rgba(246, 245, 243, .5) 22%, rgba(246, 245, 243, 0) 48%);
}

/* Statuerne: blødere kontrast, ikke helt sort i skyggerne */
.fig img { filter: grayscale(1) contrast(.96) brightness(1.1); }

/* Overskriften lidt længere nede i heroen */
.hero-head { bottom: 36px; }

/* Heroen følger skærmens bredde i højden; statuerne mindre og altid med hovedet inde i billedet */
@media (min-width: 701px) {
  .hero { height: clamp(600px, 50vw, 1000px); }
  .fig img {
    inset: auto 0 0 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: 50% 100%;
  }
  .fig--male img, .fig--female img { object-position: 50% 100%; }
}

/* Køligere lys flade (papiret trak mod lyserødt) */
:root { --paper: #F3F4F5; --page-bg: #E1E3E6; --line: #D6D9DD; }
.hero-veil {
  background:
    linear-gradient(to right, rgba(232, 234, 237, .7) 0%, rgba(232, 234, 237, 0) 22%, rgba(232, 234, 237, 0) 78%, rgba(232, 234, 237, .6) 100%),
    linear-gradient(to top, rgba(243, 244, 245, .95) 0%, rgba(243, 244, 245, .5) 22%, rgba(243, 244, 245, 0) 48%);
}
.site-header { background: rgba(243, 244, 245, .8); }


/* ============================================================
   V3 · undersider – nyt designsprog fra designretningerne
   (hubs med nummererede rækker, kursusskabelon, artikel-hero)
   ============================================================ */

/* --- Sidehoved: stor rubrik + lead i højre spalte + meta-chips --- */
.p3-head {
  max-width: var(--col); margin-inline: auto; padding: clamp(40px, 5vw, 72px) var(--gutter) 0;
  box-sizing: border-box; width: 100%;
}
.p3-head .article-back { margin-bottom: clamp(26px, 3vw, 40px); }
.p3-head-grid {
  display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 64px); align-items: end;
  padding-bottom: clamp(30px, 4vw, 52px); border-bottom: 1px solid var(--line);
}
.p3-num { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 600; color: var(--coral); line-height: 1; margin-bottom: 20px; }
.p3-head h1 {
  margin: 0; font-family: var(--serif); font-weight: 600;
  font-size: clamp(42px, 5.6vw, 78px); line-height: .98; letter-spacing: -.03em;
  color: var(--ink); text-wrap: balance;
}
.p3-lead { margin: 0; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; color: var(--body-2); }
.p3-meta {
  display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 22px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray); font-variant-numeric: tabular-nums;
}

/* --- Sektionshoved med hårstreg --- */
.p3-section { max-width: var(--col); margin-inline: auto; padding: clamp(36px, 4.5vw, 60px) var(--gutter) clamp(44px, 5vw, 72px); box-sizing: border-box; width: 100%; }
.p3-rowhead {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: flex-end; justify-content: space-between;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.p3-rowhead h2 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.04; letter-spacing: -.025em; color: var(--ink); }
.p3-rowhead .label { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); }
.p3-rowhead .link-underline { font-size: 15px; }

/* --- Nummereret række (hub-lister, Andre forløb) – bygget på collab-row --- */
.p3-row {
  display: grid; grid-template-columns: 80px 1fr 1.3fr 120px; align-items: center; column-gap: 32px;
  padding: clamp(26px, 3vw, 38px) 0; border-bottom: 1px solid var(--line); text-decoration: none;
  transition: padding-left .3s var(--ease-out), background .25s ease;
}
.p3-row:hover { padding-left: 16px; background: rgba(36, 31, 33, .03); }
.p3-row .num { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--coral); }
.p3-row .title { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; line-height: 1.06; color: var(--ink); }
.p3-row .text { font-size: 15px; line-height: 1.65; color: var(--body); }
.p3-row .go { display: flex; justify-content: flex-end; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.p3-row .go .arrow { font-family: var(--serif); font-size: 20px; color: var(--coral); }

/* --- Modulrække (mindre, til program/trin) --- */
.p3-mod {
  display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: baseline;
  padding: clamp(20px, 2.4vw, 30px) 0; border-bottom: 1px solid var(--line);
}
.p3-mod .num { flex: none; width: 56px; font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--coral); }
.p3-mod .title { flex: 1 1 220px; font-family: var(--serif); font-size: clamp(20px, 1.9vw, 26px); font-weight: 600; line-height: 1.1; color: var(--ink); }
.p3-mod .text { flex: 2 1 300px; font-size: 15px; line-height: 1.65; color: var(--body-2); }
.p3-mod .text a { color: inherit; }

/* --- To-spaltet udsagn (Formål før teknologi / Værktøjerne skifter) --- */
.p3-argument {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 72px); padding-top: clamp(36px, 4.5vw, 60px);
}
.p3-argument h2 {
  margin: 0; font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 3.2vw, 44px); line-height: 1.06; letter-spacing: -.02em; color: var(--ink); text-wrap: balance;
}
.p3-argument .aside p { margin: 0 0 18px; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.75; color: var(--body); }

/* --- Kursus: indhold + fakta-spalte --- */
.p3-split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(min(100%, 260px), 340px);
  gap: clamp(28px, 4vw, 80px); align-items: start;
  padding-top: clamp(36px, 4.5vw, 56px);
}
.p3-body { max-width: 820px; min-width: 0; }
.p3-body h2 { margin: 0 0 20px; font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3vw, 42px); line-height: 1.06; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
.p3-body p { margin: 0 0 20px; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.75; color: var(--body); }
.p3-body h3 { margin: 30px 0 10px; font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.15; color: var(--ink); }
.p3-body ul { margin: 0 0 20px; padding-left: 20px; }
.p3-body li { margin-bottom: 10px; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.7; color: var(--body); }

.p3-fakta { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.p3-fakta .label { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); }
.p3-fakta-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.p3-fakta-row .k { color: var(--gray); }
.p3-fakta-row .v { text-align: right; color: var(--ink); font-weight: 600; }
.p3-book {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; background: #26282E; color: var(--paper); text-decoration: none;
  transition: background .25s ease;
}
.p3-book:hover { background: var(--ink); }
.p3-book .t { font-family: var(--serif); font-weight: 600; font-size: 18px; line-height: 1.15; }
.p3-book .arrow { color: var(--coral); font-family: var(--serif); font-size: 22px; }

/* --- Udbytte-kort --- */
.p3-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: 14px; margin: 30px 0 6px; }
.p3-card { padding: 22px 22px 24px; border: 1px solid var(--line); background: rgba(246,245,243,.5); }
.p3-card .num { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--coral); line-height: 1; }
.p3-card .t { margin-top: 13px; font-family: var(--serif); font-weight: 600; font-size: 19px; line-height: 1.15; color: var(--ink); }
.p3-card p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--body-2); }

/* --- Citat / princip --- */
.p3-quote { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(28px, 4vw, 72px); padding-top: clamp(36px, 4.5vw, 56px); }
.p3-quote blockquote { margin: 0; font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(25px, 2.7vw, 38px); line-height: 1.22; letter-spacing: -.015em; color: var(--ink); text-wrap: balance; }
.p3-quote .who { display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.p3-quote .who .k { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); }
.p3-quote .who p { margin: 8px 0 0; font-size: 15px; line-height: 1.65; color: var(--body-2); max-width: 480px; }

/* --- Foto-/statue-hero med scrim (kurser-hub, blog, artikler) --- */
.p3-hero {
  position: relative; max-width: var(--col); margin: clamp(26px, 3vw, 40px) auto 0;
  padding-inline: var(--gutter); box-sizing: border-box; width: 100%;
}
.p3-hero .frame { position: relative; overflow: hidden; background: var(--ink); }
.p3-hero img.bg { display: block; width: 100%; height: clamp(320px, 38vw, 520px); object-fit: cover; filter: grayscale(1) contrast(1.15) brightness(.72); }
.p3-hero .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,22,25,.92) 0%, rgba(22,22,25,.30) 55%, rgba(22,22,25,.05)); }
.p3-hero .corner { position: absolute; width: 20px; height: 20px; }
.p3-hero .corner--tl { left: 18px; top: 18px; border-left: 1px solid var(--coral); border-top: 1px solid var(--coral); }
.p3-hero .corner--br { right: 18px; bottom: 18px; border-right: 1px solid var(--coral); border-bottom: 1px solid var(--coral); }
.p3-hero .inner { position: absolute; left: clamp(24px, 3.5vw, 48px); right: clamp(24px, 3.5vw, 48px); bottom: clamp(22px, 3vw, 40px); display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px 40px; }
.p3-hero .kicker3 { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.p3-hero h1, .p3-hero .h1 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4.4vw, 62px); line-height: 1; letter-spacing: -.03em; color: var(--paper); text-wrap: balance; max-width: 18ch; }
.p3-hero .sub { margin: 0; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.6; color: var(--muted-dark); max-width: 420px; }
.p3-hero .fig-label { position: absolute; right: 20px; bottom: 16px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,245,243,.55); }

/* --- Artikel v3: byline + indhold med indeks i højre spalte --- */
.p3-artikel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(min(100%, 220px), 280px); gap: clamp(28px, 4vw, 80px); align-items: start; padding-top: clamp(30px, 3.5vw, 44px); }
.p3-byline { display: flex; flex-wrap: wrap; gap: 10px 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: clamp(24px, 3vw, 36px); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); }
.p3-toc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 26px; }
.p3-toc .label { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.p3-toc nav { display: flex; flex-direction: column; gap: 10px; }
.p3-toc nav a { display: flex; gap: 12px; align-items: baseline; font-size: 14px; line-height: 1.45; color: var(--body); text-decoration: none; }
.p3-toc nav a:hover .t { color: var(--coral); }
.p3-toc nav a .n { font-family: var(--serif); font-size: 14px; font-weight: 600; color: var(--coral); font-variant-numeric: tabular-nums; }
.p3-toc .also { display: flex; flex-direction: column; gap: 12px; }
.p3-toc .also a { font-family: var(--serif); font-weight: 600; font-size: 16px; line-height: 1.3; color: var(--ink); text-decoration: none; }
.p3-toc .also a:hover { color: var(--coral); }

/* --- Filterrække (artikeloversigt) --- */
.p3-filter { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line); }
.p3-filter .set { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.p3-filter button, .p3-filter .count { font: 600 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.p3-filter button { appearance: none; background: none; border: 0; padding: 6px 0; color: var(--gray); cursor: pointer; border-bottom: 1px solid transparent; }
.p3-filter button:hover { color: var(--ink); }
.p3-filter button[aria-pressed="true"] { color: var(--ink); border-bottom-color: var(--coral); }
.p3-filter .count { color: var(--gray); }

/* --- Responsivt --- */
@media (max-width: 1024px) {
  .p3-head-grid { grid-template-columns: 1fr; align-items: start; }
  .p3-row { grid-template-columns: 56px 1fr; row-gap: 10px; }
  .p3-row .text { grid-column: 2; }
  .p3-row .go { grid-column: 2; justify-content: flex-start; }
  .p3-split { grid-template-columns: 1fr; }
  .p3-fakta { position: static; max-width: 560px; }
  .p3-artikel { grid-template-columns: 1fr; }
  .p3-toc { position: static; }
  .p3-argument { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .p3-head h1 { font-size: clamp(34px, 9vw, 44px); }
  .p3-rowhead h2 { font-size: 30px; }
  .p3-row .title { font-size: 22px; }
  .p3-hero img.bg { height: 300px; }
  .p3-hero h1, .p3-hero .h1 { font-size: 30px; }
}

/* --- V3 · artikel-fliser (Flere perspektiver) --- */
.p3-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 14px; padding-top: 30px; }
.p3-tiles .art-tile { min-height: clamp(220px, 22vw, 300px); }
.p3-tiles .art-title { font-size: 21px; }
.p3-tiles .art-text { left: 22px; right: 22px; bottom: 22px; }

/* --- V3 · fremhævet artikel-flise --- */
.p3-tile--featured { grid-column: 1 / -1; min-height: clamp(320px, 34vw, 460px); }
.p3-tile--featured .art-title { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.02em; max-width: 640px; }
.p3-tiles .art-tile.is-hidden { display: none; }

/* --- V3 · ordliste-rækker --- */
.p3-term {
  display: flex; flex-wrap: wrap; gap: 6px 28px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none;
  transition: padding-left .3s var(--ease-out), background .25s ease;
}
.p3-term:hover { padding-left: 12px; background: rgba(36, 31, 33, .03); }
.p3-term .t { flex: 0 1 320px; font-family: var(--serif); font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; line-height: 1.15; color: var(--ink); }
.p3-term .x { flex: 2 1 300px; font-size: 14.5px; line-height: 1.6; color: var(--body-2); }
.p3-term .arrow { margin-left: auto; font-family: var(--serif); color: var(--coral); }

/* --- V3 · bredere tekstkolonne på artikelsiderne --- */
.p3-artikel { grid-template-columns: minmax(0, 1fr) minmax(min(100%, 200px), 250px); }
.p3-artikel .article-body.p3-artbody { max-width: none; margin-inline: 0; }

/* --- V3 · mobil: kolonneopsætningen falder tilbage til én spalte
   (skal stå EFTER den bredere artikelkolonne-regel i kaskaden) --- */
@media (max-width: 1024px) {
  .p3-artikel { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .p3-meta { gap: 8px 18px; }
  .p3-head .p3-meta { margin-bottom: 10px; }
  .p3-hero .inner { position: static; padding: 18px 4px 6px; }
  .p3-hero .frame { background: transparent; }
  .p3-hero img.bg { filter: grayscale(1) contrast(1.1) brightness(.9); }
  .p3-hero .shade { display: none; }
  .p3-hero .kicker3 { color: var(--coral); }
  .p3-hero h1, .p3-hero .h1 { color: var(--ink); max-width: none; }
  .p3-hero .sub { color: var(--body-2); max-width: none; margin-top: 10px; }
  .p3-fakta { max-width: none; }
  .p3-tiles { grid-template-columns: 1fr; }
  .p3-quote blockquote { font-size: 24px; }
}
@media (max-width: 700px) {
  .p3-hero .corner { display: none; }
  .p3-hero .fig-label { display: none; }
}

/* ============================================================
   V3 · artikel-hero i fuld bredde (som designfilen Artikel v2)
   ============================================================ */
.p3-hero--fuld { max-width: none; padding-inline: 0; margin-top: 0; }
.p3-hero--fuld img.bg { height: clamp(420px, 44vw, 660px); }
.p3-hero--fuld .corner { display: none; }
.p3-hero--fuld .inner { left: var(--gutter); right: var(--gutter); bottom: clamp(28px, 3.5vw, 48px); }
.p3-hero--fuld h1 { font-size: clamp(38px, 5vw, 72px); }

/* Nummererede afsnitsoverskrifter med koral-hjørne (kun i artikelkroppen) */
.p3-artbody { counter-reset: p3sec; }
.p3-artbody > h2::before {
  counter-increment: p3sec;
  content: counter(p3sec, decimal-leading-zero) " · ";
  font-variant-numeric: tabular-nums;
}
@media (max-width: 700px) {
  /* fuldbredde-heroen beholder billedet med scrim også på mobil */
  .p3-hero--fuld .frame { background: var(--ink); }
  .p3-hero--fuld .shade { display: block; }
  .p3-hero--fuld .inner { position: absolute; padding: 0; }
  .p3-hero--fuld .kicker3 { color: var(--coral); }
  .p3-hero--fuld h1 { color: var(--paper); font-size: 30px; }
  .p3-hero--fuld .sub { display: none; }
  .p3-hero--fuld img.bg { height: 380px; filter: grayscale(1) contrast(1.15) brightness(.72); }
}

/* --- V3 · artikel-hero: fast bredde på store skærme + manchet i højre side --- */
.p3-hero--fuld { max-width: var(--col); margin-inline: auto; }
.p3-hero--fuld .sub { margin-left: auto; }

/* --- V3 · indhold-numre må ikke ombrydes --- */
.p3-toc nav a .n { flex: none; min-width: 22px; white-space: nowrap; }

/* --- V3 · billeder må aldrig gå til fuld bredde på store skærme --- */
.article-figure--hero { max-width: var(--col); margin-inline: auto; }

/* --- V3 · video i hub-hero: samme størrelse og tone som billederne --- */
.p3-hero video.bg {
  display: block; width: 100%; height: clamp(320px, 38vw, 520px);
  object-fit: cover; filter: grayscale(1) contrast(1.12) brightness(.75);
}
@media (max-width: 700px) {
  .p3-hero video.bg { height: 300px; filter: grayscale(1) contrast(1.1) brightness(.9); }
}

/* ============================================================
   Omtale-kort med skærmbillede af den omtalte side som baggrund
   ============================================================ */
.next-box--foto {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #26282E;
  border-color: rgba(38, 40, 46, .55);
}
.next-box--foto .shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -2;
  filter: grayscale(1) contrast(1.03);
  transform: scale(1.02);
  transition: transform .55s var(--ease-out);
}
.next-box--foto::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(31, 33, 38, .78) 0%, rgba(31, 33, 38, .88) 55%, rgba(31, 33, 38, .94) 100%);
}
.next-box--foto:hover .shot { transform: scale(1.06); }
.next-box--foto h3 { color: #F3F4F5; }
.next-box--foto p { color: rgba(243, 244, 245, .78); }
.next-box--foto .go { color: #F3F4F5; }

/* ============================================================
   Kunde-/samarbejdslogoer – diskret bånd i gråtone
   ============================================================ */
.p3-kunder { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0 36px; }
.p3-kunder .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}
.p3-kunder .logos {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 26px 30px;
  align-items: center;
  margin-top: 30px;
}
.p3-kunder .logos img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .58;
  transition: opacity .25s ease, filter .25s ease;
}
.p3-kunder .logos a:hover img, .p3-kunder .logos img:hover { filter: none; opacity: 1; }
@media (max-width: 1024px) {
  .p3-kunder .logos { grid-template-columns: repeat(3, 1fr); gap: 26px 32px; }
}
@media (max-width: 700px) {
  .p3-kunder .logos { grid-template-columns: repeat(3, 1fr); gap: 24px 26px; }
  .p3-kunder .logos img { max-height: 34px; }
}

/* Kunde-båndet som slider: 12 ad gangen */
.p3-kunder .logos { transition: opacity .45s ease; }
.p3-kunder.kunder-skift .logos { opacity: 0; }
.p3-kunder .logos img:nth-child(n+10) { display: none; }
.p3-kunder .logos img.flad { filter: none; opacity: .8; }
.p3-kunder .logos img.flad:hover { opacity: 1; }
.p3-kunder-prikker { display: flex; gap: 8px; margin-top: 26px; justify-content: center; }
.p3-kunder-prikker button {
  appearance: none; border: 0; cursor: pointer; padding: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--line); transition: background .25s ease, transform .25s ease;
}
.p3-kunder-prikker button[aria-current="true"] { background: var(--coral); transform: scale(1.25); }

/* Tern under forsidens hero (forsiden er den eneste side med zoom-hero) */
.canvas:has(.hero[data-zoom-stage]) {
  background-image:
    linear-gradient(to bottom,
      #F3F4F5 0px, #F3F4F5 calc(100vh - 20px),
      rgba(243, 244, 245, 0) calc(100vh + 40px),
      rgba(243, 244, 245, 0) calc(100vh + 420px),
      #F3F4F5 calc(100vh + 1020px)),
    linear-gradient(rgba(36, 31, 33, .085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 31, 33, .085) 1px, transparent 1px);
}

/* Menu-knappen (E'et) vinker diskret med fast frekvens, når headeren er foldet sammen */
@keyframes menu-vink {
  0%, 78%, 100% { transform: rotate(0) translateX(0); }
  80% { transform: rotate(-8deg) translateX(-2px); }
  83% { transform: rotate(8deg) translateX(2px); }
  86% { transform: rotate(-6deg) translateX(-1px); }
  89% { transform: rotate(6deg) translateX(1px); }
  92% { transform: rotate(-3deg); }
  95% { transform: rotate(0); }
}
.site-header:not(.is-collapsed) .menu-btn[aria-expanded="false"] img { animation: menu-vink 3.4s ease-in-out infinite; transform-origin: 50% 60%; }
@media (prefers-reduced-motion: reduce) {
  .menu-btn img { animation: none !important; }
}


/* Kunde-logoerne som kørende bånd */
.p3-kunder--baand .logos {
  display: flex;
  overflow: hidden;
  gap: 0;
  margin-top: 30px;
  -webkit-mask: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.p3-kunder--baand .baand-spor {
  display: flex;
  align-items: center;
  gap: 68px;
  padding-right: 68px;
  flex: none;
  animation: kunde-baand linear infinite;
}
@keyframes kunde-baand { to { transform: translateX(-100%); } }
.p3-kunder--baand .logos img {
  display: block !important;
  height: 38px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .6;
}
.p3-kunder--baand .logos img.flad { filter: none; opacity: .8; }
.p3-kunder--baand .logos:hover .baand-spor { animation-play-state: paused; }
.p3-kunder--baand .logos img:hover { filter: none; opacity: 1; }
@media (max-width: 700px) {
  .p3-kunder--baand .baand-spor { gap: 42px; padding-right: 42px; }
  .p3-kunder--baand .logos img { height: 30px; max-width: 140px; }
}


/* Kundecitater: lysegråt bånd med slider – bryder den mørke bund */
.citatbaand {
  background: #E7E9EB;
  border-top: 1px solid #D8DBDE;
  padding: clamp(44px, 5vw, 68px) var(--gutter, 64px);
}
.citatbaand .inder { max-width: var(--col, 1400px); margin: 0 auto; }
.citatbaand .label {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gray); margin: 0 0 6px;
}
.citatbaand .maerke { display: block; font-family: var(--serif); font-size: 74px; line-height: .8; color: var(--coral); margin-bottom: 10px; }
.citatbaand .citater { position: relative; min-height: 150px; }
.citatbaand .citat { display: none; margin: 0; }
.citatbaand .citat.is-aktiv { display: block; animation: citat-ind .5s ease; }
@keyframes citat-ind { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.citatbaand blockquote {
  margin: 0; font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: clamp(16.5px, 1.45vw, 20px); line-height: 1.75; color: var(--ink); max-width: 900px;
}
.citatbaand figcaption { margin-top: 20px; display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; }
.citatbaand figcaption .n { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--coral); }
.citatbaand figcaption .r { font-size: 14px; color: var(--body-2); }
.citatbaand .bladre { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.citatbaand .bladre button {
  appearance: none; cursor: pointer;
  width: 44px; height: 44px;
  border: 1px solid #B9BDC1; border-radius: 50%;
  background: transparent; color: var(--ink);
  font-size: 18px; line-height: 1; display: grid; place-items: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.citatbaand .bladre button:hover { border-color: var(--coral); background: var(--coral); color: #fff; }
.citatbaand .bladre .taeller { font-size: 13px; font-weight: 600; letter-spacing: .12em; color: var(--gray); font-variant-numeric: tabular-nums; min-width: 64px; text-align: center; }
@media (max-width: 700px) {
  .citatbaand { padding-left: 22px; padding-right: 22px; }
  .citatbaand .citater { min-height: 320px; }
}


/* Underoverskrifter i artikler: samme størrelse som brødtekst, fed, uden luft ned til afsnittet */
.p3-artbody h2, .p3-artbody h3 {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  color: var(--ink);
  margin: 34px 0 6px;
  padding: 0;
}

/* ===== Én venstremargin på alle sider (september 2026) =====
   Topbilleder, overskrifter, brødtekst, bånd og citater starter på samme
   lodrette linje: kolonnens indholdskant (--kant). */
:root {
  --block: var(--col);
  --kant: max(var(--gutter), calc((100% - var(--col)) / 2 + var(--gutter)));
}
.p3-hero--fuld { padding-inline: var(--gutter); }
.p3-hero--fuld .inner { left: clamp(24px, 3.5vw, 48px); right: clamp(24px, 3.5vw, 48px); }
.p3-artikel .article-body.p3-artbody { padding-inline: 0; max-width: 820px; }
.site-footer, .article-cta, .quote-band { padding-inline: var(--kant); }
.citatbaand .inder { max-width: calc(var(--col) - 2 * var(--gutter)); }
@media (min-width: 701px) {
  .hero-head, .hero-hint { left: max(var(--gutter), calc((100vw - var(--col)) / 2 + var(--gutter))); }
  .hero-links { right: max(var(--gutter), calc((100vw - var(--col)) / 2 + var(--gutter))); }
}

/* Foredragssiden: lysere hero, og billedet rykket op så salen ses (24. sep 2026) */
@media (min-width: 701px) {
  .p3-hero--lys img.bg { height: clamp(340px, 44vw, 600px); filter: grayscale(1) contrast(1.08) brightness(.92); }
  .p3-hero--lys .shade { background: linear-gradient(to top, rgba(22,22,25,.82) 0%, rgba(22,22,25,.38) 36%, rgba(22,22,25,0) 62%); }
}
