/* Ethereal Foundation — heritage editorial */
:root {
  --bone: #f5f1ea;
  --bone-2: #ede7dc;
  --bone-3: #e3dbcc;
  --ink: #1a1f2e;
  --ink-2: #2a3142;
  --forest: #2d4a3e;
  --brass: #8a7a5c;
  --brass-2: #b8a47e;
  --rule: rgba(26, 31, 46, 0.18);
  --rule-soft: rgba(26, 31, 46, 0.08);
  --serif: "Cormorant Garamond", "Tiempos", "GT Super", Georgia, serif;
  --sans: "Inter", "Söhne", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "JT Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bone); color: var(--ink); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "kern";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ——— Type primitives ——— */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.serif {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.02;
}
.display-xl {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.display-l {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.display-m {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.italic { font-style: italic; }

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 62ch;
}

/* ——— Layout ——— */
.shell { padding: 0 clamp(20px, 4vw, 56px); }
.rule { height: 1px; background: var(--rule); width: 100%; }
.rule-soft { height: 1px; background: var(--rule-soft); width: 100%; }

/* ——— Nav ——— */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  background: rgba(245, 241, 234, 0);
  transition: background 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 241, 234, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--rule-soft);
}
.nav.is-light { color: var(--bone); }
.nav.is-light .nav-link { color: var(--bone); }
.nav.is-light .wordmark { color: var(--bone); }
.nav.is-light.is-scrolled { background: rgba(26,31,46,0.7); }

.wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.005em;
  display: flex; align-items: baseline; gap: 10px;
}
.wordmark .mark { display: none; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: currentColor;
  transition: width 300ms ease;
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 300ms, color 300ms;
}
.nav-cta:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.nav.is-light .nav-cta:hover { background: var(--bone); color: var(--ink); }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--bone);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(20px, 4vw, 56px) clamp(40px, 6vw, 80px);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,36,0.35) 0%, rgba(20,24,36,0.15) 35%, rgba(20,24,36,0.7) 100%),
    linear-gradient(135deg, #2b3344 0%, #1a1f2e 50%, #0f1320 100%);
  z-index: 0;
}
.hero-bg::before {
  /* faint city-skyline placeholder using stripes */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
  background:
    repeating-linear-gradient(90deg,
      rgba(245,241,234,0.04) 0 1px,
      transparent 1px 38px),
    repeating-linear-gradient(180deg,
      rgba(245,241,234,0.025) 0 1px,
      transparent 1px 22px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 100%);
}
.hero-bg::after {
  /* abstract skyline silhouette */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(10,14,24,0.85) 80%, #0a0e18 100%);
}
.skyline-svg {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 46%;
  z-index: 1;
  opacity: 0.85;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr;
  gap: 28px;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245,241,234,0.22);
}
.hero-meta-left { display: flex; gap: 56px; align-items: flex-end; }
.hero-meta .label { color: rgba(245,241,234,0.6); margin-bottom: 6px; }
.hero-meta .value { font-family: var(--serif); font-size: 22px; font-weight: 300; }
.hero-headline {
  max-width: 18ch;
  margin-top: 24px;
}
.hero-sub {
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245,241,234,0.78);
  margin-top: 28px;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,241,234,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line { width: 1px; height: 40px; background: rgba(245,241,234,0.4); animation: drop 2.4s ease-in-out infinite; }
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ——— Section primitives ——— */
section { position: relative; }
.section-pad { padding: clamp(80px, 11vw, 180px) clamp(20px, 4vw, 56px); }
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass);
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}

/* ——— Philosophy ——— */
.philosophy { background: var(--bone); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
}
.philosophy h2 {
  max-width: 18ch;
  margin-bottom: 32px;
}
.philosophy h2 em { color: var(--forest); font-style: italic; }
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
  font-weight: 300;
  color: var(--ink);
  font-style: italic;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  max-width: 36ch;
}
.philosophy-quote .attr {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 24px;
}

/* ——— Sticky scroll stories ——— */
.scrolly {
  position: relative;
  background: var(--ink);
  color: var(--bone);
}
.scrolly-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scrolly-frame {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  display: flex; align-items: flex-end;
  padding: clamp(40px, 6vw, 96px);
}
.scrolly-frame.is-active { opacity: 1; }
.scrolly-frame .plate {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,24,0) 0%, rgba(10,14,24,0.5) 60%, rgba(10,14,24,0.85) 100%);
}
.scrolly-frame .body-art {
  position: absolute; inset: 0; z-index: 0;
}
.scrolly-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.scrolly-content .eyebrow { color: var(--brass-2); }
.scrolly-content h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 14px 0 18px;
}
.scrolly-content p {
  font-size: 17px; line-height: 1.6;
  color: rgba(245,241,234,0.82);
  max-width: 50ch;
}
.scrolly-tracker {
  position: absolute; right: clamp(20px, 4vw, 48px); top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
}
.scrolly-tracker .tick {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: rgba(245,241,234,0.4);
  display: flex; align-items: center; gap: 12px;
  transition: color 300ms;
}
.scrolly-tracker .tick .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(245,241,234,0.4);
  transition: background 300ms, transform 300ms;
}
.scrolly-tracker .tick.is-active { color: var(--bone); }
.scrolly-tracker .tick.is-active .dot { background: var(--brass-2); transform: scale(1.4); }
.scrolly-spacer { height: 100vh; }

/* ——— Stewardship pillars ——— */
.stewardship { background: var(--bone-2); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.pillar {
  padding: 56px 40px 64px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 18px;
}
.pillar:last-child { border-right: none; }
.pillar .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--brass); text-transform: uppercase;
}
.pillar h4 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 2.6vw, 40px); line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.pillar p {
  color: var(--ink-2); font-size: 15px; line-height: 1.65;
}
.pillar .read {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  margin-top: auto; padding-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.pillar .read .arrow {
  display: inline-block; width: 22px; height: 1px; background: currentColor;
  position: relative; transition: width 300ms;
}
.pillar .read .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.pillar:hover .read .arrow { width: 36px; }

/* ——— Governance / portrait grid ——— */
.governance { background: var(--bone); }
.governance-head {
  display: grid; grid-template-columns: 200px 1fr 1fr; gap: clamp(24px, 4vw, 80px);
  align-items: end; margin-bottom: 80px;
}
.gov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 24px;
}
.gov-card {
  display: flex; flex-direction: column; gap: 14px;
}
.gov-portrait {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #d8cdb8 0%, #b8a78a 60%, #8a7a5c 100%);
  position: relative;
  overflow: hidden;
}
.gov-portrait::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(26,31,46,0.06) 0 2px, transparent 2px 8px);
}
.gov-portrait::after {
  /* abstract figure */
  content: ""; position: absolute;
  left: 50%; top: 30%; width: 46%; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 40%, rgba(26,31,46,0.45), rgba(26,31,46,0.0) 60%);
  transform: translateX(-50%);
}
.gov-portrait .figure {
  position: absolute; left: 50%; bottom: 0; width: 78%; height: 70%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(26,31,46,0.0) 0%, rgba(26,31,46,0.55) 70%, rgba(26,31,46,0.75) 100%);
  -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 35%, black 60%, transparent 70%);
  mask-image: radial-gradient(ellipse 50% 60% at 50% 35%, black 60%, transparent 70%);
}
.gov-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.gov-role {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass);
}
.gov-bio {
  font-size: 14px; line-height: 1.55; color: var(--ink-2);
  max-width: 32ch;
}

/* ——— Reach grid ——— */
.reach { background: var(--bone); }
.reach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 32px;
}
.reach-card {
  display: flex; flex-direction: column;
  background: var(--bone-2);
  border: 1px solid var(--rule-soft);
}
.reach-plate {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.reach-art { position: absolute; inset: 0; }
.reach-art-bw, .reach-art-color {
  position: absolute; inset: 0;
}
.reach-art-bw svg, .reach-art-color svg {
  width: 100%; height: 100%; display: block;
}
.reach-art-color {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(.2,.8,.2,1);
}
.reach-card { transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.reach-card:hover .reach-art-color { opacity: 1; }
.reach-card:hover .reach-art-bw { opacity: 0.15; }
.reach-art-bw {
  transition: opacity 600ms ease;
}
.reach-meta {
  padding: 28px 32px 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.reach-meta h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.reach-meta p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 46ch;
}
@media (max-width: 900px) {
  .reach-grid { grid-template-columns: 1fr; }
}

/* ——— Generations / timeline ——— */
.generations {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.generations .section-head .num { color: var(--brass-2); border-top-color: rgba(245,241,234,0.22); }
.generations h2 { color: var(--bone); max-width: 22ch; }
.timeline {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(245,241,234,0.18);
}
.tl-step {
  padding: 32px 24px 0;
  border-right: 1px solid rgba(245,241,234,0.12);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 360px;
}
.tl-step:last-child { border-right: none; }
.tl-step .year {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--brass-2);
}
.tl-step h5 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.tl-step p {
  font-size: 14px; line-height: 1.6;
  color: rgba(245,241,234,0.7);
}
.tl-step .gen {
  margin-top: auto;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,241,234,0.5);
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,0.12);
}

/* ——— Tenants ——— */
.tenants { background: var(--bone-2); }
.tenants-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 80px);
  max-width: 1100px;
}
.tenants-body > * { grid-column: 2; }
.tenants-card {
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tenants-card-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.tenants-card-row:last-child { border-bottom: none; }
.tenants-card-row .label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.tenants-card-row .value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}
.tenants-note {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 60ch;
  font-style: italic;
}
@media (max-width: 900px) {
  .tenants-body, .tenants-card-row { grid-template-columns: 1fr; }
  .tenants-body > * { grid-column: 1; }
}

/* ——— Patronage CTA ——— */
.patronage {
  background: var(--bone);
  position: relative;
}
.patronage-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: end;
}
.patronage h2 { max-width: 16ch; }
.patronage .lede { margin-top: 32px; }
.patronage-side {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.patronage-side .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass);
}
.patronage-side .addr {
  font-family: var(--serif); font-weight: 300;
  font-size: 22px; line-height: 1.4;
  margin-top: 14px;
}
.patronage-cta {
  margin-top: 56px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 18px 28px;
  background: var(--ink); color: var(--bone);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 300ms, transform 300ms;
}
.patronage-cta:hover { background: var(--forest); transform: translateY(-1px); }
.patronage-cta .arrow {
  width: 22px; height: 1px; background: currentColor;
  position: relative;
}
.patronage-cta .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ——— Footer ——— */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 56px) 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,241,234,0.18);
}
.footer-mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.012em;
  max-width: 14ch;
}
.footer-col h6 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass-2);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: 18px; line-height: 1.7;
  color: rgba(245,241,234,0.85);
  transition: color 300ms;
}
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  color: rgba(245,241,234,0.5);
  text-transform: uppercase;
}

/* ——— Variant B: light editorial ——— */
body.variant-b {
  --bone: #ffffff;
  --bone-2: #f7f5f0;
  --bone-3: #ebe6dc;
  --ink: #15171c;
  --ink-2: #2d3038;
  --forest: #4a5d4a;
  --brass: #b09668;
  --brass-2: #d4c4a8;
  --rule: rgba(21, 23, 28, 0.14);
  --rule-soft: rgba(21, 23, 28, 0.06);
  --serif: "Cormorant Garamond", Georgia, serif;
}
body.variant-b .display-xl { font-weight: 400; letter-spacing: -0.025em; }
body.variant-b .gov-portrait { background: linear-gradient(160deg, #e8e0d0 0%, #c4b598 70%, #8a7a5c 100%); }
body.variant-b .hero-bg {
  background:
    linear-gradient(180deg, rgba(20,24,36,0.25) 0%, rgba(20,24,36,0.1) 35%, rgba(20,24,36,0.55) 100%),
    linear-gradient(135deg, #38444f 0%, #1f2630 100%);
}

/* ——— Reveal anim ——— */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-fast { transition-duration: 600ms; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* ——— Responsive ——— */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .gov-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .tl-step { border-right: none; border-bottom: 1px solid rgba(245,241,234,0.12); }
  .governance-head, .patronage-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-head, .philosophy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .gov-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
