:root {
  --ink: #0a2235;
  --ink-soft: #385063;
  --navy: #08273d;
  --navy-deep: #051a2a;
  --blue: #1768ff;
  --blue-dark: #0d4ed1;
  --aqua: #28c2d1;
  --sun: #ffd65a;
  --paper: #ffffff;
  --canvas: #f4f7f9;
  --mist: #e7edf1;
  --line: #d7e0e6;
  --muted: #667886;
  --shadow: 0 22px 60px rgba(7, 35, 54, 0.12);
  --radius-sm: 0.9rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --container: 74rem;
  --header-height: 4.75rem;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.25rem);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
summary {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--aqua);
  color: var(--navy-deep);
}

.container {
  width: min(100% - 2.25rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  background: var(--sun);
  color: var(--navy-deep);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(244, 247, 249, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(10, 34, 53, 0.09);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 9px 30px rgba(7, 35, 54, 0.07);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 2.35rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 0.72rem;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.76rem;
  letter-spacing: -0.03em;
  box-shadow: inset -0.25rem -0.25rem 0 var(--blue);
}

.brand-name {
  font-size: 1rem;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 50%;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle > span:nth-child(2) {
  top: 1.15rem;
}

.menu-toggle > span:nth-child(3) {
  top: 1.63rem;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 1.39rem;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  top: 1.39rem;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  padding: 6rem 2rem 3rem;
  background: var(--navy-deep);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1.25rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  width: 100%;
  padding-block: 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--aqua);
}

.site-nav .nav-contact {
  margin-top: 1.25rem;
  width: auto;
  padding: 0.72rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--sun);
  color: var(--navy-deep);
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--header-height) + 3.5rem) 5rem;
  background:
    linear-gradient(rgba(10, 34, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 34, 53, 0.035) 1px, transparent 1px),
    var(--canvas);
  background-size: 2.7rem 2.7rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--blue) 0 56%, var(--aqua) 56% 82%, var(--sun) 82%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3.5rem;
}

.eyebrow,
.kicker {
  margin: 0 0 1.15rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow span {
  width: 1.8rem;
  height: 0.18rem;
  background: var(--aqua);
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.062em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.35rem, 13.5vw, 7.3rem);
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.075em;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: -0.08em;
  bottom: -0.02em;
  height: 0.11em;
  border-radius: 999px;
  background: var(--sun);
  transform: rotate(-1.5deg);
  z-index: -1;
}

.hero-intro {
  max-width: 39rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.1vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 0.75rem 1.8rem rgba(23, 104, 255, 0.23);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 1rem 2.4rem rgba(23, 104, 255, 0.3);
  transform: translateY(-2px);
}

.text-link {
  font-weight: 800;
  text-decoration: none;
}

.text-link span,
.button span {
  display: inline-block;
  transition: transform 180ms var(--ease);
}

.text-link:hover span,
.button:hover span {
  transform: translate(0.15rem, 0.15rem);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 2.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  padding: 0.75rem 0.65rem 0.75rem 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 0.83rem;
  line-height: 1.35;
}

.hero-facts span {
  margin-top: 0.16rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  max-width: 35rem;
  margin-inline: auto;
  padding: 0 1rem 1.75rem 0;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0.6rem solid var(--paper);
  border-radius: 48% 48% 1.9rem 1.9rem;
  background: #ded9d3;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(10, 34, 53, 0.08);
  pointer-events: none;
}

.hero-carousel-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.72s ease, visibility 0.72s ease;
}

.hero-carousel-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-carousel-slide--portrait img {
  object-position: 50% 31%;
}

.hero-carousel-slide--moderation img {
  object-position: 50% 45%;
}

.hero-carousel-slide--social-media img {
  object-position: 61% 50%;
}

.hero-carousel-slide--presentation img {
  object-position: 68% 48%;
}

.hero-carousel-controls {
  position: absolute;
  z-index: 5;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.42rem 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 28, 43, 0.82);
  box-shadow: 0 0.45rem 1.2rem rgba(6, 28, 43, 0.22);
  backdrop-filter: blur(0.55rem);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.hero-carousel-dot,
.hero-carousel-toggle {
  border: 0;
  color: var(--paper);
  cursor: pointer;
}

.hero-carousel-dot {
  width: 0.48rem;
  height: 0.48rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.hero-carousel-dot.is-active {
  width: 1.25rem;
  background: var(--aqua);
}

.hero-carousel-toggle {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  line-height: 1;
}

.hero-carousel-dot:focus-visible,
.hero-carousel-toggle:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -0.2rem;
  bottom: 0;
  width: 82%;
  height: 73%;
  border-radius: 2rem;
  background: var(--aqua);
  transform: rotate(3.5deg);
}

.hero-note {
  position: absolute;
  z-index: 3;
  left: -0.7rem;
  bottom: 0.1rem;
  max-width: 13.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--navy);
  color: var(--paper);
  box-shadow: 0 0.9rem 2rem rgba(6, 28, 43, 0.25);
}

.hero-note-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--aqua);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-index {
  position: absolute;
  z-index: 3;
  top: 3.5rem;
  right: -0.7rem;
  display: grid;
  place-items: center;
  width: 3.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(23, 104, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 28rem;
  height: 28rem;
  right: -18rem;
  top: 3rem;
}

.hero-orbit-two {
  width: 17rem;
  height: 17rem;
  left: -11rem;
  bottom: 6rem;
}

.scroll-cue {
  display: none;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-heading h2,
.contact-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 7.5vw, 5.35rem);
}

.split-heading {
  display: grid;
  gap: 1.4rem;
}

.split-heading > p,
.light-heading > p {
  max-width: 38rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.profile-layout {
  display: grid;
  gap: 2.75rem;
}

.profile-image {
  align-self: start;
}

.profile-image img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius-lg);
  filter: saturate(0.86) contrast(1.02);
}

.image-caption {
  margin: 0.8rem 0 0;
  padding-left: 0.8rem;
  border-left: 0.22rem solid var(--aqua);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.profile-content .lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.profile-content > p:not(.lead) {
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
}

.milestones {
  margin: 2.2rem 0 0;
  border-top: 1px solid var(--line);
}

.milestones > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.milestones dt {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.milestones dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.focus-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
}

.focus-section::before {
  content: "";
  position: absolute;
  top: -14rem;
  right: -13rem;
  width: 30rem;
  height: 30rem;
  border: 5rem solid rgba(40, 194, 209, 0.08);
  border-radius: 50%;
}

.focus-section .kicker {
  color: var(--aqua);
}

.light-heading {
  position: relative;
  z-index: 1;
}

.light-heading > p {
  margin-top: 1.3rem;
  color: rgba(255,255,255,0.68);
}

.focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.focus-card {
  position: relative;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.045);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms var(--ease);
}

.focus-card:hover {
  border-color: rgba(40, 194, 209, 0.55);
  background: rgba(255,255,255,0.075);
  transform: translateY(-0.35rem);
}

.focus-number {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 800;
}

.focus-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  margin: 2rem 0 auto;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--navy-deep);
}

.focus-icon svg {
  width: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.focus-card h3 {
  margin: 1.8rem 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.focus-card p {
  margin: 0.7rem 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

.projects-section {
  background: var(--canvas);
}

.project-grid {
  display: grid;
  gap: 1.35rem;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 0 0 rgba(7, 35, 54, 0);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-0.35rem);
}

.project-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.project-card-link:focus-visible {
  outline: 0.2rem solid var(--blue);
  outline-offset: 0.22rem;
}

.project-card-link h3 {
  transition: color 180ms ease;
}

.project-card-link:hover h3,
.project-card-link:focus-visible h3 {
  color: var(--blue-dark);
}

.project-media {
  overflow: hidden;
  background: var(--mist);
}

.project-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 600ms var(--ease);
}

.project-media-wide img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

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

.project-copy {
  padding: 1.5rem;
}

.project-meta,
.media-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-copy h3,
.media-card h3 {
  margin: 0.85rem 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.project-copy > p,
.media-card > p,
.media-card-body > p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

details {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.95rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--blue);
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details > p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.project-card-accent {
  background: var(--sun);
  border-color: var(--sun);
}

.project-card-accent .project-meta,
.project-card-accent summary span {
  color: var(--navy-deep);
}

.project-card-accent details {
  border-color: rgba(8,39,61,0.18);
}

.project-card-accent .project-copy > p,
.project-card-accent details > p {
  color: rgba(5,26,42,0.78);
}

.project-resource-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.project-resource-intro {
  margin: 0 0 0.45rem;
  color: rgba(5,26,42,0.78);
  font-size: 0.88rem;
  line-height: 1.65;
}

.project-resource {
  position: relative;
  display: block;
  padding: 1rem 2.8rem 1rem 0;
  border-top: 1px solid rgba(8,39,61,0.18);
  color: var(--navy-deep);
  text-decoration: none;
}

.project-resource-label {
  display: block;
  color: rgba(5,26,42,0.66);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-resource h4 {
  margin: 0.3rem 0 0;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.project-resource p {
  margin: 0.4rem 0 0;
  color: rgba(5,26,42,0.75);
  font-size: 0.82rem;
  line-height: 1.6;
}

.project-resource-arrow {
  position: absolute;
  top: 1rem;
  right: 0.1rem;
  display: grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(8,39,61,0.32);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.project-resource:hover h4 {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.project-resource:hover .project-resource-arrow,
.project-resource:focus-visible .project-resource-arrow {
  background: var(--navy-deep);
  color: var(--paper);
  transform: translate(0.12rem, -0.12rem);
}

.project-resource:focus-visible {
  outline: 0.18rem solid var(--navy-deep);
  outline-offset: 0.16rem;
}

.project-symbol {
  min-height: 14rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--navy-deep);
}

.project-symbol span:first-child {
  font-size: clamp(5rem, 20vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.85;
}

.project-symbol span:last-child {
  font-size: 2rem;
}

.statement-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--blue);
  color: var(--paper);
}

.statement-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.statement-mark {
  color: var(--sun);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 0.8;
}

.statement-inner p {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(2rem, 6.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
  text-wrap: balance;
}

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

.media-toolbar {
  display: flex;
  gap: 0.55rem;
  margin: -1.25rem 0 2rem;
  padding-bottom: 0.35rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  padding: 0.68rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.media-grid {
  display: grid;
  gap: 1rem;
}

.media-card {
  align-self: start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
  transition: border-color 180ms ease, transform 180ms var(--ease), opacity 180ms ease;
}

.media-card:hover {
  border-color: rgba(23, 104, 255, 0.45);
  transform: translateY(-0.25rem);
}

.media-card[hidden] {
  display: none;
}

.media-card h3 {
  font-size: 1.35rem;
}

.media-card-image {
  padding: 0;
  overflow: hidden;
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.media-card-image > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-card-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.media-card-link-card:hover .media-read-link span {
  transform: translate(0.14rem, -0.14rem);
}

.media-card-link-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.media-card-image > .positive-influencing-card-image {
  object-position: center top;
}

.media-card-body {
  padding: 1.35rem;
  color: var(--paper);
}

.media-card-body .media-card-top {
  color: var(--aqua);
}

.media-card-body h3 {
  color: var(--paper);
}

.media-card-body > p,
.media-card-body details > p {
  color: rgba(255,255,255,0.7);
}

.media-card-body details {
  border-color: rgba(255,255,255,0.16);
}

.media-card-body summary {
  color: var(--paper);
}

.noscript-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255,255,255,0.025), 0 0 0 6rem rgba(255,255,255,0.018);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.contact-copy .kicker {
  color: var(--aqua);
}

.contact-copy > p:not(.kicker) {
  max-width: 39rem;
  margin: 1.4rem 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
}

.contact-copy .personal-note {
  color: var(--sun) !important;
  font-size: 0.9rem !important;
}

.contact-options {
  display: grid;
  gap: 0.75rem;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 0.12rem;
  min-height: 6.8rem;
  align-content: center;
  padding: 1rem 4rem 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1.15rem;
  background: rgba(255,255,255,0.055);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.contact-card:hover {
  border-color: var(--aqua);
  background: rgba(255,255,255,0.095);
  transform: translateX(0.35rem);
}

.contact-label {
  color: var(--aqua);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.contact-arrow {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  color: var(--navy-deep);
  font-weight: 900;
  transform: translateY(-50%);
}

.site-footer {
  padding-block: 2.5rem;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.68);
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand .brand-mark {
  background: var(--paper);
  color: var(--navy-deep);
  box-shadow: inset -0.25rem -0.25rem 0 var(--aqua);
}

.site-footer p {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--aqua);
}

.copyright {
  color: rgba(255,255,255,0.46);
}

.legal-page,
.error-page {
  min-height: 100svh;
  padding-block: calc(var(--header-height) + 4rem) 5rem;
  background:
    linear-gradient(rgba(10, 34, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 34, 53, 0.035) 1px, transparent 1px),
    var(--canvas);
  background-size: 2.7rem 2.7rem;
}

.legal-shell {
  max-width: 50rem;
}

.legal-shell h1,
.error-page h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.legal-intro {
  margin: 1.5rem 0 3.5rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.legal-block {
  padding-block: 1.7rem;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.legal-block p,
.legal-block ul {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.legal-block ul {
  padding-left: 1.2rem;
}

.legal-block a {
  color: var(--blue-dark);
}

.legal-date {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.error-page {
  display: grid;
  place-items: center;
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.error-page p:not(.error-code) {
  max-width: 34rem;
  margin: 1.2rem auto 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay,
.js .reveal-delay-1 {
  transition-delay: 90ms;
}

.js .reveal-delay-2 {
  transition-delay: 160ms;
}

.js .reveal-delay-3 {
  transition-delay: 230ms;
}

@media (min-width: 35rem) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts li:not(:first-child) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }

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

@media (min-width: 50rem) {
  :root {
    --header-height: 5.25rem;
  }

  body.nav-open {
    overflow: auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.35rem;
    padding: 0;
    background: transparent;
    color: var(--ink);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    width: auto;
    padding: 0.4rem 0;
    border: 0;
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0;
  }

  .site-nav a:not(.nav-contact) {
    background-image: linear-gradient(var(--aqua), var(--aqua));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 2px;
    transition: background-size 180ms ease;
  }

  .site-nav a:not(.nav-contact):hover {
    color: var(--ink);
    background-size: 100% 2px;
  }

  .site-nav .nav-contact {
    margin: 0 0 0 0.3rem;
    padding: 0.6rem 1rem;
    background: var(--navy);
    color: var(--paper);
  }

  .site-nav .nav-contact:hover {
    background: var(--blue);
    color: var(--paper);
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.75fr);
    align-items: end;
    gap: 4rem;
  }

  .profile-layout {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 7vw, 6.5rem);
    align-items: start;
  }

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

  .project-card-featured {
    grid-row: span 2;
  }

  .project-card-featured .project-media img {
    aspect-ratio: 5 / 5.8;
  }

  .project-symbol {
    min-height: 13.2rem;
  }

  .statement-inner {
    grid-template-columns: 7rem 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .copyright {
    grid-column: 1 / -1;
    margin-top: 0 !important;
  }

  .legal-page {
    padding-block: calc(var(--header-height) + 6rem) 7rem;
  }
}

@media (min-width: 62rem) {
  .hero {
    padding-block: calc(var(--header-height) + 2.5rem) 4.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.75fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .hero h1 {
    font-size: clamp(4.9rem, 7.2vw, 7.3rem);
  }

  .hero-visual {
    width: 100%;
    max-width: 33rem;
    margin-right: 1rem;
  }

  .scroll-cue {
    position: absolute;
    z-index: 4;
    left: max(1.5rem, calc((100vw - var(--container)) / 2));
    bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .scroll-cue span {
    width: 2rem;
    height: 1px;
    background: var(--muted);
  }

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

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

  .media-card {
    padding: 1.55rem;
  }

  .media-card-body {
    padding: 1.55rem;
  }
}

@media (min-width: 78rem) {
  .hero-orbit-one {
    right: -8rem;
  }

  .hero-note {
    left: -2rem;
  }

  .hero-index {
    right: -1.3rem;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .scroll-cue,
  .media-toolbar,
  .site-footer {
    display: none !important;
  }

  body,
  .hero,
  .profile-section,
  .focus-section,
  .projects-section,
  .statement-section,
  .media-section,
  .contact-section {
    background: #fff !important;
    color: #000 !important;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 2rem;
  }

  .focus-card,
  .project-card,
  .media-card,
  .contact-card {
    break-inside: avoid;
    color: #000 !important;
    background: #fff !important;
    border-color: #bbb !important;
    box-shadow: none !important;
  }
}

/* Article pages and linked media cards */
.media-card-title-link {
  color: inherit;
  text-decoration: none;
}

.media-card-title-link:hover {
  color: var(--aqua);
}

.media-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.media-read-link span {
  color: var(--aqua);
  transition: transform 180ms var(--ease);
}

.media-read-link:hover span {
  transform: translateX(0.2rem);
}

.article-page {
  background: var(--paper);
}

.article-page .site-header {
  background: rgba(255, 255, 255, 0.92);
}

.article-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.article-nav a {
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.article-nav > a:first-child {
  display: none;
}

.article-nav-contact {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--paper);
}

.article-nav-contact:hover {
  background: var(--blue);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--header-height) + 2rem) clamp(4.5rem, 8vw, 7rem);
  background:
    linear-gradient(rgba(10, 34, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 34, 53, 0.035) 1px, transparent 1px),
    var(--canvas);
  background-size: 2.7rem 2.7rem;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--blue) 0 56%, var(--aqua) 56% 82%, var(--sun) 82%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--blue-dark);
}

.article-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.article-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.article-hero h1.article-title-long {
  max-width: 16ch;
  font-size: clamp(2.85rem, 8.6vw, 5rem);
}

.article-intro {
  max-width: 42rem;
  margin: 1.65rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.article-meta > *:not(:last-child)::after {
  content: "·";
  margin-left: 1rem;
  color: var(--aqua);
}

.article-hero-media {
  margin: 0;
}

.article-hero-media picture {
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
  border: 0.55rem solid var(--paper);
  border-radius: 2.1rem;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-media--stadtkino img {
  object-position: center 65%;
}

.article-hero-media figcaption {
  margin: 0.8rem 0 0;
  padding-left: 0.8rem;
  border-left: 0.22rem solid var(--aqua);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.article-layout {
  display: grid;
  gap: 4rem;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.article-body {
  min-width: 0;
}

.article-body > p,
.article-body > ul {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body .article-lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.7vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.article-body > h2 {
  max-width: 18ch;
  margin: clamp(3.5rem, 7vw, 5rem) 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 1.06;
  text-wrap: balance;
}

.article-photo {
  max-width: 48rem;
  margin: clamp(2.5rem, 7vw, 4.5rem) 0;
}

.article-photo picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--mist);
}

.article-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.article-photo figcaption {
  margin-top: 0.75rem;
  padding-left: 0.8rem;
  border-left: 0.22rem solid var(--aqua);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.article-gallery {
  display: grid;
  max-width: 48rem;
  gap: 1.25rem;
  margin: clamp(2.5rem, 7vw, 4.5rem) 0;
}

.article-gallery .article-photo {
  margin: 0;
}

.article-body blockquote {
  position: relative;
  max-width: 48rem;
  margin: clamp(3rem, 7vw, 4.5rem) 0;
  padding: 2rem 1.6rem 2rem 2rem;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--blue);
  color: var(--paper);
}

.article-body blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 0.7;
}

.article-body blockquote p {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.article-keypoints {
  max-width: 48rem;
  margin: clamp(3.5rem, 8vw, 5.5rem) 0;
  padding: clamp(1.7rem, 5vw, 2.7rem);
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  color: var(--paper);
}

.article-keypoints .kicker {
  color: var(--aqua);
}

.article-keypoints h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.article-keypoints ul {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.article-keypoints li {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.article-keypoints strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--paper);
}

.media-cta {
  max-width: 48rem;
  margin-top: clamp(4rem, 8vw, 6rem);
  padding: clamp(1.7rem, 5vw, 2.7rem);
  border-radius: var(--radius-lg);
  background: var(--sun);
  color: var(--navy-deep);
}

.media-cta .kicker {
  color: var(--navy-deep);
}

.media-cta-visual {
  display: block;
  overflow: hidden;
  margin: clamp(-2.7rem, -5vw, -1.7rem) clamp(-2.7rem, -5vw, -1.7rem) 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--navy);
}

.media-cta-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.media-cta-visual:hover img,
.media-cta-visual:focus-visible img {
  transform: scale(1.025);
}

.media-cta h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.media-cta p:not(.kicker) {
  max-width: 38rem;
  margin: 1rem 0 1.6rem;
  color: rgba(5, 26, 42, 0.78);
  line-height: 1.65;
}

.media-cta .button-primary {
  background: var(--navy);
}

.media-cta .button-primary:hover {
  background: var(--blue);
}

.article-source {
  margin-top: 1.5rem !important;
  color: var(--muted) !important;
  font-size: 0.84rem !important;
}

.article-source a {
  color: var(--blue-dark);
  font-weight: 750;
}

.article-aside {
  align-self: start;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
}

.article-aside h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.article-aside > p:not(.kicker) {
  margin: 0.7rem 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.article-aside .text-link {
  color: var(--blue-dark);
  font-size: 0.86rem;
}

.article-footer {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--blue);
  color: var(--paper);
}

.article-footer-inner {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.article-footer .kicker {
  color: var(--sun);
}

.article-footer h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.article-back-button {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--paper);
}

.article-back-button:hover {
  background: var(--paper);
  color: var(--blue-dark);
}

@media (min-width: 35rem) {
  .article-nav > a:first-child {
    display: inline;
  }

  .article-keypoints ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 2rem;
  }

  .article-gallery {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (min-width: 56rem) {
  .article-hero {
    padding-block: calc(var(--header-height) + 3rem) 7rem;
  }

  .article-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(23rem, 0.88fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .article-hero h1 {
    font-size: clamp(4rem, 6.2vw, 6rem);
  }

  .article-hero h1.article-title-long {
    font-size: clamp(3.6rem, 5vw, 4.9rem);
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 17rem;
    gap: clamp(4rem, 8vw, 7rem);
  }

  .article-aside {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .article-footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media print {
  .article-nav,
  .article-aside,
  .article-footer,
  .media-cta .button {
    display: none !important;
  }

  .article-hero,
  .article-keypoints,
  .media-cta {
    background: #fff !important;
    color: #000 !important;
  }

  .article-layout {
    display: block;
    padding-block: 2rem;
  }
}
