@font-face {
  font-family: "Editorial New";
  src: url("../fonts/EditorialNew-Regular.woff2") format("woff2"),
       url("../fonts/EditorialNew-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-thin.woff") format("woff");
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-italic.woff") format("woff");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-semibolditalic.woff") format("woff");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

:root {
  --color-bg: #220535;
  --color-bg-soft: #0E0E43;
  --color-surface: #281d3a;
  --color-surface-raised: #2a1d3a;
  --color-light: #FFE3E1;
  --color-text: #f4efe6;
  --color-muted: #b9b6c8;
  --color-dark: #151521;
  --color-idea: #C98C2B;
  --color-form: #D7B4A8;
  --color-structure: #7F9FA8;
  --color-border: rgb(244 239 230 / 16%);
  --color-border-strong: rgb(244 239 230 / 34%);
  --font-body: "PP Neue Montreal", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Editorial New", Georgia, serif;
  --page-padding: clamp(1.25rem, 4vw, 4rem);
  --content-width: 90rem;
  --reading-width: 46rem;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;
  --space-7: 7.5rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
  color: var(--color-text);
}

body {
  margin: 0;
  min-width: 20rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.18vw, 1.125rem);
  line-height: 1.65;
  background:
    radial-gradient(circle at 80% 4%, rgb(119 161 173 / 11%), transparent 25rem),
    radial-gradient(circle at 8% 30%, rgb(211 154 44 / 8%), transparent 22rem),
    var(--color-bg);
}

body.panel-is-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 9vw, 9.75rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

p {
  max-width: 70ch;
}

:focus-visible {
  outline: 3px solid var(--color-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: var(--space-2);
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-light);
  color: var(--color-dark);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(var(--space-2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.site-nav {
  width: min(100%, var(--content-width));
  min-height: 4.5rem;
  margin-inline: auto;
  padding-inline: var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  width: 3.8rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.brand-logo__stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.brand-logo__stroke--primary {
  stroke-width: 14.32;
}

.brand-logo.is-animating .brand-logo__stroke--primary {
  animation: brand-draw 1400ms var(--ease) 180ms forwards;
}

.brand-logo__stroke--secondary {
  stroke-width: 15;
}

.brand-logo.is-animating .brand-logo__stroke--secondary {
  animation: brand-draw 800ms var(--ease) 1450ms forwards;
}

@keyframes brand-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  transition: color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--color-idea);
}

.nav-links a.is-active {
  box-shadow: inset 0 -2px currentColor;
}

.menu-toggle {
  display: none;
}

main,
.site-footer {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.hero {
  --hero-right-breakout: calc(
    var(--page-padding) + max(0px, (100vw - var(--content-width)) / 2)
  );
  position: relative;
  min-height: min(54rem, calc(100svh - 4.5rem));
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
  overflow: visible;
  border-bottom: 1px solid var(--color-border);
}

.hero__manifest {
  align-self: stretch;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  padding-right: 1.25rem;
  border-right: 1px solid var(--color-border);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.idea {
  color: var(--color-idea);
}

.form {
  color: var(--color-form);
}

.structure {
  color: var(--color-structure);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(58rem, 66%);
  padding-block: var(--space-4);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: var(--space-4);
  font-size: clamp(3.75rem, 6vw, 6.75rem);
  letter-spacing: 0;
}

.hero__lead {
  max-width: 49rem;
  margin-bottom: var(--space-3);
  color: var(--color-text);
  font-size: clamp(1.38rem, 1.2rem + 0.6vw, 1.8rem);
  line-height: 1.5;
}

.hero__body {
  max-width: 43rem;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--color-idea);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  min-height: 2.75rem;
  padding: 0.8rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--color-border-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border-color: var(--color-idea);
  background: var(--color-idea);
  color: var(--color-dark);
}

.button--text {
  border-color: transparent;
  border-bottom-color: var(--color-border-strong);
}

.button--dark {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.media-placeholder {
  position: relative;
  min-height: 16rem;
  padding: var(--space-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, transparent, rgb(21 21 33 / 60%)),
    repeating-linear-gradient(135deg, transparent 0 2rem, rgb(244 239 230 / 3%) 2rem 4rem),
    linear-gradient(135deg, rgb(119 161 173 / 24%), rgb(217 174 184 / 12%)),
    var(--color-surface-raised);
  color: var(--color-muted);
}

.media-placeholder::before,
.media-placeholder::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgb(244 239 230 / 10%);
  pointer-events: none;
}

.media-placeholder::after {
  inset: auto 1rem 50%;
  border-width: 1px 0 0;
  transform: rotate(-20deg);
}

.media-placeholder--portrait {
  aspect-ratio: 4 / 5;
}

.media-placeholder--landscape {
  aspect-ratio: 16 / 9;
}

.media-placeholder__label {
  color: var(--color-idea);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.item-media {
  position: relative;
  margin: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface-raised);
}

.item-media__viewport {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.item-media--wide .item-media__viewport {
  aspect-ratio: 16 / 9;
}

.item-media__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.item-media__slide[hidden] {
  display: none;
}

.item-media__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-media__caption {
  position: absolute;
  inset: auto 0 0;
  padding: var(--space-3);
  background: linear-gradient(transparent, rgb(7 7 12 / 82%));
  color: var(--color-text);
  font-size: 0.85rem;
}

.item-gallery__controls {
  min-height: 4rem;
  padding: 0.6rem var(--space-2);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  border-top: 1px solid var(--color-border);
}

.item-gallery__button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.25rem;
}

.item-gallery__button:hover {
  border-color: var(--color-idea);
  color: var(--color-idea);
}

.item-gallery__status {
  min-width: 3.5rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.8rem;
  text-align: center;
}

.hero__portrait {
  position: absolute;
  z-index: 1;
  inset: 0 calc(-1 * var(--hero-right-breakout)) 0 auto;
  width: calc(58% + var(--hero-right-breakout));
  height: 100%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgb(0 0 0 / 30%) 14%, #000 38%),
    linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgb(0 0 0 / 30%) 14%, #000 38%),
    linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  filter: saturate(0.9) contrast(1.03);
}

.page-section {
  padding-block: var(--space-7);
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 5rem;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1fr);
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-5);
}

.section-header h2 {
  margin-bottom: 0;
}

.section-header > p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.15rem;
}

.experience-list {
  border-top: 1px solid var(--color-border);
}

.feature-card {
  border-bottom: 1px solid var(--color-border);
}

.feature-card:last-child {
  border-bottom: 0;
}

.feature-card__link {
  position: relative;
  min-height: 14rem;
  padding: var(--space-4) 4rem var(--space-4) clamp(6rem, 11vw, 11rem);
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(18rem, 1fr);
  column-gap: var(--space-5);
  align-items: center;
  text-decoration: none;
  transition: background 200ms var(--ease);
}

.feature-card__link:hover {
  background: rgb(244 239 230 / 4%);
}

.feature-card__index {
  position: absolute;
  left: 0.35rem;
  top: 50%;
  color: rgb(244 239 230 / 68%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-50%);
}

.feature-card h3,
.feature-card__role {
  grid-column: 1;
}

.feature-card h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0;
}

.feature-card__role {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card__question {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.35rem);
}

.feature-card__action {
  position: absolute;
  right: 0;
  bottom: var(--space-4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card--form .eyebrow,
.feature-card--form .feature-card__action {
  color: var(--color-form);
}

.feature-card--structure .eyebrow,
.feature-card--structure .feature-card__action {
  color: var(--color-structure);
}

.feature-card--idea .eyebrow,
.feature-card--idea .feature-card__action {
  color: var(--color-idea);
}

.initiative-feature {
  display: grid;
  grid-template-columns: minmax(32rem, 0.95fr) minmax(22rem, 1.05fr);
  min-height: 31rem;
  background: var(--color-idea);
  color: var(--color-dark);
}

.initiative-feature > * {
  min-width: 0;
}

.initiative-feature__copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.initiative-feature .eyebrow {
  color: var(--color-dark);
}

.initiative-feature h3 {
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 4.2vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.initiative-feature__question {
  font-weight: 600;
}

.initiative-feature__media {
  min-height: 31rem;
  margin: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border-color: rgb(21 21 33 / 30%);
}

.initiative-feature__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.career {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  background: var(--color-light);
  color: var(--color-dark);
  padding-inline: clamp(1.5rem, 4vw, 4rem);
}

.career h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.timeline {
  border-top: 1px solid rgb(21 21 33 / 25%);
}

.timeline__row {
  position: relative;
  padding: 1.25rem 0 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: var(--space-2);
  border-bottom: 1px solid rgb(21 21 33 / 20%);
}

.timeline__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--color-idea);
  border-radius: 50%;
}

.timeline__row strong,
.timeline__row span {
  display: block;
}

.timeline__row div span {
  margin-top: 0.2rem;
  color: rgb(21 21 33 / 70%);
  font-size: 0.92rem;
}

.education-list {
  display: grid;
  gap: var(--space-3);
}

.education-list > div {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgb(21 21 33 / 20%);
}

.education-list span,
.education-list strong {
  display: block;
}

.education-list span {
  color: rgb(21 21 33 / 60%);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.education-list p {
  margin-bottom: 0;
}

.breadth-section {
  padding-block: var(--space-7);
}

.contact {
  margin-block: var(--space-7);
  padding: clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--space-6);
  background: var(--color-light);
  color: var(--color-dark);
  scroll-margin-top: 6rem;
}

.contact h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.contact address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  border-left: 1px solid rgb(21 21 33 / 25%);
  padding-left: var(--space-5);
  font-style: normal;
  font-size: 1.15rem;
}

.site-footer {
  min-height: 6rem;
  padding-block: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.detail-page {
  padding-top: var(--space-4);
}

.detail-back {
  margin-bottom: var(--space-4);
}

.detail-back a {
  color: var(--color-muted);
}

.breadth-continuation {
  position: relative;
  margin-top: 0;
}

.breadth-continuation__copy {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.breadth-continuation h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.94;
  max-width: 12ch;
}

.breadth-continuation p {
  margin: 0;
  max-width: none;
  color: var(--color-muted);
}

.breadth-continuation__intro {
  grid-column: 2;
  display: grid;
  gap: var(--space-2);
  max-width: 42rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

.breadth-continuation__questions {
  grid-column: 2;
  display: grid;
  counter-reset: question;
  border-top: 1px solid var(--color-border-strong);
  background: transparent;
}

.breadth-continuation__questions p {
  counter-increment: question;
  position: relative;
  min-height: 6.75rem;
  padding: 1.35rem 0 1.35rem clamp(3.25rem, 5vw, 4.25rem);
  border-bottom: 1px solid var(--color-border-strong);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.02;
  color: var(--color-text);
  text-wrap: balance;
}

.breadth-continuation__questions p::before {
  content: counter(question, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.75rem;
  color: var(--color-idea);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.breadth-continuation__questions p:last-child {
  border-bottom: 0;
}

.breadth-continuation__closing {
  grid-column: 2;
  padding-top: var(--space-2);
  color: var(--color-text);
  font-size: 1rem;
}

.item-header {
  padding-block: var(--space-5);
}

.item-header__copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: var(--space-5);
  align-items: end;
}

.detail-page .item-header__copy {
  max-width: 76rem;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-3);
}

.detail-page .item-header__copy .eyebrow {
  margin-bottom: 0;
}

.detail-page .item-header h1 {
  max-width: 12ch;
}

.detail-page .item-header__question {
  max-width: 30ch;
}

.item-header h1,
.item-header h2 {
  margin-bottom: 0;
}

.item-header__question {
  margin-bottom: 1rem;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.item-meta {
  margin: var(--space-5) 0 0;
  padding-block: var(--space-3);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  border-block: 1px solid var(--color-border);
}

.item-meta dt {
  color: var(--color-idea);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.item-meta dd {
  margin: 0.25rem 0 0;
}

.item-links {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
}

.item-links a {
  text-decoration-thickness: 1px;
}

.article-layout {
  display: grid;
  grid-template-columns: 13rem minmax(0, var(--reading-width));
  gap: clamp(3rem, 7vw, 8rem);
  justify-content: center;
  padding-block: var(--space-6);
}

.article-nav {
  position: sticky;
  top: 7rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.article-nav a {
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-nav a:hover,
.article-nav a.is-active {
  color: var(--color-text);
}

.article-nav a.is-active {
  padding-left: var(--space-2);
  box-shadow: inset 3px 0 var(--color-idea);
}

.story-section {
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 6rem;
}

.story-section:first-child {
  padding-top: 0;
}

.story-section p {
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.2rem);
}

.story-section--intro > p:first-of-type,
.story-section--lessons > p:first-of-type {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.story-section__label {
  display: block;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
}

.story-section--idea .story-section__label {
  color: var(--color-idea);
}

.story-section--form .story-section__label {
  color: var(--color-form);
}

.story-section--structure .story-section__label {
  color: var(--color-structure);
}

.story-section h2,
.story-section h3 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.examples {
  margin-top: var(--space-4);
  padding: var(--space-3);
  border-left: 3px solid var(--color-idea);
  background: rgb(244 239 230 / 4%);
}

.story-section--form .examples {
  border-color: var(--color-form);
}

.story-section--structure .examples {
  border-color: var(--color-structure);
}

.examples h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.examples ul {
  margin: 0;
  padding-left: 1.25rem;
  columns: 2;
}

.next-items {
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.next-items > div {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.next-items a {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  text-decoration: none;
}

.not-found {
  min-height: 70vh;
  padding-block: var(--space-7);
}

.stats-page {
  padding-block: var(--space-6);
}

.stats-hero {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(20rem, 0.75fr);
  gap: var(--space-5);
  align-items: end;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.stats-hero h1 {
  margin-bottom: var(--space-2);
}

.stats-hero p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.15rem;
}

.stats-filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.stats-filter label {
  display: grid;
  gap: 0.35rem;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats-filter input {
  min-height: 2.75rem;
  border: 1px solid var(--color-border-strong);
  padding: 0.65rem 0.75rem;
  background: var(--color-surface);
  color: var(--color-text);
}

.stats-filter button {
  grid-column: 1 / -1;
}

.stats-summary {
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-border);
}

.stats-summary article,
.stats-table {
  background: var(--color-surface);
}

.stats-summary article {
  min-height: 8rem;
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-summary span {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-summary strong {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.stats-table {
  padding: var(--space-3);
  border: 1px solid var(--color-border);
}

.stats-table--wide {
  margin-top: var(--space-3);
}

.stats-table h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.stats-table p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.stats-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.stats-table th,
.stats-table td {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.stats-table th:last-child,
.stats-table td:last-child {
  text-align: right;
}

.not-found h1 {
  max-width: 10ch;
}

.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgb(7 7 12 / 72%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.panel-overlay.is-visible {
  opacity: 1;
}

.experience-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: min(76rem, 88vw);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  border: 0;
  border-left: 1px solid var(--color-border-strong);
  background:
    radial-gradient(circle at 100% 0%, rgb(119 161 173 / 12%), transparent 25rem),
    var(--color-surface-raised);
  color: var(--color-text);
  box-shadow: -2rem 0 6rem rgb(0 0 0 / 45%);
  transform: translateX(102%);
  transition: transform 320ms var(--ease), display 320ms allow-discrete, overlay 320ms allow-discrete;
}

.experience-panel[open] {
  transform: translateX(0);
}

@starting-style {
  .experience-panel[open] {
    transform: translateX(102%);
  }
}

.experience-panel::backdrop {
  background: transparent;
}

.panel-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 4.5rem;
  padding: 0.75rem clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  backdrop-filter: blur(16px);
}

.panel-permalink {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.panel-close {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.7rem;
}

.panel-content {
  padding: 0 clamp(1.25rem, 4vw, 4rem) var(--space-5);
}

.panel-content .item-header__copy {
  grid-template-columns: 1fr;
}

.panel-content .item-header h2 {
  font-size: clamp(4rem, 9vw, 8rem);
}

.panel-content .article-layout {
  grid-template-columns: 11rem minmax(0, var(--reading-width));
  gap: clamp(2rem, 5vw, 5rem);
}

.panel-loading,
.panel-error {
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: var(--color-muted);
}

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: 3.5rem 1fr;
    min-height: min(48rem, calc(100svh - 4.5rem));
    padding-block: clamp(3rem, 7vw, 5rem);
  }

  .hero__content {
    width: min(42rem, 54%);
  }

  .hero__portrait {
    display: block;
    inset: 50% calc(-1 * var(--hero-right-breakout)) auto auto;
    width: calc(40% + var(--hero-right-breakout));
    height: auto;
    aspect-ratio: 1;
    transform: translateY(-50%);
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, rgb(0 0 0 / 55%) 16%, #000 36%),
      linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0%, rgb(0 0 0 / 55%) 16%, #000 36%),
      linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
  }

  .hero__portrait img {
    object-fit: contain;
    object-position: right bottom;
  }

  .article-layout,
  .panel-content .article-layout {
    grid-template-columns: 1fr;
  }

  .article-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    border: 0;
  }

  .article-nav a {
    padding: 0.35rem 0;
  }
}

@media (max-width: 60rem) {
  .initiative-feature__media {
    min-height: 20rem;
  }
}

@media (max-width: 50rem) {
  .nav-links {
    max-width: 32rem;
    gap: 0.7rem 1.1rem;
    justify-content: flex-end;
    font-size: 0.67rem;
  }
}

@media (max-width: 50rem) {
  #erfarenheter {
    padding-bottom: var(--space-4);
  }

  #initiativ {
    padding-top: var(--space-5);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    min-height: auto;
    padding-bottom: 0;
    overflow: visible;
  }

  .hero__manifest {
    order: 1;
    writing-mode: horizontal-tb;
    transform: none;
    align-self: auto;
    flex-direction: row;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 0 0 var(--space-2);
  }

  .hero__content {
    order: 3;
    width: 100%;
    padding-top: 0;
  }

  .hero__portrait {
    order: 2;
    position: relative;
    inset: auto;
    z-index: auto;
    grid-column: 1;
    width: calc(100% + var(--page-padding));
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0 calc(-1 * var(--page-padding)) 0 0;
    overflow: hidden;
    pointer-events: auto;
    transform: none;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, rgb(0 0 0 / 65%) 16%, #000 34%),
      linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0%, rgb(0 0 0 / 65%) 16%, #000 34%),
      linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
    mask-composite: intersect;
  }

  .hero__portrait img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
  }

  .breadth-continuation__copy {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .breadth-continuation h3 {
    max-width: 11ch;
  }

  .breadth-continuation__intro {
    grid-column: 1;
  }

  .breadth-continuation__questions,
  .breadth-continuation__closing {
    grid-column: 1;
  }

  .breadth-continuation__questions p {
    min-height: auto;
    padding-left: 3.25rem;
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .section-header,
  .item-header__copy,
  .career,
  .contact,
  .stats-hero,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card__link {
    grid-template-columns: 1fr;
    padding: var(--space-4) 2rem var(--space-5) 5.5rem;
  }

  .feature-card__question {
    grid-column: 1;
    grid-row: auto;
    margin-top: var(--space-2);
  }

  .feature-card__action {
    position: static;
    justify-self: end;
    margin-top: var(--space-3);
  }

  .initiative-feature {
    grid-template-columns: 1fr;
  }

  .initiative-feature h3 {
    white-space: normal;
  }

  .contact address {
    padding: var(--space-4) 0 0;
    border: 0;
    border-top: 1px solid rgb(21 21 33 / 25%);
  }

  .experience-panel {
    width: 100vw;
  }

  .detail-page > .item-article > .media-placeholder,
  .detail-page > .item-article > .item-media {
    width: 100%;
    min-width: 0;
  }

  .detail-page > .item-article > .media-placeholder,
  .detail-page > .item-article > .item-media .item-media__viewport {
    aspect-ratio: 4 / 3;
  }

  .detail-page > .item-article > .item-media--wide .item-media__viewport {
    aspect-ratio: 16 / 9;
  }

  .panel-toolbar {
    min-height: 4rem;
    padding-inline: var(--space-2);
  }

  .panel-content {
    padding-inline: var(--space-2);
  }

  .panel-content .item-header {
    padding-block: var(--space-4);
  }

  .panel-content .item-header h2 {
    max-width: 100%;
    font-size: clamp(3.25rem, 12vw, 4.5rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .panel-content .item-header__question {
    font-size: clamp(1.5rem, 5.5vw, 2.15rem);
    overflow-wrap: break-word;
  }

  .panel-content .item-meta {
    gap: var(--space-2);
  }

  .panel-content .media-placeholder,
  .panel-content .item-media {
    width: 100%;
    min-width: 0;
  }

  .panel-content .media-placeholder,
  .panel-content .item-media .item-media__viewport {
    min-height: 12rem;
    aspect-ratio: 4 / 3;
  }

  .panel-content .item-media--wide .item-media__viewport {
    aspect-ratio: 16 / 9;
  }

  .panel-content .article-layout {
    min-width: 0;
    padding-block: var(--space-4);
  }

  .panel-content .article-content,
  .panel-content .story-section {
    min-width: 0;
  }

  .item-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 38rem) {
  body {
    padding-top: 4.5625rem;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
  }

  .site-nav {
    position: relative;
    height: 4.5rem;
    align-items: center;
    flex-direction: row;
    padding-block: 0.85rem;
  }

  .brand {
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    min-width: 4.75rem;
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid var(--color-border-strong);
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    width: 1rem;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms var(--ease), opacity 180ms var(--ease);
  }

  .menu-toggle__icon {
    position: relative;
  }

  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle__icon::before {
    top: -0.32rem;
  }

  .menu-toggle__icon::after {
    top: 0.32rem;
  }

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

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    padding: var(--space-3) var(--page-padding) var(--space-4);
    display: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
    white-space: normal;
  }

  .nav-links:not(.is-open) {
    display: none;
  }

  .nav-links a {
    min-height: 3.25rem;
    padding-inline: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.78rem;
  }

  .nav-links a.is-active {
    box-shadow: inset 3px 0 currentColor;
  }

  .nav-links a::after {
    content: "→";
    color: var(--color-idea);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 13.5vw, 4.5rem);
  }

  .section-header {
    gap: var(--space-3);
  }

  .feature-card__index {
    top: var(--space-4);
    transform: none;
    font-size: 3.5rem;
  }

  .feature-card__link {
    padding-left: 4.5rem;
  }

  .initiative-feature h3 {
    font-size: 2.75rem;
  }

  .timeline__row {
    grid-template-columns: 1fr;
  }

  .examples ul {
    columns: 1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-filter,
  .stats-summary {
    grid-template-columns: 1fr;
  }

  .stats-table {
    overflow-x: auto;
  }
}

@media (max-width: 30rem) {
  .breadth-continuation h3 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .breadth-continuation__questions p {
    padding-block: var(--space-2);
    padding-left: 2.75rem;
    font-size: clamp(1.75rem, 7.5vw, 2.45rem);
  }

  .breadth-continuation__questions p::before {
    top: calc(var(--space-2) + 0.3rem);
  }
}

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

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

  .brand-logo__stroke {
    stroke-dashoffset: 0;
  }
}
