:root {
  --ink: #081927;
  --navy: #0b2133;
  --navy-2: #103550;
  --lake: #3e7c95;
  --sky: #87c0cf;
  --copper: #c35c32;
  --copper-dark: #9f4022;
  --amber: #e7a443;
  --cream: #f4ead7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #5f6d76;
  --line: rgba(8, 25, 39, 0.15);
  --display: "Arial Black", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Aptos", "Segoe UI", Arial, sans-serif;
  --shadow: 0 26px 70px rgba(4, 17, 27, 0.16);
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(92px + env(safe-area-inset-top));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
.brand-copy strong,
.brand-copy small,
.portrait-type,
.project-detail strong {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: max(12px, env(safe-area-inset-top));
  left: max(12px, env(safe-area-inset-left));
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.shell {
  width: 100%;
  max-width: 1460px;
  margin-inline: auto;
  padding-right: max(20px, env(safe-area-inset-right));
  padding-left: max(20px, env(safe-area-inset-left));
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: env(safe-area-inset-top);
  background: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid rgba(8, 25, 39, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--copper) 0 31%, var(--amber) 31% 42%, var(--lake) 42% 100%);
}

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

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--cream);
  background: var(--navy);
  border-radius: 50% 50% 50% 9px;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: -0.08em;
  transform: rotate(-3deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  margin: 27px 0 0 27px;
  background: var(--copper);
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--copper-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 26px);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a:not(.nav-cta):not(.nav-glance)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--white);
  background: var(--copper-dark);
  border-radius: 3px;
}

.nav-cta:hover {
  background: var(--ink);
}

.site-nav .nav-glance {
  min-height: 42px;
  justify-content: center;
  padding: 0 14px;
  color: var(--navy);
  border: 1px solid rgba(11, 33, 51, 0.38);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav .nav-glance:hover,
.site-nav .nav-glance:focus-visible,
.site-nav .nav-glance.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.menu-button {
  display: none;
  flex: 0 0 48px;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 91px);
  min-height: calc(100svh - 91px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 48%, rgba(62, 124, 149, 0.32), transparent 31%),
    linear-gradient(118deg, #071826 0%, #0b2133 55%, #123b54 100%);
}

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

.hero-lines {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -3%;
  width: 68%;
  height: 64%;
  opacity: 0.32;
  background: repeating-linear-gradient(0deg, transparent 0 38px, rgba(244, 234, 215, 0.16) 38px 40px);
  transform: rotate(-8deg);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 232px);
  min-height: calc(100svh - 232px);
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(450px, 0.82fr);
  align-items: center;
  gap: 40px;
  padding-top: 64px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 52px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 8.8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
  text-stroke: 2px var(--cream);
}

.preacher-label {
  width: fit-content;
  margin: 34px 0 26px;
  padding: 6px 13px 8px;
  color: var(--ink);
  background: var(--amber);
  box-shadow: 8px 8px 0 var(--copper);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.preacher-label span {
  font-family: Georgia, serif;
  font-size: 0.64em;
  font-style: italic;
  text-transform: none;
}

.hero-intro {
  max-width: 610px;
  margin: 0;
  color: #f7f5ef;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--copper);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover {
  color: var(--ink);
  border-color: var(--cream);
  background: var(--cream);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  color: #f7f5ef;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.hero-meta span {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(231, 164, 67, 0.15);
}

.hero-portrait {
  position: relative;
  align-self: end;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait-halo {
  position: absolute;
  bottom: 110px;
  left: 50%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--amber), var(--copper));
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(231, 164, 67, 0.05), 0 0 0 36px rgba(231, 164, 67, 0.035);
  transform: translateX(-46%);
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: min(91%, 610px);
  height: auto;
  max-height: 735px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(24px 25px 22px rgba(0, 0, 0, 0.32));
}

.hero-portrait picture {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait-type {
  position: absolute;
  z-index: 3;
  top: -44px;
  right: 0;
  margin: 0;
  color: rgba(244, 234, 215, 0.14);
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  letter-spacing: -0.07em;
  line-height: 0.75;
  pointer-events: none;
  text-align: right;
  text-shadow: 0 2px 18px rgba(8, 25, 39, 0.22);
  text-transform: uppercase;
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 94px;
  display: grid;
  min-width: 210px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--cream);
  border-left: 6px solid var(--copper);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.portrait-caption span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-caption strong {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-rail {
  position: relative;
  z-index: 5;
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rail-grid a {
  position: relative;
  display: grid;
  min-height: 140px;
  align-content: center;
  padding: 24px clamp(18px, 3vw, 44px);
  text-decoration: none;
  border-right: 1px solid rgba(8, 25, 39, 0.15);
  transition: color 180ms ease, background 180ms ease;
}

.rail-grid a:first-child {
  border-left: 1px solid rgba(8, 25, 39, 0.15);
}

.rail-grid a::after {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 26px;
  font-size: 1.25rem;
}

.rail-grid a:hover {
  color: var(--white);
  background: var(--copper-dark);
}

.rail-grid span {
  color: var(--copper-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.rail-grid a:hover span,
.rail-grid a:hover small {
  color: #f7f5ef;
}

.rail-grid strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.rail-grid small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.section {
  padding: clamp(92px, 10vw, 150px) 0;
}

.story {
  overflow: hidden;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.05fr) minmax(290px, 0.7fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: start;
}

.section-heading h2,
.hometown-heading h2,
.priority-intro h2,
.updates-heading h2,
.involve h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}

.story-copy {
  padding-top: 42px;
}

.story-copy p {
  margin: 0 0 22px;
  color: #3f4f59;
  font-size: 1.06rem;
}

.story-copy .lead {
  color: var(--ink);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.story-principle {
  margin: 30px 0 24px;
  padding-left: 20px;
  border-left: 3px solid var(--copper);
}

.story-copy .story-refrain {
  margin: 0 0 12px;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-style: italic;
  line-height: 1.2;
}

.story-principle p:last-child {
  margin-bottom: 0;
}

.text-link,
.update-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--copper-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link span,
.update-copy a span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.update-copy a:hover span {
  transform: translateX(5px);
}

.story-profile {
  position: relative;
  margin: 0;
  color: var(--white);
  background: var(--navy);
  box-shadow: 14px 14px 0 var(--amber);
  transform: rotate(1.3deg);
}

.story-profile::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 13px;
  border: 1px solid rgba(244, 234, 215, 0.34);
  pointer-events: none;
}

.story-profile figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.story-profile picture {
  display: block;
}

.story-profile img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  object-position: 43% 42%;
  filter: saturate(0.88) contrast(1.04);
}

.story-profile figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 25, 39, 0.96));
}

.story-profile figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  line-height: 1.1;
}

.story-profile figcaption span {
  position: relative;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.story-profile figcaption strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.story-profile > p {
  position: relative;
  margin: 0;
  padding: 23px 28px 28px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-waterfront-gallery {
  display: grid;
  grid-template-columns: minmax(0, 200fr) minmax(0, 123fr);
  gap: 24px;
  align-items: start;
  margin: clamp(48px, 6vw, 88px) 0 0;
}

.story-waterfront {
  min-width: 0;
  margin: 0;
  outline: 1px solid var(--line);
  outline-offset: -1px;
  background: var(--cream);
}

.story-waterfront img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-waterfront picture {
  display: block;
}

.story-waterfront figcaption {
  padding: 15px clamp(16px, 2vw, 28px);
  border-left: 4px solid var(--copper);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hometown {
  position: relative;
  overflow: hidden;
  background: #eaf1f2;
}

.hometown::before {
  content: "THE SOO";
  position: absolute;
  top: 35px;
  right: -35px;
  color: rgba(11, 33, 51, 0.045);
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 20rem);
  letter-spacing: -0.09em;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.hometown .shell {
  position: relative;
}

.hometown-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: end;
  gap: clamp(40px, 7vw, 95px);
}

.hometown-heading > p:last-child {
  max-width: 560px;
  margin: 0 0 8px;
  color: #41525c;
  font-size: 1.08rem;
}

.place-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(290px, 0.72fr);
  align-items: start;
  gap: 22px;
  margin-top: 64px;
}

.place-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(8, 25, 39, 0.12);
}

.place-feature {
  border-radius: 58px 4px 24px 4px;
}

.place-detail {
  border-radius: 4px 58px 4px 24px;
}

.place-card img {
  width: 100%;
  object-fit: cover;
}

.place-feature img {
  aspect-ratio: 1.72;
}

.place-detail img {
  aspect-ratio: 1.08;
  object-position: center top;
}

.place-card figcaption {
  display: grid;
  gap: 8px;
  padding: 26px 30px 30px;
}

.place-card figcaption span {
  color: var(--copper-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.place-card figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2.45rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
  text-transform: uppercase;
}

.place-card figcaption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.citywide-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.city-map {
  margin: 0;
  padding: clamp(18px, 2.5vw, 30px);
  background: var(--white);
  border-radius: 4px 4px 4px 52px;
  box-shadow: 0 22px 60px rgba(8, 25, 39, 0.1);
}

.city-map a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px 28px 3px 3px;
}

.city-map img {
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: contain;
  background: #a9e2c4;
}

.map-action {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(8, 25, 39, 0.9);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.city-map figcaption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.citywide-copy {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(38px, 6vw, 82px);
  color: var(--white);
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.035) 31px 32px),
    var(--navy);
  border-left: 8px solid var(--copper);
  border-radius: 3px 52px 3px 3px;
}

.citywide-index {
  position: absolute;
  top: 24px;
  right: 27px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.citywide-copy h3 {
  max-width: 660px;
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.citywide-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #f7f5ef;
  font-size: 1.04rem;
}

.citywide-copy ul {
  display: grid;
  gap: 8px;
  margin: 27px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.citywide-copy li::before {
  content: "—";
  margin-right: 10px;
  color: var(--amber);
}

.reference-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: #60747e;
  font-size: 0.76rem;
  line-height: 1.5;
}

.priorities {
  color: var(--white);
  background: var(--navy);
}

.priority-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 64px;
}

.priority-intro-copy > p {
  max-width: 530px;
  margin: 0 0 4px;
  color: #f7f5ef;
  font-size: 1.08rem;
}

.priority-intro-copy .text-link {
  margin-top: 20px;
  color: var(--amber);
}

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

.priority-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  color: var(--ink);
  background: var(--cream);
  border-top: 7px solid var(--lake);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.priority-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.priority-card.feature {
  color: var(--white);
  background: var(--copper-dark);
  border-top-color: var(--amber);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  border-bottom: 1px solid currentColor;
  opacity: 0.72;
}

.priority-card h3 {
  margin: 44px 0 20px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.priority-card p {
  margin: 0;
  line-height: 1.55;
}

.priority-card-lake {
  color: var(--white);
  background: var(--lake);
  border-top-color: var(--amber);
}

.priority-card-amber {
  background: var(--amber);
  border-top-color: var(--copper-dark);
}

.priority-card-paper {
  background: var(--white);
  border-top-color: var(--copper);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.card-link span {
  color: var(--copper-dark);
  transition: transform 180ms ease;
}

.priority-card.feature .card-link span,
.priority-card-lake .card-link span {
  color: var(--amber);
}

.card-link:hover span,
.card-link:focus-visible span {
  transform: translateX(5px);
}

.platform-threads {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.platform-threads a {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 22px 28px;
  color: #f7f5ef;
  background: var(--navy);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.platform-threads a:hover,
.platform-threads a:focus-visible {
  color: var(--white);
  background: var(--navy-2);
}

.platform-threads span {
  color: var(--amber);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.platform-question-link {
  margin: 22px 0 0;
  color: #f7f5ef;
  font-size: 0.86rem;
  line-height: 1.6;
}

.platform-question-link a {
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 4px;
}

.mosaic-platform-link {
  margin-left: 24px;
}

.priority-card ul {
  display: grid;
  gap: 9px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid currentColor;
  opacity: 0.86;
}

.priority-card li::before {
  content: "—";
  margin-right: 10px;
  color: var(--copper-dark);
  font-weight: 900;
}

.priority-card.feature li::before {
  color: var(--amber);
}

.bigger-ideas {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(135, 192, 207, 0.12), transparent 35%),
    var(--cream);
}

.mosaic-word {
  position: absolute;
  top: -0.16em;
  right: -0.04em;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 18rem);
  letter-spacing: -0.09em;
  line-height: 1;
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
}

.mosaic-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
}

.mosaic-heading,
.mosaic-opening,
.mosaic-card,
.exploration-copy {
  min-width: 0;
}

.mosaic-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.15rem, 6.1vw, 6.8rem);
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-transform: uppercase;
}

.mosaic-opening p {
  max-width: 700px;
  margin: 0 0 20px;
  color: #3f4f59;
  font-size: 1.06rem;
}

.mosaic-opening .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.47;
}

.mosaic-opening strong {
  color: var(--copper-dark);
}

.home-mosaic-map {
  position: relative;
  z-index: 1;
  margin: clamp(52px, 7vw, 92px) 0 0;
}

.home-mosaic-map a {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: #e7e8e3;
  border: 1px solid var(--line);
  border-radius: 42px 3px 30px 3px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.home-mosaic-map img {
  width: 100%;
  height: auto;
  transition: transform 300ms ease;
}

.home-mosaic-map a:hover img,
.home-mosaic-map a:focus-visible img {
  transform: scale(1.012);
}

.home-mosaic-map a > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  background: rgba(8, 25, 39, 0.94);
  font-weight: 850;
}

.home-mosaic-map figcaption {
  max-width: 880px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.mosaic-concepts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(58px, 8vw, 100px);
}

.mosaic-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border-top: 7px solid var(--copper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mosaic-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(4, 17, 27, 0.18);
}

.mosaic-card::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -88px;
  width: 190px;
  aspect-ratio: 1;
  border: 24px solid currentColor;
  border-radius: 50%;
  opacity: 0.07;
}

.mosaic-card-split {
  grid-column: span 4;
  background: var(--white);
}

.mosaic-card-wharf {
  grid-column: span 4;
  color: var(--white);
  background: var(--lake);
  border-top-color: var(--amber);
}

.mosaic-card-stay {
  grid-column: span 4;
  background: var(--amber);
  border-top-color: var(--navy);
}

.mosaic-card-station {
  grid-column: span 5;
  color: var(--white);
  background: var(--copper-dark);
  border-top-color: var(--cream);
}

.mosaic-card-north {
  grid-column: span 7;
  color: var(--cream);
  background: var(--navy);
  border-top-color: var(--sky);
}

.mosaic-number {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  opacity: 0.62;
}

.mosaic-kicker {
  margin: 0 0 52px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.76;
}

.mosaic-card h3 {
  max-width: 520px;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.1vw, 3.25rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.mosaic-card p:last-child {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0;
  line-height: 1.5;
  opacity: 0.84;
}

.mosaic-connection {
  max-width: 940px;
  margin: clamp(45px, 6vw, 76px) 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.exploration-note {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(35px, 7vw, 100px);
  margin-top: clamp(60px, 8vw, 105px);
  padding: clamp(36px, 6vw, 78px);
  color: var(--white);
  background: var(--navy);
  border-radius: 3px 48px 3px 3px;
  box-shadow: 16px 16px 0 var(--sky);
}

.exploration-label {
  align-self: start;
}

.exploration-label span {
  display: block;
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(6rem, 11vw, 11rem);
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.exploration-label p {
  max-width: 250px;
  margin: 32px 0 0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.exploration-copy h3 {
  max-width: 760px;
  margin: 0 0 25px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.3vw, 4.8rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}

.exploration-lead {
  max-width: 760px;
  margin: 0;
  color: #f7f5ef;
  font-size: 1.05rem;
}

.exploration-lead strong {
  color: var(--white);
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  max-width: 780px;
  margin: 30px 0;
  padding: 28px 0;
  list-style: none;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.question-list li {
  position: relative;
  padding-left: 23px;
  font-weight: 750;
}

.question-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 950;
}

.exploration-closing {
  max-width: 720px;
  margin: 0 0 18px;
  color: #f7f5ef;
}

.exploration-note .text-link {
  color: var(--amber);
}

.mosaic-attribution {
  max-width: 900px;
  margin: 42px 0 0;
  color: #566971;
  font-size: 0.78rem;
  line-height: 1.55;
}

.reconciliation {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 11vw, 160px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 50%, rgba(242, 106, 33, 0.13), transparent 34%),
    #111111;
}

.reconciliation::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: #f26a21;
}

.reconciliation-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
}

.reconciliation-mark {
  position: relative;
  width: min(100%, 485px);
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #0b0b0b;
  background: #f26a21;
  border-radius: 49% 51% 47% 53%;
  box-shadow: 0 0 0 18px rgba(242, 106, 33, 0.08), 0 28px 70px rgba(0, 0, 0, 0.35);
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6.1rem);
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.reconciliation-mark::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 11%;
  left: 12%;
  height: 5px;
  background: #0b0b0b;
  transform: rotate(-5deg);
}

.reconciliation-copy h2 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.reconciliation-lead {
  margin: 0 0 12px;
  color: #f26a21;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 700;
}

.reconciliation-copy > p:not(.eyebrow):not(.reconciliation-lead):not(.reconciliation-note) {
  max-width: 690px;
  margin: 0;
  color: #f7f5ef;
  font-size: 1.06rem;
}

.reconciliation-note {
  max-width: 680px;
  margin: 30px 0 0;
  padding: 18px 0 18px 22px;
  color: #f7f5ef;
  border-left: 3px solid #f26a21;
  font-size: 0.84rem;
  line-height: 1.5;
}

.statement {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--copper-dark);
}

.statement-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  color: var(--ink);
  background: var(--amber);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg) translate(-1%, -7px);
}

.statement-track span {
  display: inline-block;
  white-space: nowrap;
}

.statement-track i {
  font-size: 0.8em;
  font-style: normal;
}

.statement-inner {
  max-width: 1180px;
  padding-top: clamp(90px, 10vw, 145px);
  padding-bottom: clamp(90px, 10vw, 145px);
  text-align: center;
}

.statement blockquote {
  margin: 18px auto 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.quote-credit {
  margin: 0;
  color: #f7f5ef;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updates {
  background: var(--paper);
}

.updates-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.updates-heading p:last-child {
  max-width: 510px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.update-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  min-height: 325px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(8, 25, 39, 0.05);
}

.update-card-large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.update-art {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.community-art {
  min-height: 330px;
  display: flex;
  align-items: end;
  padding: 30px;
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(11, 33, 51, 0.2), rgba(11, 33, 51, 0.86)),
    linear-gradient(145deg, var(--lake), var(--navy));
}

.community-art::before,
.community-art::after {
  content: "";
  position: absolute;
  right: -80px;
  left: -80px;
  height: 90px;
  border: 4px solid rgba(244, 234, 215, 0.2);
  border-radius: 50%;
}

.community-art::before {
  top: 56px;
}

.community-art::after {
  top: 91px;
}

.community-art span {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.community-art div {
  position: absolute;
  right: 38px;
  bottom: 32px;
  width: 18px;
  height: 90px;
  background: var(--amber);
  transform: skew(-10deg);
}

.sound-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--cream);
}

.sound-art span {
  width: 12px;
  height: 42%;
  background: var(--copper);
  border-radius: 12px;
}

.sound-art span:nth-child(2),
.sound-art span:nth-child(4) {
  height: 66%;
  background: var(--amber);
}

.sound-art span:nth-child(3) {
  height: 88%;
  background: var(--navy);
}

.event-art {
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--white);
  background:
    repeating-linear-gradient(-12deg, transparent 0 16px, rgba(255, 255, 255, 0.08) 16px 18px),
    var(--copper-dark);
}

.event-art b {
  font-family: var(--display);
  font-size: 4.5rem;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.event-art span {
  margin-top: 18px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.update-copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 3vw, 42px);
}

.update-meta {
  margin: 0 0 15px;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.update-copy h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

.update-copy p:not(.update-meta) {
  margin: 0;
  color: var(--muted);
}

.involve {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 130%, rgba(135, 192, 207, 0.27), transparent 30%),
    var(--ink);
}

.involve-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.involve-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: #f7f5ef;
  font-size: 1.08rem;
}

.involve-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.involve-options span {
  padding: 8px 13px;
  color: var(--cream);
  border: 1px solid rgba(244, 234, 215, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.interest-form {
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 16px 16px 0 var(--copper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.interest-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.interest-form input,
.interest-form select {
  width: 100%;
  min-height: 52px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(8, 25, 39, 0.3);
  border-radius: 0;
}

.interest-form input:focus,
.interest-form select:focus {
  border-color: var(--copper-dark);
}

.form-button {
  width: 100%;
  margin-top: 3px;
  border: 0;
}

.form-status {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-status.success {
  color: #215a40;
  font-weight: 750;
}

.contact {
  padding: 80px 0;
  background: var(--amber);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 55px;
  align-items: center;
}

.contact .eyebrow {
  color: var(--ink);
}

.contact h2 {
  max-width: 740px;
  font-size: clamp(2.4rem, 4.3vw, 4.6rem);
}

.contact-details {
  display: grid;
  gap: 16px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-details p {
  margin: 0;
}

.contact-details strong {
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.circle-link {
  display: grid;
  width: 66px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform 180ms ease;
}

.circle-link:hover {
  transform: translateY(-5px);
}

.site-footer {
  padding: 46px 0;
  color: #f7f5ef;
  background: #05111c;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

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

.footer-inner > p {
  margin: 0;
  font-size: 0.75rem;
}

.footer-inner > p:nth-child(2) {
  text-align: center;
}

/* Full platform */

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

.platform-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(135, 192, 207, 0.2), transparent 31%),
    linear-gradient(135deg, var(--navy) 0 70%, #123f5c 100%);
}

.platform-hero::after {
  content: "PLATFORM";
  position: absolute;
  right: -0.03em;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: clamp(8rem, 21vw, 22rem);
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.platform-hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, black 55%, black);
}

.platform-hero-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(610px, 72vh, 790px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
  padding-block: clamp(90px, 10vw, 145px);
}

.platform-hero-copy {
  min-width: 0;
}

.platform-hero h1 {
  display: grid;
  margin: 12px 0 24px;
  font-family: var(--display);
  font-size: clamp(5rem, 10.5vw, 10.5rem);
  letter-spacing: -0.085em;
  line-height: 0.78;
  text-transform: uppercase;
}

.platform-hero-deck {
  max-width: 920px;
  margin: 0 0 18px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.platform-status {
  margin: 0 0 30px;
  color: #f7f5ef;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-self: end;
  margin-bottom: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.platform-hero-note span,
.platform-hero-note p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.platform-hero-note span {
  width: 54px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.platform-hero-note p {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-transform: uppercase;
}

.platform-opening {
  background: var(--cream);
}

.platform-opening-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(400px, 1.3fr);
  gap: clamp(55px, 10vw, 155px);
  align-items: start;
}

.platform-opening h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.2vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.platform-opening-copy {
  max-width: 760px;
}

.platform-opening-copy p {
  margin: 0 0 24px;
  color: #3f4f59;
  font-size: 1.06rem;
}

.platform-opening-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.25vw, 2.05rem);
  line-height: 1.4;
}

.platform-opening-copy blockquote {
  margin: 42px 0 0;
  padding: 28px 0 28px 30px;
  color: var(--ink);
  border-left: 6px solid var(--copper);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  line-height: 1.55;
}

.platform-opening-copy blockquote strong {
  display: block;
  margin-bottom: 5px;
}

.platform-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(55px, 7vw, 105px);
  align-items: start;
  padding-block: clamp(90px, 10vw, 150px);
}

.platform-toc {
  position: sticky;
  top: 118px;
  max-height: calc(100vh - 145px);
  max-height: calc(100dvh - 145px);
  overflow: auto;
  padding: 0 12px 12px 0;
  scrollbar-width: thin;
}

.platform-toc > p {
  margin: 0 0 17px;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.platform-toc nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.platform-toc a {
  min-height: 44px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 12px 3px;
  color: #52616a;
  border-bottom: 1px solid var(--line);
  font-size: 0.81rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.platform-toc a:hover,
.platform-toc a:focus-visible {
  padding-left: 6px;
  color: var(--copper-dark);
}

.platform-toc a span {
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

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

.platform-chapter {
  scroll-margin-top: 118px;
  padding: 0 0 clamp(105px, 11vw, 165px);
}

.platform-chapter + .platform-chapter {
  padding-top: clamp(85px, 9vw, 135px);
  border-top: 1px solid var(--line);
}

.chapter-header {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-bottom: clamp(45px, 6vw, 76px);
}

.chapter-header > span {
  color: var(--copper);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.chapter-header h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.55rem, 5vw, 5.7rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.chapter-copy {
  max-width: 880px;
  margin-left: clamp(0px, 11vw, 162px);
}

.chapter-copy > p,
.platform-subsection > p {
  margin: 0 0 22px;
  color: #3f4f59;
  font-size: 1.06rem;
  line-height: 1.75;
}

.chapter-copy strong,
.platform-subsection strong {
  color: var(--ink);
}

.chapter-lead {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem) !important;
  letter-spacing: -0.02em;
  line-height: 1.48 !important;
}

.platform-subsection {
  margin-top: clamp(48px, 6vw, 74px);
  padding-top: 30px;
  border-top: 4px solid var(--lake);
}

.platform-subsection h3 {
  max-width: 760px;
  margin: 0 0 25px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.platform-measure-grid,
.risk-ledger,
.policy-fact-grid,
.regulated-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.platform-measure-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.platform-measure-grid section,
.risk-ledger section,
.policy-fact-grid section,
.regulated-choice-grid section {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  background: var(--cream);
  border-top: 5px solid var(--lake);
}

.platform-measure-grid h4,
.risk-ledger h4,
.policy-fact-grid h4,
.regulated-choice-grid h4,
.platform-policy-question .platform-subsection h4 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-transform: uppercase;
}

.platform-measure-grid p,
.risk-ledger p,
.policy-fact-grid p,
.regulated-choice-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.policy-fact-grid p + p {
  margin-top: 15px;
}

.regulated-choice-grid section:nth-child(2) {
  border-color: var(--amber);
}

.regulated-choice-grid section:nth-child(3) {
  border-color: var(--green);
}

.regulated-choice-grid section:nth-child(4) {
  border-color: var(--copper);
}

.risk-ledger ul,
.policy-options {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.risk-ledger section:first-child {
  border-color: var(--copper);
}

.risk-ledger section:last-child {
  border-color: var(--green);
}

.learning-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.learning-categories section {
  min-width: 0;
  padding: 24px;
  background: var(--cream);
  border-top: 5px solid var(--lake);
}

.learning-categories h4 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.learning-categories p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.platform-principle .chapter-header > span,
.platform-finale .chapter-header > span {
  color: var(--lake);
}

.platform-mosaic .chapter-header > span {
  color: var(--amber);
}

.platform-map {
  width: 100%;
  margin: clamp(48px, 6vw, 78px) 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 36px 3px 24px 3px;
  box-shadow: var(--shadow);
}

.platform-map a {
  position: relative;
  display: block;
  color: var(--white);
  text-decoration: none;
}

.platform-map img {
  width: 100%;
  height: auto;
}

.platform-map a > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  background: rgba(8, 25, 39, 0.92);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-map figcaption {
  padding: 18px 24px 21px;
  color: #5c6b73;
  font-size: 0.78rem;
  line-height: 1.5;
}

.platform-caveat {
  margin: clamp(45px, 6vw, 72px) 0;
  padding: clamp(30px, 4vw, 50px);
  color: var(--white);
  background: var(--navy);
  border-left: 7px solid var(--amber);
  box-shadow: 12px 12px 0 var(--sky);
}

.platform-caveat p:last-child {
  margin: 0;
  color: #f7f5ef;
  font-size: 1.05rem;
  line-height: 1.7;
}

.platform-caveat strong {
  color: var(--white);
}

.chapter-copy sup a {
  color: var(--copper-dark);
  font-weight: 900;
  text-decoration: none;
}

.platform-finale blockquote {
  margin: clamp(48px, 7vw, 82px) 0 38px;
  padding: 0 0 0 28px;
  color: var(--ink);
  border-left: 7px solid var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.campaign-assets {
  margin: 0 0 clamp(90px, 11vw, 150px);
  padding: clamp(42px, 6vw, 72px);
  color: var(--white);
  background: var(--navy);
  border-top: 8px solid var(--amber);
}

.campaign-assets-heading {
  max-width: 850px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.campaign-assets-heading h2 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-transform: uppercase;
}

.campaign-assets-heading > p:last-child {
  color: #f7f5ef;
}

.campaign-assets-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.campaign-asset {
  min-width: 0;
  margin: 0;
}

.campaign-asset a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  text-decoration: none;
}

.campaign-asset img {
  width: 100%;
  height: auto;
}

.campaign-asset-wide img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.campaign-asset a > span {
  display: block;
  margin-top: auto;
  padding: 14px 17px;
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.platform-sources {
  scroll-margin-top: 118px;
  padding: clamp(42px, 5vw, 65px);
  background: #eef1ed;
  border-top: 7px solid var(--lake);
}

.platform-sources h2 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.platform-sources ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding-left: 23px;
}

.platform-sources li,
.platform-sources > p {
  color: #516169;
  font-size: 0.84rem;
  line-height: 1.6;
}

.platform-sources > p {
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 25, 39, 0.15);
  font-style: italic;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

@media (max-width: 1240px) {
  .header-inner {
    min-height: 78px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: calc(83px + env(safe-area-inset-top)) 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 83px - env(safe-area-inset-top));
    max-height: calc(100dvh - 83px - env(safe-area-inset-top));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(8, 25, 39, 0.16);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-glance,
  .site-nav .nav-cta {
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .risk-ledger,
  .policy-fact-grid,
  .regulated-choice-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    min-height: 78px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: calc(83px + env(safe-area-inset-top)) 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 83px - env(safe-area-inset-top));
    max-height: calc(100dvh - 83px - env(safe-area-inset-top));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(8, 25, 39, 0.16);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0;
  }

  .platform-concept-links {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 0.95fr 0.8fr;
  }

  .hero-portrait {
    min-height: 590px;
  }

  .hero-portrait img {
    width: 116%;
    max-width: none;
  }

  .portrait-caption {
    right: -2vw;
  }

  .story-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .story-profile {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) 1fr;
    align-items: stretch;
  }

  .story-profile > p {
    display: flex;
    align-items: center;
    padding: 45px;
    font-size: clamp(1.3rem, 3vw, 2rem);
  }

  .place-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }

  .citywide-grid {
    grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1fr);
  }

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

  .mosaic-card-split,
  .mosaic-card-wharf,
  .mosaic-card-stay,
  .mosaic-card-station {
    grid-column: auto;
  }

  .mosaic-card-north {
    grid-column: 1 / -1;
  }

  .exploration-note {
    grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  }

  .reconciliation-grid {
    grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1fr);
    gap: 65px;
  }

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

  .platform-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
    gap: 52px;
  }

  .platform-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 45px;
  }

  .chapter-header {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 26px;
  }

  .chapter-copy {
    margin-left: 104px;
  }

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

@media (max-width: 780px) {
  .story-waterfront-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  html {
    scroll-padding-top: 82px;
  }

  .shell {
    width: 100%;
    max-width: 710px;
    padding-right: max(15px, env(safe-area-inset-right));
    padding-left: max(15px, env(safe-area-inset-left));
  }

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

  .brand-copy small {
    font-size: 0.59rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-lines {
    top: 37%;
    width: 130%;
    height: 42%;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .hero-copy {
    padding: 74px 0 20px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6.8rem);
  }

  .hero-portrait {
    width: min(100%, 520px);
    min-height: 565px;
    justify-self: center;
  }

  .hero-portrait img {
    width: 100%;
    max-height: 590px;
  }

  .portrait-halo {
    bottom: 92px;
    width: min(95vw, 470px);
  }

  .portrait-type {
    top: -18px;
    right: -4px;
    font-size: 4.8rem;
  }

  .portrait-caption {
    right: 0;
    bottom: 52px;
  }

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

  .rail-grid a,
  .rail-grid a:first-child {
    min-height: 112px;
    border-right: 1px solid rgba(8, 25, 39, 0.15);
    border-bottom: 1px solid rgba(8, 25, 39, 0.15);
    border-left: 1px solid rgba(8, 25, 39, 0.15);
  }

  .story-grid,
  .hometown-heading,
  .place-grid,
  .citywide-grid,
  .priority-intro,
  .platform-hero-inner,
  .platform-opening-grid,
  .mosaic-intro,
  .exploration-note,
  .updates-heading,
  .involve-grid,
  .contact-inner,
  .reconciliation-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-top: 0;
  }

  .hometown-heading,
  .citywide-grid {
    gap: 28px;
  }

  .place-grid {
    margin-top: 44px;
  }

  .place-feature img,
  .place-detail img {
    aspect-ratio: 4 / 3;
  }

  .place-feature,
  .place-detail {
    border-radius: 34px 3px 22px 3px;
  }

  .city-map {
    border-radius: 3px 3px 3px 34px;
  }

  .citywide-copy {
    min-height: 520px;
    border-radius: 3px 34px 3px 3px;
  }

  .reconciliation-mark {
    width: min(80vw, 390px);
    justify-self: center;
  }

  .reconciliation-copy {
    max-width: 670px;
  }

  .priority-intro,
  .updates-heading {
    gap: 25px;
  }

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

  .priority-card,
  .priority-card:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .priority-card p {
    min-height: 0;
  }

  .platform-threads {
    grid-template-columns: 1fr;
  }

  .platform-measure-grid,
  .risk-ledger,
  .policy-fact-grid,
  .regulated-choice-grid {
    grid-template-columns: 1fr;
  }

  .platform-policy-question {
    box-shadow: 8px 8px 0 rgba(43, 170, 195, 0.17);
  }

  .mosaic-platform-link {
    display: flex;
    margin-left: 0;
  }

  .platform-hero-inner {
    min-height: auto;
    gap: 58px;
    padding-block: 92px;
  }

  .platform-hero h1 {
    font-size: clamp(4.8rem, 20vw, 7.4rem);
  }

  .platform-hero-note {
    width: min(100%, 520px);
    align-self: auto;
  }

  .platform-opening-grid {
    gap: 38px;
  }

  .platform-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .platform-chapter {
    padding-bottom: 72px;
  }

  .platform-chapter + .platform-chapter {
    padding-top: 72px;
  }

  .chapter-header {
    margin-bottom: 32px;
  }

  .platform-toc {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
  }

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

  .platform-toc a:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 18px;
  }

  .platform-toc a:nth-child(even) {
    padding-left: 18px;
  }

  .chapter-header {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 20px;
  }

  .chapter-copy {
    margin-left: 88px;
  }

  .platform-map {
    width: 100%;
  }

  .mosaic-intro {
    gap: 32px;
  }

  .mosaic-opening p {
    max-width: 650px;
  }

  .mosaic-concepts {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .mosaic-card,
  .mosaic-card-north {
    grid-column: auto;
    min-height: 270px;
  }

  .exploration-note {
    gap: 36px;
  }

  .exploration-label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
  }

  .exploration-label span {
    font-size: 6.5rem;
  }

  .exploration-label p {
    max-width: 300px;
    margin: 0;
  }

  .question-list {
    grid-template-columns: 1fr;
  }

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

  .update-card-large {
    grid-row: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-inner {
    gap: 30px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
  }

  .footer-inner > p:nth-child(2) {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .shell {
    width: 100%;
    max-width: 464px;
    padding-right: max(12px, env(safe-area-inset-right));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .header-inner {
    gap: 12px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
  }

  .brand-copy small {
    max-width: 170px;
  }

  .site-nav {
    inset: calc(77px + env(safe-area-inset-top)) 0 auto;
    max-height: calc(100vh - 77px - env(safe-area-inset-top));
    max-height: calc(100dvh - 77px - env(safe-area-inset-top));
  }

  .hero-copy {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 19vw, 5.2rem);
  }

  .hero h1 span:last-child {
    -webkit-text-stroke-width: 1.4px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-portrait {
    min-height: 500px;
  }

  .hero-portrait img {
    width: 108%;
    max-width: none;
  }

  .portrait-type {
    top: -18px;
    right: 0;
    font-size: clamp(3.65rem, 18vw, 4.8rem);
  }

  .portrait-caption {
    min-width: 170px;
    padding: 11px 14px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .hometown-heading h2,
  .priority-intro h2,
  .mosaic-heading h2,
  .updates-heading h2,
  .involve h2,
  .contact h2 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .story-profile {
    display: block;
    box-shadow: 9px 9px 0 var(--amber);
  }

  .story-profile > p {
    padding: 24px 28px 29px;
    font-size: 1rem;
  }

  .hometown::before {
    top: 58px;
    right: -18px;
    font-size: 7.4rem;
  }

  .place-card figcaption {
    padding: 22px 23px 25px;
  }

  .place-card figcaption strong {
    font-size: 1.45rem;
  }

  .city-map {
    padding: 12px;
  }

  .map-action {
    right: 8px;
    bottom: 8px;
    font-size: 0.64rem;
  }

  .citywide-copy {
    min-height: 480px;
    padding: 34px 27px;
  }

  .citywide-index {
    top: 18px;
    right: 19px;
  }

  .platform-hero::after {
    right: -0.08em;
    bottom: -0.05em;
    font-size: 7rem;
  }

  .platform-hero h1 {
    font-size: clamp(4rem, 20vw, 5.6rem);
  }

  .platform-hero-deck {
    font-size: 1.45rem;
  }

  .platform-toc nav {
    grid-template-columns: 1fr;
  }

  .platform-toc a:nth-child(odd),
  .platform-toc a:nth-child(even) {
    padding-inline: 3px;
    border-right: 0;
  }

  .chapter-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chapter-header > span {
    font-size: 3.3rem;
  }

  .chapter-header h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .chapter-copy {
    margin-left: 0;
  }

  .platform-subsection {
    margin-top: 44px;
  }

  .platform-map {
    border-radius: 24px 3px 18px 3px;
  }

  .platform-map a > span {
    position: static;
    display: block;
    padding: 12px 15px;
    background: var(--navy);
  }

  .platform-caveat {
    padding: 28px 24px;
    box-shadow: 8px 8px 0 var(--sky);
  }

  .platform-finale blockquote {
    padding-left: 20px;
  }

  .platform-sources {
    padding: 30px 24px;
  }

  .mosaic-word {
    top: 24px;
    font-size: 7rem;
  }

  .mosaic-card {
    min-height: 250px;
    padding: 30px 27px;
  }

  .mosaic-kicker {
    margin-bottom: 42px;
  }

  .exploration-note {
    padding: 34px 27px;
    border-radius: 3px 34px 3px 3px;
    box-shadow: 9px 9px 0 var(--sky);
  }

  .exploration-label {
    gap: 18px;
  }

  .exploration-label span {
    font-size: 5rem;
  }

  .exploration-copy h3 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .reconciliation-mark {
    width: min(82vw, 330px);
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .reconciliation-copy h2 {
    font-size: clamp(1.9rem, 8.5vw, 3rem);
  }

  .community-art {
    min-height: 260px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .interest-form {
    box-shadow: 9px 9px 0 var(--copper);
  }
}

/* Participation, question, and project pages */

.school-feature {
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(135, 192, 207, 0.16), transparent 50%),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.school-feature-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(35px, 7vw, 105px);
  align-items: start;
}

.school-feature-number {
  color: var(--copper);
  font-family: var(--display);
  font-size: clamp(7rem, 15vw, 15rem);
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.school-feature-copy {
  min-width: 0;
  max-width: 980px;
}

.school-feature-copy h2 {
  margin: 12px 0 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.school-feature-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.4;
}

.school-feature-copy > p:not(.eyebrow):not(.lead) {
  max-width: 790px;
  color: var(--muted);
  line-height: 1.7;
}

.school-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-outline-dark {
  color: var(--ink);
  border: 2px solid var(--ink);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.citywide-context {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 55%),
    var(--navy);
  border-top: 8px solid var(--amber);
}

.citywide-context h3 {
  max-width: 480px;
  margin: 18px 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.citywide-context p {
  max-width: 570px;
  margin: 0;
  color: #f7f5ef;
}

.mosaic-card {
  color: inherit;
  text-decoration: none;
}

.mosaic-card:focus-visible {
  outline: 4px solid var(--ink);
  outline-offset: 4px;
}

.mosaic-card-rail {
  grid-column: span 12;
  min-height: 245px;
  color: var(--ink);
  background: var(--sky);
  border-top-color: var(--lake);
}

.mosaic-all-link {
  margin-top: 34px;
}

.many-voices {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 181, 60, 0.17), transparent 28%),
    var(--copper-dark);
}

.voices-banner {
  position: relative;
  z-index: 2;
  padding: 24px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: var(--amber);
  transform: rotate(-0.55deg);
  transform-origin: center;
}

.voices-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.voices-phrase {
  position: relative;
  display: inline-block;
}

.voices-underline {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 5px;
  background: var(--lake);
  border-radius: 999px;
  transform: rotate(-2deg);
  transform-origin: center;
}

.voices-banner.can-animate .voices-phrase {
  opacity: 0;
  transform: translateY(8px);
}

.voices-banner.is-animated .voices-phrase {
  animation: voices-reveal 450ms ease-out forwards;
}

.voices-banner.is-animated .voices-phrase:nth-of-type(3) {
  animation-delay: 150ms;
}

.voices-banner.is-animated .voices-phrase:nth-of-type(5) {
  animation-delay: 300ms;
}

.voices-banner.is-animated .voices-underline {
  animation: voices-underline-pulse 1.2s ease-in-out 800ms 2;
}

@keyframes voices-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes voices-underline-pulse {
  0%, 100% { opacity: 0.75; transform: rotate(-2deg) scaleX(0.86); }
  50% { opacity: 1; transform: rotate(-2deg) scaleX(1.08); box-shadow: 0 0 0 7px rgba(15, 104, 116, 0.14); }
}

.voices-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(45px, 7vw, 105px);
  align-items: start;
  padding-top: clamp(90px, 9vw, 140px);
  padding-bottom: clamp(100px, 11vw, 170px);
}

.voices-intro {
  position: sticky;
  top: 120px;
}

.voices-intro h3 {
  margin: 14px 0 24px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.voices-intro > p:last-child {
  margin: 0;
  color: #f7f5ef;
  line-height: 1.7;
}

.community-question {
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border-radius: 3px 42px 3px 3px;
  box-shadow: 18px 18px 0 rgba(8, 25, 39, 0.3);
}

.question-heading,
.question-context,
.question-form,
.question-source-note {
  padding: clamp(28px, 5vw, 62px);
}

.question-heading {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.question-type,
.question-hero-meta {
  margin: 0 0 18px;
  color: var(--copper-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-heading h3 {
  max-width: 900px;
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.1vw, 5.8rem);
  letter-spacing: -0.072em;
  line-height: 0.92;
  text-transform: uppercase;
}

.question-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.question-context {
  background: #ecece4;
  border-bottom: 1px solid var(--line);
}

.question-context h2,
.question-context h4 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.question-context details {
  border-top: 1px solid rgba(8, 25, 39, 0.18);
}

.question-context details:last-child {
  border-bottom: 1px solid rgba(8, 25, 39, 0.18);
}

.question-context summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 850;
}

.question-context summary::after {
  content: "+";
  color: var(--copper-dark);
  font-size: 1.4rem;
}

.question-context details[open] summary::after {
  content: "–";
}

.question-context details p {
  max-width: 800px;
  margin: 0;
  padding: 0 0 24px;
  color: #4d5b63;
  line-height: 1.65;
}

.question-form {
  display: grid;
  gap: 30px;
}

.choice-fieldset {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-fieldset legend {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.choice-card {
  min-height: 58px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(8, 25, 39, 0.18);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover {
  border-color: rgba(8, 25, 39, 0.42);
}

.choice-card:focus-within {
  outline: 3px solid var(--lake);
  outline-offset: 2px;
}

.choice-card:has(input:checked) {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: inset 6px 0 0 var(--amber);
}

.choice-card input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--ink);
}

.choice-card span {
  font-weight: 760;
  line-height: 1.45;
}

.optional-field {
  display: grid;
  gap: 9px;
}

.optional-field[hidden] {
  display: none;
}

.optional-field label,
.idea-form > label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.optional-field label span,
.idea-form > label span {
  color: var(--muted);
  font-weight: 700;
}

.optional-field input,
.optional-field textarea,
.idea-form input,
.idea-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(8, 25, 39, 0.32);
  border-radius: 0;
  font: inherit;
}

.optional-field textarea,
.idea-form textarea {
  min-height: 110px;
  resize: vertical;
}

.optional-field input:focus,
.optional-field textarea:focus,
.idea-form input:focus,
.idea-form textarea:focus {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-color: var(--ink);
}

.optional-field small,
.field-meta,
.worksheet-note,
.question-status,
.noscript-note {
  color: #5b6970;
  font-size: 0.78rem;
  line-height: 1.5;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.field-meta output {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 800;
}

.question-note {
  margin: 0;
  padding: 22px 24px;
  color: #46555d;
  background: #e5e8e1;
  border-left: 6px solid var(--copper);
  line-height: 1.65;
}

.question-note a,
.question-source-note a {
  color: var(--copper-dark);
  font-weight: 800;
}

.worksheet-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.worksheet-actions .text-link {
  margin: 0;
  color: var(--ink);
}

.worksheet-note,
.question-status {
  min-height: 1.3em;
  margin: -18px 0 0;
}

.worksheet-note {
  color: var(--copper-dark);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.question-status {
  margin-top: -23px;
}

.response-summary {
  padding: 25px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-top: 8px solid var(--lake);
}

.response-summary[hidden] {
  display: none;
}

.response-summary h3,
.response-summary h4 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.response-summary p {
  margin: 9px 0 0;
  overflow-wrap: anywhere;
}

.question-source-note {
  color: #58666d;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  line-height: 1.55;
}

.question-source-note p {
  margin: 0 0 13px;
}

.question-source-note > a {
  display: inline-flex;
  gap: 8px;
}

.process {
  background: var(--paper);
}

.process-heading,
.paths-heading,
.projects-heading,
.types-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.process-heading h2,
.paths-heading h2,
.projects-heading h2,
.types-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.process-heading > p:last-child,
.projects-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.projects-heading {
  grid-template-areas:
    "eyebrow context"
    "title context";
  align-items: end;
}

.projects-heading .eyebrow {
  grid-area: eyebrow;
}

.projects-heading h2 {
  grid-area: title;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.projects-heading > p:last-child {
  grid-area: context;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
}

.process-flow li {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.process-flow li:last-child {
  border-right: 0;
}

.process-flow span,
.type-card > span,
.path-card > span {
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-flow strong {
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1;
  text-transform: uppercase;
}

.process-flow small {
  color: var(--muted);
  line-height: 1.5;
}

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

.reporting-card {
  padding: clamp(30px, 4vw, 52px);
  background: var(--cream);
  border-top: 7px solid var(--lake);
}

.reporting-card:last-child {
  color: var(--white);
  background: var(--navy);
  border-top-color: var(--amber);
}

.reporting-card h3 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.reporting-card > p:last-child {
  margin: 0;
  color: inherit;
  opacity: 0.74;
  line-height: 1.65;
}

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

.paths-heading {
  grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 0.9fr);
}

.paths-heading > p:last-child {
  margin: 0;
  color: #f7f5ef;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.path-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 42px);
  background: var(--navy);
}

.path-card h3,
.type-card h3 {
  margin: 24px 0 15px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.path-card h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.8rem);
}

.path-card p {
  margin: 0;
  color: #f7f5ef;
  line-height: 1.6;
}

.path-card a,
.path-card small {
  margin-top: auto;
  padding-top: 28px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.5;
  text-decoration: none;
}

.platform-question-example {
  margin: clamp(50px, 7vw, 85px) 0;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background: var(--copper-dark);
  border-top: 8px solid var(--amber);
  box-shadow: 12px 12px 0 var(--sky);
}

.platform-question-example h3 {
  margin: 10px 0 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.platform-question-example > p:not(.eyebrow) {
  color: #f7f5ef;
}

.platform-question-example .button {
  margin-top: 14px;
}

.platform-policy-question {
  scroll-margin-top: 118px;
  margin: clamp(60px, 8vw, 96px) 0;
  padding: clamp(30px, 5vw, 58px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 8px solid var(--lake);
  box-shadow: 12px 12px 0 rgba(43, 170, 195, 0.17);
}

.platform-policy-question > h3 {
  max-width: 780px;
  margin: 10px 0 22px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.platform-policy-question > p,
.platform-policy-question .platform-subsection > p {
  color: #42535d;
  line-height: 1.72;
}

.platform-policy-question .policy-question-lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.platform-policy-question .platform-subsection {
  border-color: var(--copper);
}

.platform-policy-question blockquote {
  margin: 30px 0 0;
  padding: 22px 26px;
  color: var(--white);
  background: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.platform-policy-question .button {
  margin-top: 30px;
}

.platform-concept-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(48px, 6vw, 78px) 0 20px;
}

.platform-concept-links a {
  min-height: 145px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-content: center;
  gap: 7px 12px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--lake);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.platform-concept-links a:hover,
.platform-concept-links a:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.platform-concept-links span {
  grid-row: span 2;
  color: var(--copper-dark);
  font-weight: 900;
}

.platform-concept-links strong {
  font-family: var(--display);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.platform-concept-links small {
  color: var(--muted);
}

.concept-diagram-note {
  margin: 0 0 48px !important;
  color: var(--muted) !important;
  font-size: 0.8rem !important;
}

.question-hero,
.ideas-hero,
.mosaic-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(135, 192, 207, 0.22), transparent 30%),
    var(--navy);
}

.question-hero-inner,
.ideas-hero-inner {
  min-height: clamp(540px, 68vh, 730px);
  display: grid;
  align-content: center;
  padding-block: clamp(100px, 12vw, 170px);
}

.question-hero h1,
.ideas-hero h1 {
  max-width: 1100px;
  margin: 14px 0 26px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 8.8rem);
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
}

.question-hero p:not(.eyebrow):not(.question-hero-meta),
.ideas-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 0 30px;
  color: #f7f5ef;
  font-size: 1.12rem;
}

.question-hero-meta {
  color: var(--amber);
}

.question-hero .button {
  justify-self: start;
}

.question-main {
  background: var(--paper);
}

.question-page-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.question-aside {
  position: sticky;
  top: 120px;
}

.question-aside h2 {
  margin: 12px 0 24px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.3vw, 4.4rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-transform: uppercase;
}

.question-aside p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.question-page-card {
  box-shadow: 14px 14px 0 var(--sky);
}

.question-page-card .question-context h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.mosaic-hero-grid {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding-block: clamp(72px, 8vw, 120px);
}

.mosaic-hero-grid > * {
  min-width: 0;
}

.mosaic-hero h1 {
  max-width: 100%;
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(4.25rem, 10vw, 9rem);
  letter-spacing: -0.085em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.mosaic-hero-deck {
  max-width: 700px;
  margin: 0;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
}

.mosaic-hero-copy p {
  color: #f7f5ef;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mosaic-hero-copy strong {
  color: var(--white);
}

.mosaic-economic-case {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(135, 192, 207, 0.2), transparent 27rem),
    var(--paper);
  border-top: 1px solid var(--line);
}

.mosaic-economic-case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(80px, 13vw, 210px);
  height: 8px;
  background: linear-gradient(90deg, var(--lake), var(--amber));
}

.mosaic-case-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "label lead"
    "title lead"
    "title body";
  column-gap: clamp(48px, 8vw, 130px);
  row-gap: 18px;
  align-items: start;
}

.mosaic-case-heading .eyebrow {
  grid-area: label;
}

.mosaic-case-heading h2 {
  grid-area: title;
  max-width: 690px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.7vw, 5.2rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.mosaic-case-heading p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.mosaic-case-heading .mosaic-case-lead {
  grid-area: lead;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.mosaic-case-heading > p:last-child {
  grid-area: body;
}

.mosaic-economic-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(54px, 8vw, 105px);
}

.mosaic-economic-card {
  min-width: 0;
  min-height: 340px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border-top: 7px solid var(--lake);
  box-shadow: 0 18px 44px rgba(4, 17, 27, 0.09);
}

.mosaic-economic-card:nth-child(2) {
  border-top-color: var(--amber);
}

.mosaic-economic-card:nth-child(3) {
  border-top-color: var(--copper);
}

.mosaic-economic-card > span {
  display: block;
  margin-bottom: clamp(38px, 6vw, 72px);
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.mosaic-economic-card h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.35vw, 2.65rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.mosaic-economic-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.mosaic-value-chain-title {
  margin: clamp(18px, 3vw, 32px) 0 0;
  padding: clamp(22px, 3vw, 32px) clamp(24px, 3vw, 38px) 0;
  color: var(--amber);
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mosaic-value-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  list-style: none;
}

.mosaic-value-chain li {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.mosaic-value-chain li:last-child {
  border-right: 0;
}

.mosaic-value-chain span,
.mosaic-value-chain strong,
.mosaic-value-chain small {
  display: block;
}

.mosaic-value-chain span {
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mosaic-value-chain strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.mosaic-value-chain small {
  margin-top: 10px;
  color: #f7f5ef;
  font-size: 0.78rem;
  line-height: 1.5;
}

.mosaic-proof-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  margin-top: clamp(18px, 3vw, 32px);
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background: var(--copper-dark);
}

.mosaic-proof-note p {
  margin: 0;
}

.mosaic-proof-note p:last-child {
  max-width: 930px;
  color: #f7f5ef;
  font-size: 1.03rem;
  line-height: 1.7;
}

.mosaic-proof-note strong {
  color: var(--white);
}

.platform-mosaic-economy {
  border-top-color: var(--amber);
}

.platform-mosaic-economy .eyebrow {
  margin: 0 0 12px;
  color: var(--copper-dark);
}

.platform-mosaic-economy a {
  color: var(--copper-dark);
  font-weight: 850;
  text-underline-offset: 0.2em;
}

.mosaic-map-section {
  background: var(--cream);
}

.mosaic-map-shell {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding-right: max(20px, env(safe-area-inset-right));
  padding-left: max(20px, env(safe-area-inset-left));
}

.mosaic-map-heading {
  max-width: 920px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.mosaic-map-heading h2 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6.25rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.mosaic-map-heading > p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.mosaic-map-figure {
  margin: 0;
}

.mosaic-map-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8e6df;
  border: 1px solid var(--line);
  border-radius: 36px 4px 30px 4px;
  box-shadow: var(--shadow);
}

.mosaic-map-link img {
  width: 100%;
  height: auto;
}

.mosaic-map-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(8, 25, 39, 0.94);
  border-radius: 4px;
  font-weight: 850;
}

.mosaic-map-figure figcaption {
  max-width: 1050px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.mosaic-concept-index {
  display: grid;
  gap: clamp(42px, 7vw, 80px);
  margin-top: clamp(52px, 7vw, 88px);
}

.mosaic-concept-index > section,
.concept-index-grid li,
.concept-index-grid a {
  min-width: 0;
}

.concept-index-grid {
  display: grid;
  gap: 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

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

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

.concept-index-grid a {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border-top: 7px solid var(--concept-accent);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.concept-index-grid a:hover,
.concept-index-grid a:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.concept-index-grid span {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.concept-index-grid strong {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.concept-index-grid small {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.35;
}

.mosaic-projects {
  color: var(--white);
  background: var(--navy);
}

.projects-heading > p:last-child {
  color: #f7f5ef;
}

.project-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 32rem), 1fr));
  gap: 18px;
}

.project-detail {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(28px, 4vw, 50px);
  color: var(--ink);
  background: var(--cream);
  border-top: 8px solid var(--amber);
  scroll-margin-top: 115px;
}

.project-detail header {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 25px;
}

.project-detail header > div {
  min-width: 0;
}

.project-detail header > span {
  color: var(--copper-dark);
  font-family: var(--display);
  font-size: 2.2rem;
}

.project-detail header p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.project-detail > p {
  color: #46555d;
  line-height: 1.67;
}

.project-detail dl {
  display: grid;
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.project-detail dl div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.project-detail dt {
  color: var(--copper-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-detail dd {
  margin: 0;
  color: #516067;
  font-size: 0.88rem;
  line-height: 1.5;
}

.project-detail > a {
  margin-top: auto;
  padding-top: 20px;
  color: var(--copper-dark);
  font-weight: 850;
  text-decoration: none;
}

.mosaic-discussion {
  background:
    linear-gradient(135deg, rgba(135, 192, 207, 0.18), transparent 48%),
    var(--paper);
}

.mosaic-discussion-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(28px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}

.mosaic-discussion-heading h2 {
  max-width: 880px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.5vw, 6.2rem);
  letter-spacing: -0.07em;
  line-height: 0.91;
  text-transform: uppercase;
}

.mosaic-discussion-heading > p {
  margin: 0;
  color: #485a65;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.mosaic-discussion-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.mosaic-comment-form,
.mosaic-comment-feed {
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(8, 25, 39, 0.08);
}

.mosaic-comment-form {
  border-top: 7px solid var(--copper);
}

.mosaic-comment-form h3,
.mosaic-comment-feed h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.comment-policy {
  margin: 18px 0 28px;
  padding: 16px 18px;
  color: #485a65;
  background: #eef5f5;
  border-left: 4px solid var(--lake);
  font-size: 0.87rem;
  line-height: 1.55;
}

.mosaic-comment-form > label,
.comment-label-row label {
  display: block;
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.mosaic-comment-form > label span {
  color: var(--muted);
  font-weight: 650;
}

.comment-label-row {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
}

.comment-label-row > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.mosaic-comment-form input,
.mosaic-comment-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aebdc4;
  border-radius: 3px;
  font: inherit;
}

.mosaic-comment-form input {
  min-height: 50px;
}

.mosaic-comment-form textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.55;
}

.mosaic-comment-form input:focus,
.mosaic-comment-form textarea:focus {
  outline: 3px solid rgba(231, 164, 67, 0.42);
  outline-offset: 2px;
  border-color: var(--copper-dark);
}

.mosaic-comment-form .field-help {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

.comment-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.mosaic-comment-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.mosaic-comment-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.comment-form-status {
  min-height: 1.7em;
  margin: 13px 0 0;
  color: #2f6c36;
  font-size: 0.88rem;
  font-weight: 750;
}

.comment-form-status.is-error {
  color: #8f2d23;
}

.mosaic-comment-feed {
  border-top: 7px solid var(--lake);
}

.comment-feed-heading {
  display: flex;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
}

.comment-feed-heading .eyebrow {
  margin-bottom: 10px;
}

.comment-refresh {
  min-height: 44px;
  padding: 0 14px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.comment-refresh:hover,
.comment-refresh:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.comment-refresh:disabled {
  cursor: wait;
  opacity: 0.55;
}

.comment-feed-status {
  margin: 24px 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.mosaic-comment-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mosaic-comment-list article {
  padding: clamp(18px, 3vw, 27px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.mosaic-comment-list header {
  display: flex;
  gap: 12px 22px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 11px;
}

.mosaic-comment-list h4 {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.mosaic-comment-list time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
}

.mosaic-comment-list p {
  margin: 0;
  color: #344b58;
  line-height: 1.6;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.mosaic-notice {
  color: var(--white);
  background: var(--copper-dark);
}

.mosaic-notice-inner {
  max-width: 1030px;
}

.mosaic-notice h2 {
  margin: 12px 0 22px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.mosaic-notice p:not(.eyebrow) {
  max-width: 850px;
  color: #f7f5ef;
  font-size: 1.06rem;
}

.mosaic-notice .button {
  margin-top: 20px;
}

.participation-types {
  background: var(--paper);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.type-card {
  grid-column: span 2;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  border-right: 1px solid var(--line);
}

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

.type-card:nth-child(n + 4) {
  grid-column: span 3;
  border-top: 1px solid var(--line);
}

.type-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.type-card a,
.type-card small {
  margin-top: auto;
  padding-top: 24px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.5;
  text-decoration: none;
}

.type-card a {
  min-height: 44px;
  display: flex;
  align-items: flex-end;
}

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

.idea-builder-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(430px, 1.3fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
}

.idea-builder-copy {
  position: sticky;
  top: 120px;
}

.idea-builder-copy h2 {
  margin: 12px 0 25px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.idea-builder-copy p:not(.eyebrow) {
  color: #f7f5ef;
  line-height: 1.7;
}

.idea-builder-copy strong {
  color: var(--amber);
}

.idea-form {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 5vw, 58px);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 16px 16px 0 var(--copper);
}

.idea-form textarea + label,
.idea-form input + label {
  margin-top: 14px;
}

.idea-form .button {
  justify-self: start;
  margin-top: 18px;
}

.idea-summary {
  margin-top: 10px;
}

.handling {
  background: var(--cream);
}

.handling-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
}

.handling-heading {
  position: sticky;
  top: 120px;
  min-width: 0;
}

.handling-heading h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.handling-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.handling-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.handling-list li > span {
  color: var(--copper-dark);
  font-weight: 900;
}

.handling-list strong {
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.handling-list p {
  margin: 5px 0 0;
  color: var(--muted);
}

.privacy-principles {
  margin-top: 38px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background: var(--navy);
  border-top: 7px solid var(--amber);
}

.privacy-principles h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.privacy-principles ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #f7f5ef;
}

@media (max-width: 1180px) {
  .school-feature-grid {
    grid-template-columns: 140px 1fr;
  }

  .voices-layout,
  .question-page-grid,
  .idea-builder-grid,
  .handling-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .voices-intro,
  .question-aside,
  .idea-builder-copy,
  .handling-heading {
    position: static;
  }

  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-flow li:nth-child(3) {
    border-right: 0;
  }

  .process-flow li:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

  .type-card,
  .type-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .type-card:nth-child(2),
  .type-card:nth-child(4),
  .path-card:nth-child(2),
  .path-card:nth-child(4) {
    border-right: 0;
  }

  .mosaic-hero-grid {
    grid-template-columns: 1fr;
    align-content: center;
  }

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

  .campaign-assets-grid {
    grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  }

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

  .mosaic-card,
  .mosaic-card-split,
  .mosaic-card-wharf,
  .mosaic-card-stay,
  .mosaic-card-station {
    grid-column: auto;
  }

  .mosaic-card-north,
  .mosaic-card-rail {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .mosaic-discussion-heading,
  .mosaic-discussion-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mosaic-discussion-heading {
    align-items: start;
  }

  .mosaic-case-heading {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "label"
      "title"
      "lead"
      "body";
    gap: 22px;
  }

  .mosaic-case-heading h2,
  .mosaic-case-heading p {
    max-width: 760px;
  }

  .mosaic-economic-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .mosaic-economic-card {
    min-height: 0;
  }

  .mosaic-economic-card > span {
    margin-bottom: 28px;
  }

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

  .mosaic-value-chain li:nth-child(2) {
    border-right: 0;
  }

  .mosaic-value-chain li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mosaic-proof-note {
    grid-template-columns: minmax(0, 1fr);
  }

  .mosaic-concepts {
    grid-template-columns: 1fr;
  }

  .mosaic-card,
  .mosaic-card-north,
  .mosaic-card-rail {
    grid-column: auto;
  }

  .projects-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "context";
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .mosaic-discussion-heading h2 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .mosaic-comment-form,
  .mosaic-comment-feed {
    padding: 24px 20px;
  }

  .comment-feed-heading,
  .mosaic-comment-list header {
    align-items: flex-start;
    flex-direction: column;
  }

  .comment-refresh {
    width: 100%;
  }

  .platform-hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.6rem);
    letter-spacing: -0.09em;
  }

  .mosaic-hero-grid {
    gap: 38px;
    padding-block: 76px;
  }

  .mosaic-hero h1 {
    font-size: clamp(4.1rem, 20vw, 5.4rem);
    letter-spacing: -0.075em;
  }

  .mosaic-map-shell {
    width: 100%;
    padding-right: max(12px, env(safe-area-inset-right));
    padding-left: max(12px, env(safe-area-inset-left));
  }

  .mosaic-map-link {
    border-radius: 24px 0 18px;
  }

  .mosaic-map-action {
    position: static;
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }

  .home-mosaic-map a {
    border-radius: 24px 0 18px;
  }

  .home-mosaic-map a > span {
    position: static;
    width: 100%;
    justify-content: center;
  }

  .concept-index-grid-local,
  .concept-index-grid-regional,
  .campaign-assets-grid,
  .learning-categories {
    grid-template-columns: 1fr;
  }

  .mosaic-value-chain {
    grid-template-columns: minmax(0, 1fr);
  }

  .mosaic-value-chain li,
  .mosaic-value-chain li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mosaic-value-chain li:last-child {
    border-bottom: 0;
  }

  .campaign-asset-portrait {
    max-width: 430px;
  }

  .exploration-copy h3 {
    font-size: clamp(1.75rem, 8.5vw, 2.4rem);
  }

  .platform-subsection h3 {
    font-size: clamp(1.45rem, 7.5vw, 2.2rem);
  }

  .campaign-assets {
    padding: 28px 22px;
  }

  .campaign-assets-heading h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .project-detail {
    padding: 25px 22px;
  }

  .project-detail h3 {
    font-size: clamp(1.4rem, 7vw, 2.25rem);
  }

  .mosaic-notice h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .question-page-card .question-context h2 {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  .school-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .school-feature-number {
    font-size: 6rem;
  }

  .voices-banner {
    transform: none;
  }

  .voices-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: clamp(1.55rem, 9vw, 2.5rem);
  }

  .voices-dot {
    display: none;
  }

  .voices-underline {
    bottom: -5px;
  }

  .question-heading,
  .question-context,
  .question-form,
  .question-source-note {
    padding: 27px 20px;
  }

  .community-question,
  .question-page-card {
    border-radius: 0 26px 0 0;
    box-shadow: 8px 8px 0 rgba(8, 25, 39, 0.25);
  }

  .field-meta,
  .worksheet-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-heading,
  .paths-heading,
  .projects-heading,
  .types-heading,
  .reporting-grid,
  .project-detail-list,
  .platform-concept-links {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow li,
  .process-flow li:nth-child(3),
  .process-flow li:nth-child(-n + 3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-grid,
  .type-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .type-card {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .project-detail {
    min-height: 0;
  }

  .project-detail dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .mosaic-card-rail {
    grid-column: span 1;
  }
}

@media (max-width: 360px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
  }

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

  .brand-copy small {
    max-width: none;
    margin-top: 4px;
    font-size: 0.5rem;
    letter-spacing: 0.05em;
  }

  .menu-button {
    flex-basis: 44px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 10px;
  }

  .school-feature-copy h2 {
    font-size: clamp(2.1rem, 11.5vw, 2.55rem);
    letter-spacing: -0.06em;
  }

  .handling-heading h2 {
    font-size: clamp(2rem, 10vw, 2.5rem);
    letter-spacing: -0.055em;
  }

  .question-hero h1,
  .ideas-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.2rem);
    line-height: 0.9;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 1100px) {
  html {
    scroll-padding-top: calc(74px + env(safe-area-inset-top));
  }

  .header-inner {
    min-height: 64px;
  }

  .site-nav {
    inset: calc(69px + env(safe-area-inset-top)) 0 auto;
    max-height: calc(100vh - 69px - env(safe-area-inset-top));
    max-height: calc(100dvh - 69px - env(safe-area-inset-top));
    padding-top: 10px;
  }

  .site-nav a {
    min-height: 48px;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.65fr);
    gap: 16px;
    padding-top: 0;
  }

  .hero-copy {
    padding: 28px 0;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 9vw, 5rem);
    line-height: 0.8;
  }

  .preacher-label {
    margin: 18px 0 16px;
    font-size: clamp(1.05rem, 2.7vw, 1.4rem);
  }

  .hero-intro {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 16px;
  }

  .hero-meta {
    margin-top: 16px;
    font-size: 0.72rem;
  }

  .hero-portrait {
    width: 100%;
    min-height: 350px;
  }

  .hero-portrait img {
    width: 100%;
    max-height: 380px;
  }

  .portrait-halo {
    bottom: 48px;
    width: min(31vw, 250px);
  }

  .portrait-type {
    top: 8px;
    font-size: clamp(2.6rem, 6.5vw, 4rem);
  }

  .portrait-caption {
    bottom: 26px;
    min-width: 145px;
    padding: 8px 10px;
  }

  .portrait-caption strong {
    font-size: 1.08rem;
  }

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

  .rail-grid a,
  .rail-grid a:first-child {
    min-height: 92px;
    padding: 16px 20px;
    border-right: 1px solid rgba(8, 25, 39, 0.15);
    border-bottom: 0;
    border-left: 0;
  }

  .rail-grid a:first-child {
    border-left: 1px solid rgba(8, 25, 39, 0.15);
  }

  .rail-grid a::after,
  .rail-grid small {
    display: none;
  }

  .platform-hero-inner,
  .question-hero-inner,
  .ideas-hero-inner {
    min-height: 0;
    padding-block: 44px;
  }

  .platform-hero-inner {
    gap: 24px;
  }

  .platform-hero h1 {
    font-size: clamp(2.9rem, 8.5vw, 4.2rem);
  }

  .platform-hero-deck {
    font-size: clamp(1.15rem, 3.2vw, 1.5rem);
  }

  .mosaic-hero-grid {
    gap: 24px;
    padding-block: 44px;
  }

  .mosaic-hero h1 {
    font-size: clamp(3.4rem, 9vw, 5.2rem);
  }
}

@media (orientation: landscape) and (min-width: 600px) and (max-height: 520px) and (max-width: 1100px) {
  .platform-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.5fr);
    align-items: center;
  }

  .platform-hero-note {
    width: 100%;
  }

  .mosaic-hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
    align-items: center;
  }
}

@media (max-height: 800px) and (min-width: 1181px) {
  .question-aside,
  .idea-builder-copy,
  .handling-heading {
    position: static;
  }
}

@media (hover: none) {
  .button:hover,
  .priority-card:hover,
  .mosaic-card:hover,
  .platform-threads a:hover,
  .circle-link:hover,
  .platform-concept-links a:hover,
  .concept-index-grid a:hover {
    transform: none;
  }

  .home-mosaic-map a:hover img {
    transform: none;
  }
}

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

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

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

  .voices-banner.can-animate .voices-phrase,
  .voices-banner.is-animated .voices-phrase,
  .voices-banner.is-animated .voices-underline {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media print {
  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero,
  .hometown,
  .priorities,
  .mosaic-section,
  .mosaic-economic-case,
  .reconciliation,
  .statement,
  .many-voices,
  .involve,
  .contact,
  .voices,
  .participation-paths,
  .mosaic-projects,
  .mosaic-notice,
  .idea-builder,
  .question-hero,
  .ideas-hero,
  .mosaic-hero {
    color: #000 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .hero *,
  .hometown *,
  .priorities *,
  .mosaic-section *,
  .mosaic-economic-case *,
  .reconciliation *,
  .statement *,
  .many-voices *,
  .involve *,
  .contact *,
  .voices *,
  .participation-paths *,
  .mosaic-projects *,
  .mosaic-notice *,
  .idea-builder *,
  .question-hero *,
  .ideas-hero *,
  .mosaic-hero * {
    color: #000 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
  }

  .hero::before,
  .hero-lines,
  .portrait-halo,
  .portrait-type,
  .mosaic-word {
    display: none !important;
  }

  .site-header,
  .platform-toc,
  .platform-hero .button,
  .platform-finale .button,
  .site-footer,
  .platform-map a > span {
    display: none !important;
  }

  body,
  .platform-page,
  .platform-hero,
  .platform-opening,
  .platform-caveat {
    color: #000;
    background: #fff !important;
  }

  .platform-hero-inner {
    min-height: 0;
    display: block;
    padding: 0 0 40px;
  }

  .platform-hero h1,
  .platform-hero-deck,
  .platform-status,
  .platform-caveat p:last-child,
  .platform-caveat strong {
    color: #000;
  }

  .platform-hero-lines,
  .platform-hero::after,
  .platform-hero-note {
    display: none;
  }

  .platform-opening {
    padding: 30px 0;
  }

  .platform-opening-grid,
  .platform-layout {
    display: block;
  }

  .platform-layout {
    padding: 30px 0;
  }

  .platform-chapter,
  .platform-chapter + .platform-chapter {
    padding: 30px 0;
    break-inside: auto;
  }

  .chapter-header,
  .platform-subsection,
  .platform-map,
  .platform-caveat,
  .platform-sources {
    break-inside: avoid;
  }

  .chapter-copy {
    max-width: none;
    margin-left: 0;
  }

  .platform-map {
    width: 100%;
    box-shadow: none;
  }

  .mosaic-economic-card,
  .mosaic-value-chain-title,
  .mosaic-value-chain,
  .mosaic-proof-note {
    color: #000 !important;
    background: #fff !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  .mosaic-value-chain-title,
  .mosaic-value-chain,
  .mosaic-proof-note {
    border: 1px solid #999;
  }

  a {
    text-decoration: none;
  }
}
