:root {
  --black: #070707;
  --graphite: #171717;
  --graphite-light: #222222;
  --white: #ffffff;
  --offwhite: #f6f3ee;
  --gold: #c8a45d;
  --gold-dark: #8a6a2e;
  --ink: #14233b;
  --green: #1e5a45;
  --red: #8f1d1d;
  --grey-700: #55524d;
  --grey-500: #77736c;
  --grey-300: #c9c5bd;
  --grey-200: #e5e2dc;
  --font-heading: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-editorial: "Playfair Display", Georgia, serif;
  --container: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(7, 7, 7, 0.12);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.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: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.article-header {
  background: rgba(7, 7, 7, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  clip-path: polygon(50% 0, 100% 24%, 100% 76%, 50% 100%, 0 76%, 0 24%);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-action) {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.primary-nav > a:not(.nav-action):hover,
.primary-nav > a:not(.nav-action):focus-visible {
  color: var(--white);
}

.nav-action {
  padding: 10px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 25%, rgba(200, 164, 93, 0.16), transparent 28%),
    var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 78px 0 64px 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.65fr);
  gap: 9vw;
  align-items: center;
  padding-block: 88px 104px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kicker-dark {
  color: var(--gold-dark);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.start h2,
.article-hero h1,
.related-heading h2,
.article-error h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 8.5vw, 8.4rem);
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--gold);
  font-family: var(--font-editorial);
  font-weight: 600;
  text-transform: none;
}

.hero-lead {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-primary:hover {
  background: #d3b26c;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link-dark {
  color: var(--black);
  border-color: var(--grey-300);
}

.hero-panel {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0 58px 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-index {
  position: absolute;
  top: 54px;
  right: 0;
  color: rgba(255, 255, 255, 0.23);
  font-family: var(--font-heading);
  font-size: 4rem;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-editorial);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.hero-panel .panel-emphasis {
  margin-top: 10px;
  color: var(--white);
}

.panel-signature {
  margin-top: 32px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee div {
  width: max-content;
  min-width: 200%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.editorial-section {
  background: var(--offwhite);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.03em;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--grey-700);
}

.article-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-block: 1px solid var(--grey-200);
}

.filter-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--grey-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.is-active {
  background: var(--black);
  color: var(--white);
}

.search-box {
  width: min(290px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 14px;
  border-left: 1px solid var(--grey-200);
}

.search-box svg {
  width: 18px;
  fill: none;
  stroke: var(--grey-500);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
}

.featured-article {
  margin-top: 48px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 440px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-visual,
.article-card-visual {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%),
    var(--card-accent, var(--ink));
}

.featured-visual::before,
.article-card-visual::before,
.article-visual::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.05), 0 0 0 76px rgba(255, 255, 255, 0.035);
}

.featured-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
}

.visual-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visual-word {
  max-width: 420px;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.article-category {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-content h3 {
  margin: 20px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.featured-content p,
.article-card-content p {
  margin: 0;
  color: var(--grey-700);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  color: var(--grey-500);
  font-size: 0.73rem;
}

.featured-content .text-link {
  width: max-content;
  margin-top: 34px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-card-visual {
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
}

.article-card-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.article-card-visual strong {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.article-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.article-card-content h3 {
  margin: 15px 0 12px;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.article-card-content .article-meta {
  margin-top: auto;
  padding-top: 26px;
}

.empty-state {
  padding: 48px 0 0;
  color: var(--grey-500);
  text-align: center;
}

.pillars {
  color: var(--white);
  background: var(--black);
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.13);
}

.pillar-card {
  min-height: 330px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.2s ease;
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card:hover {
  background: var(--graphite);
}

.pillar-card span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.8rem;
}

.pillar-card h3 {
  margin: 90px 0 18px;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(150deg, rgba(200, 164, 93, 0.12), transparent 45%),
    var(--graphite);
}

.outline-word {
  position: absolute;
  top: 28px;
  left: -36px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(200, 164, 93, 0.35);
}

.portrait-placeholder {
  position: relative;
  z-index: 1;
  width: 70%;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background:
    linear-gradient(to top, rgba(7, 7, 7, 0.9), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px);
}

.portrait-placeholder span {
  color: var(--gold);
  font-family: var(--font-editorial);
  font-size: 1.7rem;
  font-style: italic;
}

.portrait-placeholder strong {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 600px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.035em;
}

.about-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--grey-700);
}

.about-copy .text-link {
  margin-top: 34px;
}

.start {
  color: var(--white);
  background: var(--ink);
}

.start-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.start h2 {
  max-width: 470px;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.start-options {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.start-options a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: padding 0.2s ease, color 0.2s ease;
}

.start-options a:hover {
  padding-left: 12px;
  color: var(--gold);
}

.start-options span {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-heading);
}

.start-options strong {
  font-size: 1rem;
}

.start-options i {
  font-size: 1.5rem;
  font-style: normal;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.brand-footer {
  margin-bottom: 22px;
}

.footer-grid p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-note {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Article */
.article-page {
  background: var(--white);
}

.back-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link span {
  margin-right: 8px;
}

.article-loading {
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: var(--grey-500);
}

.article-error {
  min-height: 78vh;
  padding-top: 190px;
}

.article-error h1 {
  max-width: 680px;
  margin-bottom: 36px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.article-hero {
  padding: 170px 0 90px;
  color: var(--white);
  background: var(--black);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 8vw;
  align-items: stretch;
}

.article-hero h1 {
  max-width: 850px;
  margin-top: 25px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  letter-spacing: -0.04em;
}

.article-deck {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.12rem;
}

.article-hero .article-meta {
  color: rgba(255, 255, 255, 0.48);
}

.article-visual {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px;
  background: var(--article-accent, var(--ink));
}

.article-number {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.article-visual p {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 80px;
  justify-content: center;
  padding-block: 90px 120px;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 110px;
  padding-top: 8px;
}

.article-aside > span {
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-aside nav {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.article-aside a {
  color: var(--grey-500);
  font-size: 0.78rem;
  line-height: 1.4;
}

.article-aside a:hover {
  color: var(--black);
}

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

.article-body > p:first-child {
  margin-top: 0;
  color: var(--black);
  font-family: var(--font-editorial);
  font-size: 1.45rem;
  line-height: 1.65;
}

.article-body p,
.article-body li {
  color: #3f3d39;
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-body h2 {
  scroll-margin-top: 110px;
  margin: 68px 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.article-body h3 {
  margin: 42px 0 16px;
  font-size: 1.25rem;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body li + li {
  margin-top: 9px;
}

.article-quote {
  margin: 54px 0;
  padding: 12px 0 12px 30px;
  border-left: 3px solid var(--gold);
  color: var(--black);
  font-family: var(--font-editorial);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
}

.article-callout {
  margin: 48px 0;
  padding: 30px;
  border-radius: 6px;
  background: var(--offwhite);
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-callout p {
  margin: 0;
}

.related-section {
  padding: 90px 0 110px;
  color: var(--white);
  background: var(--black);
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.related-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.related-card:hover {
  border-color: var(--gold);
  background: var(--graphite);
}

.related-card span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: auto 0 18px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.related-card small {
  color: rgba(255, 255, 255, 0.45);
}

.compact-footer {
  padding-top: 1px;
}

.compact-footer .footer-bottom {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .hero-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 20px;
  }

  .hero-panel {
    min-height: 330px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .section-heading,
  .start-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pillar-card:nth-child(2) {
    border-right: 0;
  }

  .pillar-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 6vw;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-aside {
    position: static;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-200);
  }

  .article-aside nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .section {
    padding: 70px 0;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .site-header .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px 24px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .nav-action {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    padding-top: 68px;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel {
    min-height: 290px;
    padding-bottom: 20px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .article-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
    border-top: 1px solid var(--grey-200);
    border-left: 0;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    min-height: 330px;
    padding: 30px;
  }

  .featured-content {
    padding: 34px 28px;
  }

  .article-grid,
  .related-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .pillar-card:nth-child(2) {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .pillar-card h3 {
    margin-top: 60px;
  }

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

  .about-art {
    min-height: 500px;
  }

  .start h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-note {
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

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

  .article-header .brand-copy {
    display: none;
  }

  .article-hero {
    padding: 130px 0 70px;
  }

  .article-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .article-visual {
    min-height: 330px;
  }

  .article-layout {
    padding-block: 65px 80px;
  }

  .article-aside nav {
    grid-template-columns: 1fr;
  }

  .article-body > p:first-child {
    font-size: 1.25rem;
  }

  .related-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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