:root {
  --ink: #17322c;
  --muted: #5c6965;
  --paper: #f3efe5;
  --paper-deep: #e8e0d1;
  --sea: #173f48;
  --terracotta: #a65237;
  --gold: #c99a4b;
  --line: rgba(23, 50, 44, 0.18);
  --white: #fffdf8;
  --shadow: 0 18px 60px rgba(22, 43, 38, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}
button, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: var(--terracotta); text-underline-offset: 4px; }
main { scroll-margin-top: 24px; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-family: Arial, sans-serif;
  font-size: .82rem;
  font-weight: bold;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
section[id] { scroll-margin-top: 28px; }

.hero {
  min-height: 72vh;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(16, 48, 48, 0.97), rgba(19, 67, 76, 0.76)),
    radial-gradient(circle at 78% 28%, rgba(201, 154, 75, 0.42), transparent 33%),
    var(--sea);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -50% 20%;
  height: 76%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
  transform: rotate(-8deg);
}
.topbar {
  max-width: 1200px;
  margin: auto;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.brand {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: .04em;
}
.site-menu { display: flex; gap: 4px; align-items: center; font-family: Arial, sans-serif; }
.menu-home, .menu-group summary {
  display: block;
  color: rgba(255,255,255,.75);
  border: 1px solid transparent;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .78rem;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  min-height: 38px;
}
.menu-group { position: relative; }
.menu-group summary::-webkit-details-marker { display: none; }
.menu-group summary::after { content: "⌄"; display: inline-block; margin-left: 6px; color: #e1bc77; }
.menu-home:hover, .menu-group summary:hover, .menu-home.is-current, .menu-group summary.is-current, .menu-group[open] summary {
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 265px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: var(--shadow);
  z-index: 20;
}
.wide-submenu { width: 310px; }
.submenu::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 20px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.submenu-title {
  display: block;
  padding: 10px 10px 6px;
  color: var(--terracotta);
  font-size: .62rem;
  font-weight: bold;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.submenu a {
  display: block;
  padding: 10px;
  color: var(--ink);
  border-radius: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  line-height: 1.25;
  text-decoration: none;
}
.submenu a:hover { color: var(--terracotta); background: var(--paper); }
.menu-toggle {
  display: none;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
}
.mode-nav {
  max-width: 1200px;
  margin: -24px auto 0;
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 3;
  background: var(--ink);
  border-radius: 5px;
  box-shadow: var(--shadow);
}
.nav-button {
  color: rgba(255,255,255,.72);
  border: 1px solid transparent;
  background: transparent;
  padding: 9px 13px;
  border-radius: 999px;
}
.nav-button:hover, .nav-button.is-active {
  color: white;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 11vh 28px 12vh;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.hero .eyebrow { color: #e1bc77; }
.hero-official-name { max-width: 760px; line-height: 1.55; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: normal;
}
.hero-subject, .hero-thesis { display: block; }
.hero-subject {
  margin-bottom: 20px;
  color: #e1bc77;
  font-family: Arial, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: bold;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-intro {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}
.hero-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-meta span {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 8px 13px;
  font-family: Arial, sans-serif;
  font-size: .75rem;
  color: rgba(255,255,255,.78);
}

main, footer { max-width: 1200px; margin: auto; }
.home-visual {
  max-width: 1200px;
  margin: -42px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 3;
}
.home-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.home-visual figcaption {
  padding: 18px 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  font-size: .92rem;
  line-height: 1.55;
}
.home-visual figcaption strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 1.08rem; font-weight: normal; }
.entrance-portal { padding: 76px 28px 68px; }
.portal-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  column-gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}
.portal-intro .eyebrow { grid-column: 1 / -1; }
.portal-intro h2 { max-width: 700px; }
.portal-intro > p:last-child { margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.portal-card {
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--terracotta);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.portal-card:nth-child(3), .portal-card:nth-child(4) { border-top-color: var(--sea); }
.presidency-portal-card { border-top-color: var(--gold); }
.future-portal-card { border-top-color: var(--sea); }
.portal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.portal-card span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .13em; text-transform: uppercase; }
.portal-card strong { margin: 32px 0 12px; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: normal; line-height: 1.05; }
.portal-card p { color: var(--muted); line-height: 1.55; }
.portal-card em { margin-top: auto; color: var(--terracotta); font-family: Arial, sans-serif; font-size: .75rem; font-style: normal; font-weight: bold; }
.view { padding: 90px 28px; }
.is-hidden { display: none; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -.045em;
  margin-bottom: 0;
}
.section-heading > p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.timeline-nav {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 0 0 20px;
  scrollbar-color: var(--terracotta) transparent;
}
.moment-button {
  flex: 0 0 auto;
  min-width: 114px;
  padding: 16px 14px;
  text-align: left;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.moment-button strong, .moment-button span { display: block; }
.moment-button strong { color: var(--ink); font-size: 1rem; }
.moment-button span {
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: .65rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.moment-button:hover, .moment-button.is-active {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.moment-button.is-active strong, .moment-button:hover strong { color: var(--white); }

.event-detail {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(210px, .72fr) 1.7fr;
  min-height: 500px;
}
.event-side {
  padding: 42px 32px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-side .period { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -.06em; }
.event-side .era {
  font-family: Arial, sans-serif;
  color: #e2bd7c;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-main { padding: 50px; }
.event-main h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: normal;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.fact { color: var(--muted); font-size: 1.12rem; line-height: 1.72; }
.detail-label {
  font-family: Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.meaning, .question, .caution {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  line-height: 1.62;
}
.question { font-size: 1.35rem; }
.caution { color: var(--muted); font-size: .93rem; }
.source-link {
  display: inline-block;
  margin-top: 30px;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: bold;
}
.reflection {
  margin-top: 38px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.reflection > p { color: var(--muted); font-size: .9rem; margin: 8px 0 16px; }
textarea {
  width: 100%;
  resize: vertical;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  line-height: 1.5;
}
.reflection-actions { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.reflection-actions span { color: var(--muted); font-family: Arial, sans-serif; font-size: .72rem; }
.action-button {
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
  padding: 11px 16px;
  border-radius: 3px;
}
.action-button.secondary { background: transparent; color: var(--terracotta); }
.action-button:disabled { opacity: .35; cursor: default; }

.guided-progress { margin-bottom: 20px; font-family: Arial, sans-serif; color: var(--muted); font-size: .75rem; }
.progress-track { height: 3px; margin-top: 10px; background: var(--paper-deep); }
.progress-track span { display: block; height: 100%; background: var(--terracotta); transition: width .25s ease; }
.guided-card {
  padding: clamp(34px, 7vw, 78px);
  color: var(--white);
  background: var(--sea);
  box-shadow: var(--shadow);
}
.guided-period { color: #e2bd7c; font-family: Arial, sans-serif; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.guided-card h3 { max-width: 800px; font-size: clamp(2.4rem, 6vw, 5.6rem); font-weight: normal; line-height: 1; letter-spacing: -.05em; }
.guided-fact { max-width: 760px; color: rgba(255,255,255,.74); font-size: 1.08rem; line-height: 1.7; }
.guided-card blockquote { max-width: 820px; margin: 38px 0; padding-left: 24px; border-left: 3px solid var(--gold); font-size: clamp(1.3rem, 3vw, 2.1rem); line-height: 1.4; }
.guided-question { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.guided-question .detail-label { color: #e2bd7c; }
.guided-question p { max-width: 760px; margin: 9px 0 0; font-size: 1.13rem; line-height: 1.6; }
.guided-actions { display: flex; justify-content: space-between; margin-top: 18px; }

.compare-selectors {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.compare-selectors label {
  display: grid;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
select {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}
.compare-arrow { font-size: 2rem; color: var(--terracotta); padding-bottom: 7px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card {
  padding: 34px;
  background: var(--white);
  border-top: 5px solid var(--terracotta);
  box-shadow: var(--shadow);
}
.compare-card h3 { font-size: 2rem; font-weight: normal; }
.compare-card .period { color: var(--terracotta); font-size: 1.2rem; }
.compare-card p { line-height: 1.6; }
.comparison-insight {
  margin-top: 24px;
  padding: 26px 30px;
  color: var(--white);
  background: var(--sea);
  font-size: 1.22rem;
  line-height: 1.6;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.about-copy { color: var(--muted); font-size: 1.12rem; line-height: 1.72; }
.thesis { color: var(--ink); font-size: 1.5rem; }
.about-links { display: grid; gap: 12px; justify-items: start; }
.narrative-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 70px;
}
.narrative-strip article { padding: 24px; background: var(--white); border-top: 3px solid var(--terracotta); }
.narrative-strip span { color: var(--terracotta); font-family: Arial, sans-serif; }
.narrative-strip h3 { margin: 20px 0 8px; font-size: 1.5rem; font-weight: normal; }
.narrative-strip p { margin: 0; color: var(--muted); line-height: 1.55; }
footer {
  padding: 34px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .72rem;
}

.study-hero {
  color: var(--white);
  background: var(--ink);
}
.experience-hero {
  background:
    radial-gradient(circle at 78% 30%, rgba(180, 74, 45, .42), transparent 32%),
    linear-gradient(135deg, #263b38, var(--ink) 68%);
}
.study-hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 11vh 28px 13vh;
}
.study-hero-content h1 { max-width: 1000px; }
.study-hero-content > p:last-child { max-width: 680px; color: rgba(255,255,255,.74); font-size: 1.2rem; line-height: 1.65; }
.study-main { max-width: 900px; }
.study-article { padding: 70px 28px 100px; }
.study-article section { margin-bottom: 74px; }
.study-article h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 5vw, 4rem); }
.study-article p, .study-list { color: var(--muted); font-size: 1.1rem; line-height: 1.75; }
.study-thesis, .study-conclusion { padding: 42px; background: var(--white); box-shadow: var(--shadow); }
.study-article blockquote { margin: 0; color: var(--ink); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.45; }
.movement-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.movement-list li { display: grid; grid-template-columns: 1fr 1.6fr; gap: 30px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.movement-list span { color: var(--muted); line-height: 1.55; }
.study-list li { margin-bottom: 12px; }
.study-return { display: inline-block; margin-top: 32px; text-decoration: none; }
.next-reading { padding: 42px; border: 1px solid var(--line); }
.next-reading .study-return { margin-top: 12px; }
.study-lenses { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.study-lenses article { padding: 26px; background: var(--white); border-top: 4px solid var(--terracotta); }
.study-lenses span, .study-lenses strong { display: block; }
.study-lenses span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .12em; }
.study-lenses strong { margin-top: 24px; font-size: 1.55rem; font-weight: normal; }
.study-lenses p { margin-bottom: 0; font-size: .98rem; line-height: 1.6; }
.study-reading-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.study-reading-grid a { min-height: 230px; padding: 25px; display: flex; flex-direction: column; color: var(--ink); background: var(--white); border-top: 4px solid var(--sea); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.study-reading-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.study-reading-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .12em; text-transform: uppercase; }
.study-reading-grid strong { margin-top: 28px; font-size: 1.45rem; font-weight: normal; line-height: 1.15; }
.study-reading-grid em { margin-top: auto; color: var(--terracotta); font-family: Arial, sans-serif; font-size: .7rem; font-style: normal; font-weight: bold; }

.essay-hero {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(23, 50, 44, .98), rgba(61, 56, 43, .83)),
    radial-gradient(circle at 76% 34%, rgba(201, 154, 75, .45), transparent 30%),
    var(--ink);
}
.essay-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .55fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.essay-hero-grid h1 { font-size: clamp(3.2rem, 7vw, 7rem); }
.camoes-portrait { margin: 0; position: relative; }
.camoes-portrait::before {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid rgba(225, 188, 119, .52);
}
.camoes-portrait img {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.camoes-portrait figcaption {
  margin-top: 18px;
  color: rgba(255,255,255,.65);
  font-family: Arial, sans-serif;
  font-size: .68rem;
  line-height: 1.55;
}
.camoes-portrait figcaption strong { display: block; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: normal; }
.camoes-portrait figcaption a { color: #e1bc77; }
.quiet-link { color: rgba(255,255,255,.76); text-decoration: none; }
.essay-main { max-width: 1200px; display: grid; grid-template-columns: 230px minmax(0, 900px); gap: 40px; align-items: start; }
.essay-map { position: sticky; top: 24px; padding: 72px 0 0 28px; display: grid; gap: 13px; }
.essay-map a { color: var(--muted); text-decoration: none; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.essay-map a:hover { color: var(--terracotta); }
.experience-map a.is-active { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.experience-content { min-width: 0; }
.experience-content .view { padding: 72px 28px 100px 0; }
.essay-article { padding-left: 0; }
.essay-opening { padding-top: 16px; }
.essay-opening blockquote { font-size: clamp(1.9rem, 4vw, 3.25rem); }
.dual-cards, .reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.dual-cards article, .reason-grid article { padding: 28px; background: var(--white); border-top: 4px solid var(--terracotta); }
.dual-cards span, .reason-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .75rem; }
.dual-cards h3, .reason-grid h3 { margin: 24px 0 10px; font-size: 1.6rem; font-weight: normal; }
.dual-cards p, .reason-grid p { margin-bottom: 0; font-size: 1rem; }
.visual-story { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.visual-card { margin: 0; background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.visual-card img { display: block; width: 100%; height: 380px; object-fit: cover; object-position: center top; filter: sepia(.12); }
.visual-card figcaption { padding: 26px; }
.visual-card figcaption span, .visual-card figcaption strong { display: block; }
.visual-card figcaption span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .13em; text-transform: uppercase; }
.visual-card figcaption strong { margin-top: 14px; font-size: 1.45rem; font-weight: normal; }
.visual-card figcaption p { margin: 12px 0; font-size: .98rem; line-height: 1.6; }
.visual-card figcaption a { font-family: Arial, sans-serif; font-size: .7rem; font-weight: bold; }
.book-card img { object-fit: contain; padding: 22px; background: var(--paper-deep); }
.parade-card { grid-column: span 2; display: grid; grid-template-columns: 1.45fr 1fr; }
.parade-card img { height: 100%; min-height: 330px; }
.dark-section { margin-left: -40px; padding: 54px 40px; color: var(--white); background: var(--sea); box-shadow: var(--shadow); }
.dark-section h2 { max-width: 720px; }
.dark-section > p { color: rgba(255,255,255,.76); }
.dark-section blockquote { padding-left: 24px; border-left: 3px solid var(--gold); color: var(--white); }
.reading-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 32px 0; }
.reading-paths p { padding: 20px; color: var(--ink); background: var(--paper); }
.reading-paths strong, .reading-paths span { display: block; }
.reading-paths span { margin-top: 8px; color: var(--muted); line-height: 1.5; }
.reason-grid { grid-template-columns: repeat(3, 1fr); }
.reason-grid article:last-child { grid-column: span 2; }
.essay-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.editorial-visual { margin: -24px 0 74px; background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.editorial-visual img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.editorial-visual figcaption { display: grid; grid-template-columns: minmax(180px, .7fr) 1.3fr; gap: 28px; padding: 24px 28px; border-top: 4px solid var(--gold); }
.editorial-visual strong { font-size: 1.2rem; font-weight: normal; line-height: 1.35; }
.editorial-visual span { color: var(--muted); font-size: .95rem; line-height: 1.6; }

.community-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(225, 188, 119, .22), transparent 28%),
    linear-gradient(125deg, #17322c, #164c55);
  overflow: hidden;
}
.community-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}
.community-hero-grid h1 { font-size: clamp(3.2rem, 7vw, 7rem); }
.network-visual { min-height: 390px; position: relative; }
.network-visual::before, .network-visual::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.network-visual::after { width: 210px; height: 210px; border-color: rgba(225,188,119,.32); }
.network-center, .network-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
  font-family: Arial, sans-serif;
}
.network-center {
  width: 112px;
  height: 112px;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  color: var(--ink);
  background: #e1bc77;
  font-weight: bold;
}
.network-node { width: 76px; height: 76px; color: var(--white); border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.07); font-size: .7rem; }
.node-a { top: 2%; left: 42%; }
.node-b { top: 24%; right: 0; }
.node-c { bottom: 4%; right: 14%; }
.node-d { bottom: 6%; left: 8%; }
.node-e { top: 25%; left: 0; }
.community-stat { display: grid; grid-template-columns: .8fr 1.4fr; gap: 30px; align-items: center; margin: 32px 0; padding: 34px; background: var(--white); border-left: 5px solid var(--terracotta); box-shadow: var(--shadow); }
.community-stat strong { color: var(--terracotta); font-size: clamp(3rem, 6vw, 5rem); font-weight: normal; letter-spacing: -.06em; }
.community-stat p { margin: 0; }
.definition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.definition-grid article { padding: 24px; border: 1px solid var(--line); }
.definition-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .7rem; }
.definition-grid h3 { margin: 18px 0 8px; font-size: 1.45rem; font-weight: normal; }
.definition-grid p { margin: 0; font-size: .98rem; }
.belonging-map { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.belonging-map article { padding: 18px; background: rgba(165, 86, 58, .08); border-top: 3px solid var(--terracotta); }
.belonging-map strong, .belonging-map span { display: block; }
.belonging-map strong { color: var(--ink); font-size: 1.05rem; font-weight: normal; }
.belonging-map span { margin-top: 8px; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.source-note { margin-top: 18px; font-family: Arial, sans-serif; font-size: .75rem !important; }
.territory-section { margin-left: -40px; padding: 54px 40px; background: var(--white); box-shadow: var(--shadow); }
.relation-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0; }
.relation-paths article { padding: 24px; background: var(--paper); }
.relation-paths strong, .relation-paths span { display: block; }
.relation-paths strong { font-size: 1.3rem; font-weight: normal; }
.relation-paths span { margin-top: 9px; color: var(--muted); line-height: 1.55; }
.territory-section blockquote { padding-left: 24px; border-left: 3px solid var(--gold); }
.tension-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; }
.tension-grid article { padding: 30px; color: var(--white); background: var(--ink); }
.tension-grid article:last-child { background: var(--terracotta); }
.tension-grid span, .tension-grid strong { display: block; }
.tension-grid span { margin-bottom: 20px; color: rgba(255,255,255,.68); font-family: Arial, sans-serif; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.tension-grid strong { font-size: 1.7rem; font-weight: normal; line-height: 1.25; }
.community-atlas { margin-left: -40px; padding: 54px 40px; background: var(--white); box-shadow: var(--shadow); }
.community-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.community-case-grid article { padding: 24px; background: var(--paper); border-top: 4px solid var(--gold); }
.community-case-grid article:last-child { grid-column: span 3; }
.community-case-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .12em; text-transform: uppercase; }
.community-case-grid h3 { margin: 18px 0 10px; font-size: 1.45rem; font-weight: normal; line-height: 1.25; }
.community-case-grid p { margin-bottom: 0; font-size: .98rem; line-height: 1.6; }
.experience-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.experience-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.experience-list > li > span { color: var(--terracotta); font-family: Arial, sans-serif; }
.experience-list strong { font-size: 1.4rem; font-weight: normal; }
.experience-list p { margin: 7px 0 0; font-size: 1rem; }
.testimony-rules { padding: 42px; background: var(--white); border-left: 5px solid var(--gold); box-shadow: var(--shadow); }
.testimony-rules ul { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.testimony-rules li { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 1.03rem; line-height: 1.6; }
.testimony-rules strong { color: var(--ink); font-weight: normal; }
.community-conclusion { border-top: 6px solid var(--terracotta); }
.question-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.question-cloud span { padding: 9px 13px; color: var(--terracotta); border: 1px solid var(--line); border-radius: 999px; font-family: Arial, sans-serif; font-size: .72rem; }

.voices-hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23,50,44,.98), rgba(41,62,72,.88)),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,255,255,.04) 80px 81px),
    var(--ink);
}
.voices-hero-content { max-width: 1200px; padding-top: 13vh; }
.voices-hero-content h1 { max-width: 1080px; font-size: clamp(3.1rem, 7vw, 7rem); }
.presidency-path { margin-top: 38px; border-top: 1px solid var(--line); }
.presidency-path article { display: grid; grid-template-columns: 220px 1fr; gap: 38px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.presidency-marker span, .presidency-marker strong { display: block; }
.presidency-marker span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .13em; }
.presidency-marker strong { margin-top: 10px; font-size: 1.25rem; font-weight: normal; }
.presidency-path h3 { margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: normal; line-height: 1.1; }
.presidency-path p { margin-bottom: 12px; font-size: 1rem; }
.presidency-path em { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .72rem; font-style: normal; font-weight: bold; }
.presidency-reading-grid { padding: 44px; background: var(--white); box-shadow: var(--shadow); }
.presidency-reading-grid > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 32px; }
.presidency-reading-grid article { padding: 20px; background: var(--paper); border-top: 4px solid var(--terracotta); }
.presidency-reading-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .66rem; font-weight: bold; letter-spacing: .12em; }
.presidency-reading-grid h3 { margin: 20px 0 10px; font-size: 1.28rem; font-weight: normal; line-height: 1.25; }
.presidency-reading-grid p { margin: 0; font-size: .9rem; line-height: 1.55; }
.speech-keywords { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 38px; }
.speech-keywords span { padding: 10px 15px; color: #e1bc77; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-family: Arial, sans-serif; font-size: .72rem; }
.presidency-bridge { margin-left: -40px; padding: 54px 40px; background: var(--white); box-shadow: var(--shadow); }
.presidency-bridge > div, .ceremony-reading > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.presidency-bridge article, .ceremony-reading article { padding: 26px; background: var(--paper); border-top: 4px solid var(--gold); }
.presidency-bridge strong, .presidency-bridge span, .ceremony-reading strong, .ceremony-reading span { display: block; }
.presidency-bridge strong, .ceremony-reading strong { font-size: 1.35rem; font-weight: normal; }
.presidency-bridge span, .ceremony-reading span { margin-top: 10px; color: var(--muted); font-size: .96rem; line-height: 1.55; }
.absence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.absence-grid article { padding: 26px; background: var(--white); border-top: 4px solid var(--terracotta); box-shadow: var(--shadow); }
.absence-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .7rem; }
.absence-grid p { margin: 20px 0 0; color: var(--ink); font-size: 1.25rem; line-height: 1.45; }
.presidential-speech-section h2 { margin-bottom: 22px; }
.document-note { padding-left: 18px; border-left: 3px solid var(--gold); }
.official-document { width: 100%; height: min(78vh, 900px); margin: 28px 0 30px; border: 1px solid var(--line); background: var(--white); }

.sources-hero {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(23,50,44,.98), rgba(63,72,60,.88)),
    repeating-linear-gradient(90deg, transparent 0 65px, rgba(255,255,255,.04) 66px 67px),
    var(--ink);
}
.sources-hero-content { padding-top: 13vh; }
.sources-hero-content h1 { font-size: clamp(3.7rem, 9vw, 8rem); }
.method-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 32px 0; }
.method-levels article { padding: 26px; background: var(--white); border-top: 4px solid var(--terracotta); }
.method-levels span, .source-list span, .bibliography-list span, .credit-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .12em; text-transform: uppercase; }
.method-levels h3, .source-list h3, .bibliography-list h3 { margin: 22px 0 10px; font-size: 1.45rem; font-weight: normal; line-height: 1.25; }
.method-levels p { margin-bottom: 0; font-size: .98rem; }
.source-rules { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.source-rules li { padding: 18px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 1.08rem; line-height: 1.55; }
.source-list, .bibliography-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.source-list article, .bibliography-list article { padding: 25px; background: var(--white); border-top: 4px solid var(--terracotta); }
.source-list span { color: #e1bc77; }
.source-list h3 { color: var(--ink); }
.source-list p, .bibliography-list p { margin-bottom: 18px; color: var(--muted); font-size: .96rem; line-height: 1.6; }
.source-list a, .bibliography-list a, .credit-grid a { font-family: Arial, sans-serif; font-size: .7rem; font-weight: bold; }
.bibliography-list article { border-top-color: var(--sea); }
.credit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.credit-grid article { display: grid; grid-template-columns: 130px 1fr; min-height: 180px; background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.credit-grid img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.credit-grid div { padding: 22px; }
.credit-grid p { margin: 14px 0; font-size: .94rem; line-height: 1.55; }
.credit-grid .original-credit { grid-column: 1 / -1; grid-template-columns: 240px 1fr; }
.credit-grid .generated-credit { grid-template-columns: 150px 1fr; }
.sources-conclusion { border-top: 6px solid var(--gold); }

.project-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 32%, rgba(225,188,119,.24), transparent 28%),
    linear-gradient(120deg, rgba(23,50,44,.98), rgba(58,69,61,.9)),
    var(--ink);
}
.project-hero-content { max-width: 1150px; padding-top: 14vh; }
.project-hero-content h1 { max-width: 980px; font-size: clamp(3.4rem, 8vw, 7.4rem); }
.project-hero-content > p:last-child { max-width: 760px; color: rgba(255,255,255,.76); font-size: 1.22rem; line-height: 1.65; }
.project-origin { margin-left: -40px; padding: 54px 40px; background: var(--white); box-shadow: var(--shadow); }
.project-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 34px; }
.project-steps article { padding: 24px; background: var(--paper); border-top: 4px solid var(--terracotta); }
.project-steps span, .format-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .12em; text-transform: uppercase; }
.project-steps strong { display: block; margin: 22px 0 10px; font-size: 1.45rem; font-weight: normal; }
.project-steps p { margin: 0; font-size: .95rem; line-height: 1.55; }
.format-grid-section { margin-left: -40px; padding: 54px 40px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.format-grid-section h2 { color: var(--white); }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.format-grid article { padding: 26px; background: rgba(255,255,255,.07); border-top: 4px solid var(--gold); }
.format-grid h3 { margin: 22px 0 10px; color: var(--white); font-size: 1.5rem; font-weight: normal; }
.format-grid p { color: rgba(255,255,255,.72); font-size: .96rem; line-height: 1.6; }
.format-grid a { color: #e1bc77; font-family: Arial, sans-serif; font-size: .72rem; font-weight: bold; }
.growth-section { padding: 42px; background: var(--white); border-left: 5px solid var(--gold); box-shadow: var(--shadow); }
.growth-list { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.growth-list li { display: grid; grid-template-columns: 210px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.growth-list strong { color: var(--ink); font-size: 1.2rem; font-weight: normal; }
.growth-list span { color: var(--muted); line-height: 1.55; }
.project-conclusion { border-top: 6px solid var(--terracotta); }

.future-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 35%, rgba(225,188,119,.25), transparent 28%),
    linear-gradient(120deg, #17322c, #38564d);
}
.future-hero-content { max-width: 1200px; padding-top: 13vh; }
.future-hero-content h1 { max-width: 1000px; font-size: clamp(3.3rem, 8vw, 7.5rem); }
.hero-with-thumb { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: clamp(34px, 6vw, 86px); align-items: center; }
.hero-with-thumb .hero-copy { min-width: 0; }
.hero-with-thumb .hero-copy > p:last-child { max-width: 680px; color: rgba(255,255,255,.74); font-size: 1.2rem; line-height: 1.65; }
.hero-thumbnail { margin: 0; align-self: center; position: relative; }
.hero-thumbnail::before { content: ""; position: absolute; inset: -12px 14px 14px -12px; border: 1px solid rgba(225,188,119,.45); }
.hero-thumbnail img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; position: relative; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.hero-thumbnail figcaption { margin-top: 15px; color: rgba(255,255,255,.72); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .12em; text-transform: uppercase; }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.principle-grid article { padding: 27px; background: var(--white); border-top: 4px solid var(--terracotta); box-shadow: var(--shadow); }
.principle-grid article:last-child { grid-column: 1 / -1; }
.principle-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .7rem; }
.principle-grid h3 { margin: 20px 0 9px; font-size: 1.6rem; font-weight: normal; }
.principle-grid p { margin: 0; font-size: .98rem; }
.annual-question { margin-left: -40px; padding: 54px 40px; background: var(--white); box-shadow: var(--shadow); }
.question-list { margin-top: 30px; border-top: 1px solid var(--line); }
.question-list p { margin: 0; padding: 22px 0; color: var(--ink); border-bottom: 1px solid var(--line); font-size: clamp(1.25rem, 2.5vw, 1.8rem); line-height: 1.35; }
.annual-cycle { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 34px; }
.annual-cycle article { min-height: 230px; padding: 20px; background: var(--white); border-top: 4px solid var(--terracotta); }
.annual-cycle span, .annual-cycle strong { display: block; }
.annual-cycle span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .66rem; font-weight: bold; letter-spacing: .1em; text-transform: uppercase; }
.annual-cycle strong { margin: 25px 0 10px; font-size: 1.35rem; font-weight: normal; }
.annual-cycle p { margin: 0; font-size: .9rem; line-height: 1.55; }
.component-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 38px; }
.component-cloud span { padding: 11px 15px; color: #e1bc77; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; font-family: Arial, sans-serif; font-size: .72rem; }
.pilot-card { margin-top: 34px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.pilot-card div { display: grid; grid-template-columns: 160px 1fr; gap: 30px; padding: 25px 28px; border-bottom: 1px solid var(--line); }
.pilot-card div:last-child { border-bottom: 0; }
.pilot-card span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .1em; text-transform: uppercase; }
.pilot-card strong { font-size: 1.25rem; font-weight: normal; line-height: 1.4; }
.future-conclusion { border-top: 6px solid var(--gold); }

.cities-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 45%, rgba(225,188,119,.28), transparent 25%),
    repeating-radial-gradient(circle at 70% 45%, transparent 0 75px, rgba(255,255,255,.055) 76px 77px),
    linear-gradient(120deg, #17322c, #174854);
}
.cities-hero-content { max-width: 1200px; padding-top: 13vh; }
.cities-hero-content h1 { max-width: 1000px; font-size: clamp(3.5rem, 8vw, 7.6rem); }
.cities-main { max-width: 1000px; }
.city-years { display: flex; gap: 7px; margin: 30px 0 18px; padding-bottom: 12px; overflow-x: auto; }
.city-years button { flex: 0 0 auto; padding: 10px 13px; color: var(--muted); background: transparent; border: 1px solid var(--line); }
.city-years button:hover, .city-years button.is-active { color: var(--white); background: var(--terracotta); border-color: var(--terracotta); }
.city-detail { min-height: 380px; padding: 38px; color: var(--white); background: var(--sea); box-shadow: var(--shadow); }
.city-year { color: #e1bc77; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -.06em; }
.city-route { display: grid; grid-template-columns: 1fr 140px 1fr; gap: 20px; align-items: center; margin: 32px 0; }
.city-route article { min-height: 155px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.city-route span { color: #e1bc77; font-family: Arial, sans-serif; font-size: .65rem; font-weight: bold; letter-spacing: .12em; text-transform: uppercase; }
.city-route strong { font-size: 1.45rem; font-weight: normal; line-height: 1.25; }
.route-line { height: 2px; position: relative; background: rgba(225,188,119,.55); }
.route-line::before, .route-line::after, .route-line i { content: ""; position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: #e1bc77; transform: translateY(-50%); }
.route-line::before { left: 0; }
.route-line::after { right: 0; }
.route-line i { left: 50%; width: 7px; height: 7px; transform: translate(-50%,-50%); }
.city-detail > p { max-width: 700px; margin: 0; color: rgba(255,255,255,.74); font-size: 1rem; line-height: 1.65; }
.city-reading-grid { padding: 44px; background: var(--white); box-shadow: var(--shadow); }
.city-reading-grid > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.city-reading-grid article { padding: 22px; background: var(--paper); border-top: 4px solid var(--terracotta); }
.city-reading-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .66rem; font-weight: bold; letter-spacing: .12em; }
.city-reading-grid h3 { margin: 20px 0 10px; font-size: 1.35rem; font-weight: normal; line-height: 1.25; }
.city-reading-grid p { margin: 0; font-size: .94rem; line-height: 1.55; }
.geography-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.geography-grid article { padding: 27px; background: var(--white); border-top: 4px solid var(--terracotta); box-shadow: var(--shadow); }
.geography-grid span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .7rem; }
.geography-grid h3 { margin: 20px 0 9px; font-size: 1.55rem; font-weight: normal; }
.geography-grid p { margin: 0; font-size: .98rem; }
.ceremony-reading { margin-left: -40px; padding: 54px 40px; background: var(--white); box-shadow: var(--shadow); }

@media (max-width: 760px) {
  .topbar { align-items: center; flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .site-menu {
    display: none;
    width: 100%;
    padding: 12px;
    align-items: stretch;
    background: rgba(10,35,34,.96);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 5px;
  }
  .site-menu.is-open { display: grid; gap: 4px; }
  .menu-home, .menu-group summary { padding: 12px; border-radius: 3px; min-height: 44px; }
  .submenu, .wide-submenu {
    position: static;
    width: auto;
    margin: 5px 0 10px;
    box-shadow: none;
  }
  .submenu::before { display: none; }
  .home-visual { margin-top: 0; padding: 0; }
  .home-visual img { aspect-ratio: 2 / 1; object-fit: contain; background: var(--ink); }
  .home-visual figcaption { padding: 17px 18px; }
  .mode-nav {
    margin: 0;
    padding: 10px 6px;
    border-radius: 0;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .nav-button { flex: 0 0 auto; padding: 8px 11px; font-size: .78rem; }
  .hero-content { padding-top: 12vh; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .entrance-portal { padding: 56px 18px; }
  .portal-intro, .portal-grid { grid-template-columns: 1fr; }
  .portal-intro { gap: 18px; }
  .portal-card { min-height: 235px; }
  .view { padding: 64px 18px; }
  .section-heading, .event-detail, .compare-grid, .about-grid, .narrative-strip { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .event-side { min-height: 170px; }
  .event-main { padding: 32px 24px; }
  .reflection { padding: 20px; }
  .reflection-actions { align-items: flex-start; flex-direction: column; }
  .compare-selectors { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); justify-self: center; }
  footer { flex-direction: column; }
  .study-article { padding: 56px 18px 80px; }
  .study-thesis, .study-conclusion { padding: 26px; }
  .movement-list li { grid-template-columns: 1fr; gap: 10px; }
  .next-reading { padding: 26px; }
  .study-lenses, .study-reading-grid { grid-template-columns: 1fr; }
  .essay-hero-grid { grid-template-columns: 1fr; }
  .camoes-portrait { max-width: 280px; margin-top: 24px; }
  .essay-main { display: block; }
  .essay-map { position: static; padding: 38px 18px 0; grid-template-columns: 1fr 1fr; }
  .experience-content .view { padding: 56px 18px 80px; }
  .essay-article { padding-left: 18px; }
  .dual-cards, .reason-grid, .reading-paths { grid-template-columns: 1fr; }
  .visual-story { grid-template-columns: 1fr; }
  .visual-card img { height: 330px; }
  .parade-card { grid-column: auto; display: block; }
  .parade-card img { min-height: 0; height: 260px; }
  .reason-grid article:last-child { grid-column: auto; }
  .dark-section { margin-left: 0; padding: 34px 24px; }
  .editorial-visual { margin-top: -10px; }
  .editorial-visual figcaption { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  .community-hero-grid { grid-template-columns: 1fr; }
  .network-visual { min-height: 330px; max-width: 360px; }
  .network-visual::before { width: 280px; height: 280px; }
  .network-visual::after { width: 180px; height: 180px; }
  .network-center { width: 96px; height: 96px; }
  .network-node { width: 66px; height: 66px; font-size: .62rem; }
  .community-stat, .definition-grid, .belonging-map, .relation-paths, .tension-grid, .community-case-grid { grid-template-columns: 1fr; }
  .community-stat { gap: 10px; padding: 26px; }
  .territory-section, .community-atlas { margin-left: 0; padding: 34px 24px; }
  .community-case-grid article:last-child { grid-column: auto; }
  .testimony-rules { padding: 30px 24px; }
  .presidency-path article { grid-template-columns: 1fr; gap: 16px; }
  .presidency-reading-grid, .city-reading-grid { padding: 30px 24px; }
  .presidency-reading-grid > div, .city-reading-grid > div, .presidency-bridge > div, .ceremony-reading > div { grid-template-columns: 1fr; }
  .presidency-bridge, .ceremony-reading { margin-left: 0; padding: 34px 24px; }
  .absence-grid { grid-template-columns: 1fr; }
  .method-levels, .source-list, .bibliography-list, .credit-grid { grid-template-columns: 1fr; }
  .credit-grid article, .credit-grid .original-credit { grid-column: auto; grid-template-columns: 100px 1fr; }
  .project-origin, .format-grid-section { margin-left: 0; padding: 34px 24px; }
  .project-steps, .format-grid { grid-template-columns: 1fr; }
  .growth-section { padding: 30px 24px; }
  .growth-list li { grid-template-columns: 1fr; gap: 8px; }
  .principle-grid, .annual-cycle { grid-template-columns: 1fr; }
  .hero-with-thumb { grid-template-columns: 1fr; }
  .hero-thumbnail { max-width: 320px; margin-top: 18px; }
  .hero-thumbnail img { aspect-ratio: 16 / 10; }
  .principle-grid article:last-child { grid-column: auto; }
  .annual-question { margin-left: 0; padding: 34px 24px; }
  .annual-cycle article { min-height: 0; }
  .pilot-card div { grid-template-columns: 1fr; gap: 10px; }
  .cities-article { padding-left: 18px; }
  .city-detail { padding: 26px 20px; }
  .city-route { grid-template-columns: 1fr; }
  .route-line { width: 2px; height: 70px; justify-self: center; }
  .route-line::before { left: 50%; top: 0; transform: translate(-50%,-50%); }
  .route-line::after { left: 50%; right: auto; top: 100%; transform: translate(-50%,-50%); }
  .route-line i { left: 50%; top: 50%; }
  .geography-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .topbar { padding: 18px; }
  h1,
  .study-hero-content h1,
  .community-hero-grid h1,
  .voices-hero-content h1,
  .cities-hero-content h1,
  .future-hero-content h1,
  .project-hero-content h1,
  .sources-hero-content h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }
  .hero-content, .study-hero-content { padding: 10vh 18px 12vh; }
  .essay-map { grid-template-columns: 1fr; }
  .city-route { grid-template-columns: 1fr; }
  .route-line { min-height: 42px; width: 2px; justify-self: center; }
  .route-line::before, .route-line::after, .route-line i { left: 50%; }
  .route-line::before { top: 0; }
  .route-line::after { top: 100%; }
}

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