:root {
  --wine-950: #31070f;
  --wine-900: #4d101a;
  --wine-800: #5b1020;
  --wine-700: #78172a;
  --wine-100: #f7e7e9;
  --ink-950: #101a1d;
  --ink-800: #263338;
  --ink-600: #526066;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --white: #ffffff;
  --gold: #c49a55;
  --gold-light: #e3c48d;
  --line: #ded8ce;
  --medicine: #b94f5c;
  --physical: #3c7193;
  --social: #705982;
  --life: #52785d;
  --earth: #9b6a3d;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --shadow-sm: 0 12px 35px rgba(28, 23, 20, 0.08);
  --shadow-lg: 0 28px 80px rgba(28, 23, 20, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1220px;
}

/* Editorial carousel: a focused, owner-pitch alternative to the former static hero. */
.legacy-hero[hidden] { display: none !important; }

.editorial-carousel {
  position: relative;
  min-height: 540px;
  height: calc(100svh - 154px);
  max-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--wine-950);
  isolation: isolate;
  touch-action: pan-y;
}

.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .7s ease, transform 1.1s ease, visibility 0s linear .7s;
}

.carousel-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}

.carousel-copy,
.carousel-note {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .25s ease;
}

.carousel-slide.is-active .carousel-copy,
.carousel-slide.is-active .carousel-note {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .22s;
}

.carousel-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide:nth-child(1) > img { object-position: center 45%; }
.carousel-slide:nth-child(2) > img { object-position: center 38%; }
.carousel-slide:nth-child(3) > img { object-position: center 50%; }

.carousel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35,4,10,.94) 0%, rgba(53,7,17,.79) 40%, rgba(53,7,17,.22) 73%, rgba(35,4,10,.42) 100%),
    linear-gradient(0deg, rgba(30,3,9,.85) 0%, transparent 48%);
}

.carousel-slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(180px, 1fr);
  align-items: end;
  gap: 70px;
  height: 100%;
  padding-top: 70px;
  padding-bottom: 125px;
}

.carousel-copy { max-width: 790px; }
.carousel-copy .eyebrow { margin-bottom: 20px; color: var(--gold-light); }

.carousel-copy h1,
.carousel-copy h2 {
  max-width: 850px;
  margin-bottom: 23px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
}

.carousel-copy h2 { font-size: clamp(50px, 5.3vw, 76px); }
.carousel-copy h1 em { color: var(--gold-light); font-weight: 400; }

.carousel-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.84);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.carousel-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.carousel-actions > span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.carousel-note {
  justify-self: end;
  width: min(100%, 270px);
  padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: rgba(49,7,15,.32);
  backdrop-filter: blur(10px);
}

.carousel-note strong,
.carousel-note span { display: block; }
.carousel-note strong { margin-bottom: 4px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.carousel-note span { color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .04em; }

.carousel-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-arrow,
.carousel-pause {
  display: inline-grid;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  place-items: center;
  color: var(--white);
  background: rgba(49,7,15,.62);
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.carousel-arrow { width: 48px; padding: 0; font-size: 20px; }
.carousel-arrow:hover, .carousel-pause:hover { background: var(--wine-700); border-color: var(--gold-light); }
.carousel-arrow:active { transform: scale(.94); }

.carousel-status {
  display: flex;
  align-items: baseline;
  min-width: 62px;
  gap: 5px;
  font-size: 12px;
}

.carousel-status strong { color: var(--gold-light); font-family: var(--serif); font-size: 26px; font-weight: 400; }
.carousel-status span { color: rgba(255,255,255,.64); }

.carousel-dots { display: flex; align-items: center; gap: 8px; margin-right: auto; }
.carousel-dots button { width: 28px; height: 3px; padding: 0; background: rgba(255,255,255,.38); border: 0; cursor: pointer; transition: width .25s ease, background .25s ease; }
.carousel-dots button.is-active { width: 52px; background: var(--gold-light); }
.carousel-pause { display: flex; gap: 8px; min-width: 92px; font-size: 12px; font-weight: 700; letter-spacing: .04em; }

@media (max-width: 920px) {
  .editorial-carousel { min-height: 570px; height: calc(100svh - 130px); max-height: 720px; }
  .carousel-slide-inner { grid-template-columns: 1fr; gap: 0; padding-top: 55px; padding-bottom: 108px; }
  .carousel-copy h1, .carousel-copy h2 { font-size: clamp(46px, 9vw, 68px); }
  .carousel-note { display: none; }
}

@media (max-width: 680px) {
  .editorial-carousel { min-height: 540px; height: calc(100svh - 105px); max-height: 680px; }
  .carousel-overlay { background: linear-gradient(90deg, rgba(35,4,10,.92), rgba(53,7,17,.58)), linear-gradient(0deg, rgba(30,3,9,.9), transparent 60%); }
  .carousel-slide-inner { width: min(calc(100% - 36px), var(--container)); padding-top: 38px; padding-bottom: 100px; }
  .carousel-copy .eyebrow { margin-bottom: 14px; }
  .carousel-copy h1, .carousel-copy h2 { margin-bottom: 18px; font-size: clamp(42px, 12vw, 56px); line-height: 1.02; }
  .carousel-copy > p:not(.eyebrow) { margin-bottom: 24px; font-size: 16px; line-height: 1.45; }
  .carousel-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .carousel-controls { width: calc(100% - 36px); bottom: 20px; gap: 9px; }
  .carousel-status { min-width: 50px; }
  .carousel-dots { gap: 5px; }
  .carousel-dots button { width: 15px; }
  .carousel-dots button.is-active { width: 29px; }
  .carousel-pause { min-width: 48px; width: 48px; padding: 0; }
  .carousel-pause [data-carousel-pause-label] { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: none; transform: none; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink-950);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, blockquote { margin-top: 0; }

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-950);
  transform: translateY(-160%);
}

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

.prototype-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 30px;
  padding: 4px 24px;
  color: #f7dfe3;
  background: var(--wine-950);
  font-size: 12px;
  letter-spacing: .04em;
}

.prototype-bar span {
  padding: 1px 7px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  text-transform: uppercase;
}

.utility-bar {
  color: rgba(255,255,255,.76);
  background: var(--wine-900);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.utility-inner p { margin: 0; font-weight: 700; color: var(--white); }
.utility-points { display: flex; gap: 28px; }
.utility-points span::before { content: "•"; margin-right: 8px; color: var(--gold-light); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(77, 16, 26, .96);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 28px;
}

.brand { flex: 0 0 285px; }
.brand img { width: 285px; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 29px 0;
  color: rgba(255,255,255,.86);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.icon-button, .menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg, .browse-search svg, .dialog-search-field svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.menu-button { display: none; align-content: center; gap: 4px; }
.menu-button span { width: 18px; height: 1px; background: currentColor; }

.mobile-nav {
  padding: 14px 24px 24px;
  background: var(--wine-900);
  border-top: 1px solid rgba(255,255,255,.12);
}

.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav .button { margin-top: 18px; }

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.button-light { color: var(--wine-900); background: var(--white); }
.button-gold { color: var(--wine-950); background: var(--gold-light); }
.button-primary { color: var(--white); background: var(--wine-800); }
.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.4); }
.button-outline-light:hover { color: var(--wine-900); background: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  color: var(--wine-800);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  cursor: pointer;
}

.text-link-light { color: var(--white); }

.eyebrow {
  margin-bottom: 14px;
  color: var(--wine-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--gold-light); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 12%, rgba(196,154,85,.15), transparent 28%),
    linear-gradient(124deg, var(--wine-900) 0%, var(--wine-950) 54%, #1f0a10 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .78fr);
  gap: 72px;
  min-height: 690px;
  padding-block: 72px 58px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 710px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(62px, 6.2vw, 96px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.hero-copy h1 em { color: var(--gold-light); font-weight: 400; }

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.75);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-proof {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.19);
}

.hero-proof div { padding: 22px 18px 0 0; }
.hero-proof div + div { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.19); }
.hero-proof strong { display: block; margin-bottom: 2px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.hero-proof span { color: rgba(255,255,255,.58); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.hero-feature {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 180px 180px 8px 8px;
  box-shadow: 0 35px 80px rgba(0,0,0,.32);
}

.hero-feature > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.hero-feature-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,5,12,.96) 0%, rgba(49,7,15,.18) 63%, rgba(31,5,12,.08) 100%); }

.issue-stamp {
  position: absolute;
  top: 36px;
  left: 36px;
  display: grid;
  width: 84px;
  height: 84px;
  padding: 11px;
  place-content: center;
  color: var(--wine-950);
  background: var(--gold-light);
  border-radius: 50%;
  line-height: 1;
  text-align: center;
}

.issue-stamp span { font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.issue-stamp strong { margin: 2px 0; font-family: var(--serif); font-size: 25px; font-weight: 400; }

.hero-feature-content { position: absolute; right: 36px; bottom: 36px; left: 36px; }
.article-kicker { margin-bottom: 10px; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-kicker.ink { color: var(--wine-700); }
.hero-feature-content h2 { max-width: 440px; margin-bottom: 12px; font-family: var(--serif); font-size: 37px; font-weight: 400; line-height: 1.08; }
.hero-feature-content p:not(.article-kicker) { max-width: 420px; margin-bottom: 22px; color: rgba(255,255,255,.69); font-size: 13px; }
.article-open { padding: 0 0 5px; color: var(--white); background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); font-weight: 700; cursor: pointer; }

.hero-footnote {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-block: 15px 20px;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.orbit-one { top: -210px; right: -210px; width: 620px; height: 620px; }
.orbit-two { bottom: -360px; left: -210px; width: 720px; height: 720px; }

.trust-strip { background: var(--ivory); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; min-height: 112px; padding: 28px 28px; align-items: center; gap: 16px; }
.trust-grid > div + div { border-left: 1px solid var(--line); }
.trust-grid p { margin: 0; color: var(--ink-600); font-size: 13px; line-height: 1.45; }
.trust-grid strong { color: var(--ink-950); font-size: 14px; }
.trust-icon { display: grid; flex: 0 0 34px; height: 34px; place-items: center; color: var(--wine-700); border: 1px solid var(--wine-100); border-radius: 50%; background: var(--paper); }

.section { padding-block: 112px; }
.section-heading { margin-bottom: 56px; }
.section-heading h2, .about-copy h2, .archive-intro h2, .cta-inner h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .55fr); gap: 70px; align-items: end; }
.split-heading > p { margin-bottom: 4px; color: var(--ink-600); font-family: var(--serif); font-size: 18px; line-height: 1.6; }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.centered > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--ink-600); font-family: var(--serif); font-size: 18px; }

.reveal { opacity: 1; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Current issue */
.issue-section { background: var(--paper); }
.issue-layout { display: grid; grid-template-columns: 350px minmax(0, 1fr); gap: 76px; align-items: stretch; }
.issue-cover {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(145deg, #173239 0%, #0d1f24 65%, #09171a 100%);
  box-shadow: var(--shadow-lg);
}

.cover-topline, .cover-issn { position: relative; z-index: 2; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.cover-topline { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.22); }
.cover-issn { position: absolute; right: 30px; bottom: 26px; left: 30px; color: rgba(255,255,255,.55); }
.cover-title { position: absolute; z-index: 2; right: 30px; bottom: 70px; left: 30px; }
.cover-title span { display: block; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cover-title strong { display: block; max-width: 250px; margin: 7px 0 10px; font-family: var(--serif); font-size: 47px; font-weight: 400; line-height: .98; }
.cover-title small { color: rgba(255,255,255,.64); }
.cover-art { position: absolute; inset: 70px -75px auto auto; width: 330px; height: 330px; }
.cover-ring { position: absolute; inset: 0; border: 1px solid rgba(227,196,141,.3); border-radius: 50%; }
.cover-ring.ring-b { transform: rotate(64deg) scaleX(.43); }
.cover-ring.ring-c { transform: rotate(-54deg) scaleY(.45); }
.cover-dot { position: absolute; width: 10px; height: 10px; background: var(--gold-light); border-radius: 50%; box-shadow: 0 0 0 5px rgba(227,196,141,.12); }
.cover-dot.dot-a { top: 25px; left: 145px; }
.cover-dot.dot-b { top: 210px; left: 12px; }
.cover-dot.dot-c { right: 24px; bottom: 50px; }

.issue-list { border-top: 1px solid var(--line); }
.issue-row { display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.issue-index { padding-top: 3px; color: var(--wine-700); font-family: var(--serif); font-size: 15px; }
.issue-row-main h3 { margin-bottom: 9px; }
.issue-row-main h3 a { color: var(--ink-950); font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.25; }
.issue-row-main h3 a:hover { color: var(--wine-700); }
.issue-row-main > p:last-child { margin: 0; color: var(--ink-600); font-size: 13px; }
.round-arrow { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; color: var(--wine-800); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: .2s ease; }
.round-arrow:hover { color: var(--white); background: var(--wine-800); border-color: var(--wine-800); transform: rotate(45deg); }
.issue-actions { display: flex; padding-top: 30px; align-items: center; justify-content: space-between; }

/* Article discovery */
.browse-section { background: var(--ivory); }
.browse-search { position: relative; width: 100%; max-width: 400px; }
.browse-search svg { position: absolute; top: 50%; left: 0; color: var(--ink-600); transform: translateY(-50%); }
.browse-search input { width: 100%; height: 54px; padding: 0 8px 0 30px; color: var(--ink-950); background: transparent; border: 0; border-bottom: 1px solid var(--ink-600); outline: 0; }
.browse-search input:focus { border-color: var(--wine-700); box-shadow: 0 1px 0 var(--wine-700); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter-button { padding: 10px 16px; color: var(--ink-600); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; cursor: pointer; }
.filter-button:hover, .filter-button.is-active { color: var(--white); background: var(--wine-800); border-color: var(--wine-800); }
.result-count { margin-bottom: 24px; color: var(--ink-600); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.article-card { position: relative; display: flex; min-height: 350px; padding: 28px; flex-direction: column; background: var(--paper); border: 1px solid transparent; box-shadow: 0 8px 24px rgba(34,29,25,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.article-card:hover { z-index: 2; border-color: #d5ccc0; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.article-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.article-type { color: var(--ink-600); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-date { color: var(--ink-600); font-size: 11px; }
.discipline-chip { display: inline-flex; margin: 28px 0 15px; align-items: center; gap: 7px; color: var(--wine-700); font-size: 11px; font-weight: 800; }
.discipline-chip::before { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; }
.article-card[data-category="medicine"] .discipline-chip { color: var(--medicine); }
.article-card[data-category="physical"] .discipline-chip { color: var(--physical); }
.article-card[data-category="social"] .discipline-chip { color: var(--social); }
.article-card[data-category="life"] .discipline-chip { color: var(--life); }
.article-card[data-category="earth"] .discipline-chip { color: var(--earth); }
.article-card h3 { margin-bottom: 15px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.22; }
.article-card h3 a { color: inherit; font: inherit; line-height: inherit; }
.article-card h3 a:hover { color: var(--wine-700); }
.article-authors-small { margin-bottom: 28px; color: var(--ink-600); font-size: 13px; }
.article-card-footer { display: flex; margin-top: auto; padding-top: 18px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.article-code-small { color: var(--ink-600); font-size: 11px; letter-spacing: .08em; }
.article-card-footer a { color: var(--wine-700); font-weight: 700; }
.empty-state { padding: 55px; text-align: center; background: var(--paper); border: 1px dashed var(--line); }
.empty-state strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.empty-state p { color: var(--ink-600); }

/* Disciplines */
.disciplines-section { background: var(--paper); }
.discipline-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 280px; gap: 14px; }
.discipline-card { position: relative; grid-column: span 2; overflow: hidden; padding: 28px; color: var(--white); background: var(--ink-950); border: 0; text-align: left; cursor: pointer; }
.discipline-card:nth-child(1), .discipline-card:nth-child(2) { grid-column: span 3; }
.discipline-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(25deg, rgba(11,16,18,.9), rgba(11,16,18,.06) 72%); }
.discipline-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.discipline-card:hover img { transform: scale(1.05); }
.discipline-number, .discipline-title, .discipline-arrow { position: absolute; z-index: 2; }
.discipline-number { top: 25px; left: 28px; color: rgba(255,255,255,.66); font-size: 11px; font-weight: 800; }
.discipline-title { right: 70px; bottom: 25px; left: 28px; font-family: var(--serif); font-size: 30px; line-height: 1.05; }
.discipline-arrow { right: 28px; bottom: 28px; display: grid; width: 37px; height: 37px; place-items: center; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }

/* About and publishing journey */
.about-section { color: var(--white); background: var(--ink-950); }
.about-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.1fr); gap: 100px; align-items: center; }
.about-copy h2 { max-width: 540px; margin-bottom: 28px; }
.about-copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.65); font-family: var(--serif); font-size: 18px; }
.about-copy .button { margin-top: 14px; }
.principles { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.principle-card { min-height: 230px; padding: 30px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.principle-card > span { color: var(--gold-light); font-size: 11px; font-weight: 800; }
.principle-card h3 { margin: 38px 0 10px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.principle-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }

.journey-section { background: var(--paper); }
.journey-steps { display: grid; grid-template-columns: repeat(5, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey-steps li { position: relative; min-height: 250px; padding: 28px 22px; }
.journey-steps li + li { border-left: 1px solid var(--line); }
.journey-steps li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 39px; right: -12px; display: grid; width: 24px; height: 24px; place-items: center; color: var(--wine-700); background: var(--paper); font-size: 12px; }
.journey-steps span { display: grid; width: 42px; height: 42px; margin-bottom: 45px; place-items: center; color: var(--wine-700); border: 1px solid var(--wine-100); border-radius: 50%; font-family: var(--serif); }
.journey-steps strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.journey-steps p { margin: 0; color: var(--ink-600); font-size: 13px; }
.center-action { display: flex; margin-top: 34px; align-items: center; justify-content: center; gap: 24px; }
.center-action span { color: var(--ink-600); font-size: 12px; }

/* Archive */
.archive-section { background: var(--ivory); }
.archive-grid { display: grid; grid-template-columns: minmax(290px, .55fr) minmax(0, 1fr); gap: 100px; }
.archive-intro { position: sticky; top: 145px; align-self: start; }
.archive-intro h2 { margin-bottom: 24px; }
.archive-intro > p:not(.eyebrow) { max-width: 400px; color: var(--ink-600); font-family: var(--serif); font-size: 18px; }
.archive-list { border-top: 1px solid var(--ink-950); }
.archive-list details { border-bottom: 1px solid var(--line); }
.archive-list summary { display: flex; padding: 28px 2px; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; }
.archive-list summary::-webkit-details-marker { display: none; }
.archive-list summary span:first-child { font-family: var(--serif); font-size: 23px; }
.archive-list summary strong { display: inline-block; width: 80px; color: var(--wine-700); font-weight: 400; }
.archive-list summary span:last-child { color: var(--ink-600); font-size: 12px; }
.archive-list summary::after { content: "+"; font-family: var(--serif); font-size: 23px; }
.archive-list details[open] summary::after { content: "−"; }
.archive-detail { display: flex; padding: 0 36px 28px 82px; align-items: center; justify-content: space-between; }
.archive-detail span { font-weight: 700; }
.archive-detail p { margin: 2px 0 0; color: var(--ink-600); font-size: 12px; }
.archive-detail :where(button, a) { padding: 0; color: var(--wine-700); background: transparent; border: 0; font-weight: 700; cursor: pointer; }

/* Editorial board */
.board-section { background: var(--paper); }
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.board-card { min-height: 300px; padding: 28px; background: var(--ivory); border: 1px solid var(--line); }
.board-avatar { display: grid; width: 78px; height: 78px; margin-bottom: 50px; place-items: center; color: var(--white); background: var(--wine-800); border-radius: 50%; font-family: var(--serif); font-size: 24px; }
.board-card:nth-child(2) .board-avatar { background: var(--social); }
.board-card:nth-child(3) .board-avatar { background: var(--physical); }
.board-card:nth-child(4) .board-avatar { background: var(--earth); }
.board-card h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.2; }
.board-card p { margin-bottom: 16px; color: var(--ink-600); font-size: 13px; }
.board-card > span { color: var(--wine-700); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.board-quote { display: grid; grid-template-columns: 70px minmax(0, 1fr) 220px; gap: 30px; margin-top: 14px; padding: 44px 48px; align-items: center; color: var(--white); background: var(--wine-800); }
.board-quote > span { color: var(--gold-light); font-family: var(--serif); font-size: 88px; line-height: .7; }
.board-quote blockquote { margin: 0; font-family: var(--serif); font-size: 25px; line-height: 1.35; }
.board-quote cite { color: rgba(255,255,255,.65); font-size: 12px; font-style: normal; }

/* CTA and footer */
.cta-section { position: relative; overflow: hidden; padding-block: 110px; color: var(--white); background: linear-gradient(120deg, var(--wine-900), var(--wine-950)); text-align: center; }
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { max-width: 850px; margin: 0 auto 20px; font-size: clamp(52px, 6vw, 82px); }
.cta-inner > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 30px; color: rgba(255,255,255,.65); font-family: var(--serif); font-size: 18px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 28px; }
.cta-orbit { position: absolute; top: -290px; left: 50%; width: 760px; height: 760px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: translateX(-50%); }
.cta-orbit::before, .cta-orbit::after { content: ""; position: absolute; inset: 85px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-orbit::after { inset: 170px; }

.site-footer { color: rgba(255,255,255,.67); background: var(--ink-950); }
.footer-top { display: grid; grid-template-columns: 1.45fr repeat(3, .65fr); gap: 70px; padding-block: 78px; }
.footer-brand img { width: 295px; margin-bottom: 24px; }
.footer-brand p { max-width: 350px; color: rgba(255,255,255,.55); font-family: var(--serif); }
.footer-issn { color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .09em; }
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column h2 { margin-bottom: 10px; color: var(--white); font-family: var(--serif); font-size: 20px; font-weight: 400; }
.footer-column a, .footer-column button { width: fit-content; padding: 0; color: rgba(255,255,255,.6); background: none; border: 0; font-size: 13px; cursor: pointer; text-align: left; }
.footer-column a:hover, .footer-column button:hover { color: var(--gold-light); }
.footer-contact p { margin-bottom: 5px; font-size: 13px; }
.footer-bottom { display: flex; padding-block: 22px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }

/* Dialogs */
dialog {
  width: min(calc(100% - 32px), 900px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  color: var(--ink-950);
  background: var(--paper);
  border: 0;
  box-shadow: var(--shadow-lg);
}

dialog::backdrop { background: rgba(16, 12, 13, .73); backdrop-filter: blur(6px); }
.dialog-header { display: flex; padding: 30px 34px 22px; align-items: flex-start; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.dialog-header h2 { margin: 0; font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1; }
.dialog-header .eyebrow { margin-bottom: 6px; }
.dialog-close { display: grid; flex: 0 0 42px; width: 42px; height: 42px; padding: 0; place-items: center; color: var(--wine-900); background: var(--white); border: 1px solid rgba(77,16,26,.35); border-radius: 50%; box-shadow: 0 6px 18px rgba(16,26,29,.12); font-family: var(--serif); font-size: 28px; line-height: 1; cursor: pointer; }
.dialog-close:hover { color: var(--white); background: var(--wine-800); border-color: var(--wine-800); }

.search-dialog { max-width: 760px; }
.dialog-search-field { position: relative; display: block; margin: 28px 34px 18px; }
.dialog-search-field svg { position: absolute; top: 50%; left: 18px; color: var(--ink-600); transform: translateY(-50%); }
.dialog-search-field input { width: 100%; height: 58px; padding: 0 18px 0 50px; background: var(--ivory); border: 1px solid var(--line); }
.dialog-results { min-height: 180px; max-height: 440px; padding: 0 34px 34px; overflow-y: auto; }
.search-result { display: grid; grid-template-columns: 1fr auto; gap: 22px; padding: 20px 0; align-items: center; border-bottom: 1px solid var(--line); }
.search-result > a:first-child { text-align: left; }
.search-result small { display: block; margin-bottom: 4px; color: var(--wine-700); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.search-result strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.25; }
.search-result > span { color: var(--ink-600); font-size: 12px; }
.search-prompt { padding: 35px 0; color: var(--ink-600); text-align: center; }

.submit-dialog { width: min(calc(100% - 32px), 880px); }
.submit-shell { min-height: 690px; }
.prototype-notice { margin: 20px 34px 0; padding: 11px 14px; color: var(--wine-800); background: var(--wine-100); border-left: 3px solid var(--wine-700); font-size: 12px; }
.wizard-progress { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 25px 34px 0; list-style: none; border-bottom: 1px solid var(--line); }
.wizard-progress li { position: relative; padding: 0 0 15px; color: var(--ink-600); font-size: 12px; font-weight: 700; }
.wizard-progress li::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: transparent; }
.wizard-progress li.is-active { color: var(--wine-700); }
.wizard-progress li.is-active::after { background: var(--wine-700); }
.wizard-progress li span { display: inline-grid; width: 22px; height: 22px; margin-right: 7px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; }
.wizard-step { min-height: 365px; padding: 34px; }
.step-label { margin-bottom: 5px; color: var(--wine-700); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.wizard-step h3, .wizard-success h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.wizard-step > p:not(.step-label) { color: var(--ink-600); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.choice-card { min-height: 165px; padding: 20px; text-align: left; background: var(--paper); border: 1px solid var(--line); cursor: pointer; }
.choice-card > span { display: grid; width: 38px; height: 38px; margin-bottom: 24px; place-items: center; color: var(--wine-700); background: var(--wine-100); border-radius: 50%; font-size: 10px; font-weight: 800; }
.choice-card strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.choice-card small { color: var(--ink-600); }
.choice-card:hover, .choice-card.is-selected { background: var(--ivory); border-color: var(--wine-700); box-shadow: inset 0 0 0 1px var(--wine-700); }
.choice-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.choice-list button { display: grid; min-height: 56px; padding: 12px 15px; grid-template-columns: 12px 1fr auto; gap: 12px; align-items: center; text-align: left; background: var(--paper); border: 1px solid var(--line); cursor: pointer; }
.choice-list button:hover, .choice-list button.is-selected { border-color: var(--wine-700); box-shadow: inset 0 0 0 1px var(--wine-700); }
.choice-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wine-700); }
.choice-dot.medicine { background: var(--medicine); }
.choice-dot.physical { background: var(--physical); }
.choice-dot.social { background: var(--social); }
.choice-dot.life { background: var(--life); }
.choice-dot.earth { background: var(--earth); }
.review-card { margin-top: 24px; border-top: 1px solid var(--line); }
.review-card > div { display: grid; grid-template-columns: 160px 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); }
.review-card span { color: var(--ink-600); font-size: 12px; }
.review-card strong { font-size: 13px; }
.wizard-actions { display: flex; padding: 20px 34px 28px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.wizard-actions .text-link:disabled { opacity: .35; cursor: not-allowed; }
.wizard-success { padding: 80px 34px; text-align: center; }
.success-mark { display: grid; width: 66px; height: 66px; margin: 0 auto 20px; place-items: center; color: var(--white); background: var(--life); border-radius: 50%; font-size: 28px; }
.wizard-success p { max-width: 470px; margin: 0 auto 24px; color: var(--ink-600); }

.toast { position: fixed; z-index: 1000; right: 24px; bottom: 24px; max-width: 390px; padding: 14px 18px; color: var(--white); background: var(--ink-950); box-shadow: var(--shadow-lg); font-size: 13px; }

/* Responsive */
@media (max-width: 1160px) {
  .brand { flex-basis: 235px; }
  .brand img { width: 235px; }
  .desktop-nav { gap: 18px; font-size: 13px; }
  .header-actions .button { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .72fr); gap: 42px; }
  .about-grid, .archive-grid { gap: 60px; }
  .footer-top { gap: 40px; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .prototype-bar { text-align: center; }
  .utility-points span:nth-child(2) { display: none; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .header-actions .button { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 70px 45px; }
  .hero-copy h1 { font-size: clamp(58px, 11vw, 88px); }
  .hero-feature { width: min(100%, 560px); min-height: 510px; margin-left: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .split-heading > p { max-width: 630px; }
  .issue-layout { grid-template-columns: 285px 1fr; gap: 42px; }
  .issue-cover { min-height: 470px; }
  .cover-title strong { font-size: 39px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .discipline-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; }
  .discipline-card, .discipline-card:nth-child(1), .discipline-card:nth-child(2) { grid-column: span 1; }
  .discipline-card:last-child { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: 670px; }
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .journey-steps li { min-height: 210px; border-bottom: 1px solid var(--line); }
  .journey-steps li + li { border-left: 0; }
  .journey-steps li:nth-child(even) { border-left: 1px solid var(--line); }
  .journey-steps li:not(:last-child)::after { display: none; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-intro { position: static; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .board-quote { grid-template-columns: 60px 1fr; }
  .board-quote cite { grid-column: 2; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 82px; }
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .prototype-bar { display: block; padding: 5px 12px; font-size: 10px; line-height: 1.45; }
  .prototype-bar span { display: none; }
  .utility-inner { min-height: 32px; }
  .utility-points { gap: 12px; }
  .utility-points span:nth-child(3) { display: none; }
  .header-inner { min-height: 68px; }
  .brand { flex-basis: 190px; }
  .brand img { width: 190px; }
  .icon-button, .menu-button { width: 38px; height: 38px; }
  .hero-grid { min-height: auto; padding-top: 55px; }
  .hero-copy h1 { margin-bottom: 22px; font-size: clamp(51px, 15vw, 70px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-proof { margin-top: 38px; }
  .hero-proof div { padding: 15px 8px 0 0; }
  .hero-proof div + div { padding-left: 10px; }
  .hero-proof strong { font-size: 20px; }
  .hero-proof span { font-size: 9px; }
  .hero-feature { min-height: 455px; border-radius: 140px 140px 5px 5px; }
  .hero-feature-content { right: 24px; bottom: 26px; left: 24px; }
  .hero-feature-content h2 { font-size: 31px; }
  .issue-stamp { top: 24px; left: 24px; }
  .hero-footnote { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 88px; padding: 20px 10px; }
  .trust-grid > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding-block: 78px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about-copy h2, .archive-intro h2, .cta-inner h2 { font-size: 43px; }
  .issue-layout { grid-template-columns: 1fr; }
  .issue-cover { width: min(100%, 330px); min-height: 480px; margin-inline: auto; }
  .issue-row { grid-template-columns: 31px 1fr; gap: 13px; }
  .issue-row .round-arrow { display: none; }
  .issue-row-main h3 a { font-size: 22px; }
  .issue-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .browse-section .split-heading { margin-bottom: 28px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 320px; }
  .discipline-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .discipline-card, .discipline-card:nth-child(1), .discipline-card:nth-child(2), .discipline-card:last-child { flex: 0 0 82vw; min-height: 260px; grid-column: auto; scroll-snap-align: center; }
  .principles { grid-template-columns: 1fr; }
  .principle-card { min-height: 190px; }
  .principle-card h3 { margin-top: 25px; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-steps li, .journey-steps li:nth-child(even) { min-height: auto; padding: 24px 0; border-left: 0; }
  .journey-steps span { margin-bottom: 20px; }
  .center-action { align-items: flex-start; flex-direction: column; }
  .archive-list summary { align-items: flex-start; flex-direction: column; gap: 5px; }
  .archive-list summary::after { position: absolute; right: 18px; }
  .archive-detail { padding-left: 25px; }
  .board-grid { grid-template-columns: 1fr; }
  .board-card { min-height: 260px; }
  .board-avatar { margin-bottom: 35px; }
  .board-quote { grid-template-columns: 1fr; padding: 32px 26px; gap: 15px; }
  .board-quote blockquote { font-size: 22px; }
  .board-quote cite { grid-column: auto; }
  .cta-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
  .dialog-header { padding: 24px 20px 18px; }
  .dialog-header h2 { font-size: 31px; }
  .dialog-search-field { margin: 22px 20px 16px; }
  .dialog-results { padding: 0 20px 24px; }
  .submit-shell { min-height: auto; }
  .prototype-notice, .wizard-progress { margin-right: 20px; margin-left: 20px; }
  .wizard-progress li { font-size: 0; }
  .wizard-progress li span { font-size: 10px; }
  .wizard-step { min-height: 460px; padding: 28px 20px; }
  .choice-grid, .choice-list { grid-template-columns: 1fr; }
  .choice-card { min-height: 118px; }
  .choice-card > span { float: left; margin: 0 16px 50px 0; }
  .review-card > div { grid-template-columns: 115px 1fr; }
  .wizard-actions { padding: 18px 20px 22px; }
  .wizard-success { padding: 70px 22px; }
  .toast { right: 10px; bottom: 10px; left: 10px; max-width: none; }
}
