:root {
  --navy: #20303b;
  --navy-deep: #14212a;
  --navy-soft: #334854;
  --red: #873f3f;
  --clay: #b86643;
  --sage: #71806a;
  --gold: #d7ae58;
  --cream: #f3e9d6;
  --paper: #fbf6eb;
  --ink: #253039;
  --muted: #657078;
  --line: rgba(32, 48, 59, 0.16);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(30, 39, 44, 0.18);
  --radius: 6px;
  --wrap: min(1180px, calc(100% - 40px));
}

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

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

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

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

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--navy);
  border-radius: 3px;
  transform: translateY(-160%);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--navy);
  border-bottom: 1px solid rgba(32, 48, 59, 0.13);
}

.site-header.is-stuck {
  position: fixed;
  color: var(--navy);
  background: rgba(251, 246, 235, 0.94);
  box-shadow: 0 8px 30px rgba(32, 48, 59, 0.08);
  backdrop-filter: blur(14px);
  animation: header-in 220ms ease-out both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

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

.brand-symbol {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid !important;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  border-radius: 12px;
  box-shadow: 0 7px 22px rgba(32, 48, 59, 0.24);
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol i {
  position: absolute;
  content: "";
  border: 2px solid var(--cream);
  border-right-color: transparent;
  border-radius: 50%;
}

.brand-symbol::before { width: 28px; height: 28px; }
.brand-symbol::after { width: 19px; height: 19px; opacity: 0.88; }
.brand-symbol i { width: 10px; height: 10px; opacity: 0.74; }

.brand-symbol i::after {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 2px;
  height: 15px;
  content: "";
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(18deg);
  transform-origin: top;
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: inherit;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  opacity: 0.68;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.button,
.text-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.button {
  padding: 13px 21px;
  color: var(--paper);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(104, 43, 43, 0.18);
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 30px rgba(32, 48, 59, 0.23);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.72rem;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.text-link {
  min-height: 44px;
  padding-block: 5px;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: min(870px, 100vh);
  padding-top: 82px;
  overflow: hidden;
  color: var(--navy);
  background: var(--cream);
}

.hero::before {
  position: absolute;
  z-index: 3;
  top: 82px;
  bottom: 0;
  left: calc(50% - 9px);
  width: 1px;
  content: "";
  background: linear-gradient(transparent 4%, rgba(32, 48, 59, 0.12) 16%, rgba(32, 48, 59, 0.12) 84%, transparent 96%);
}

.hero-art {
  position: absolute;
  inset: 82px 0 0;
  background: var(--cream) url("/assets/images/15_feature_graphic.webp") center / cover no-repeat;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(243, 233, 214, 0.32), transparent 48%, rgba(20, 33, 42, 0.06));
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: clamp(100px, 15vh, 160px);
}

.hero-content > * {
  max-width: min(620px, 47%);
}

.kicker,
.eyebrow {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker span {
  width: 34px;
  height: 2px;
  display: inline-block;
  background: var(--red);
}

.hero h1 {
  margin: 28px 0;
  max-width: 660px;
}

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

.hero-copy {
  max-width: 540px;
  margin-bottom: 32px;
  color: rgba(32, 48, 59, 0.81);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.hero-status {
  position: absolute;
  z-index: 6;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 0;
  width: min(50vw, 600px);
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 23px 28px;
  color: var(--paper);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.status-mark {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: var(--gold);
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(215, 174, 88, 0.14);
}

.hero-status small,
.hero-status strong {
  display: block;
}

.hero-status small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-status strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-status p {
  margin: 0;
  padding-left: 18px;
  color: rgba(243, 233, 214, 0.72);
  border-left: 1px solid rgba(243, 233, 214, 0.2);
  font-size: 0.75rem;
  line-height: 1.5;
}

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
}

.split-grid,
.stories-grid,
.visit-grid,
.involved-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 64%;
  height: 74%;
  content: "";
  background: var(--gold);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stamp {
  position: absolute;
  right: -28px;
  bottom: 32px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--red), 0 10px 28px rgba(32, 48, 59, 0.22);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.section-copy h2,
.stories-copy h2,
.visit-copy h2,
.involved-copy h2 {
  max-width: 700px;
}

.section-copy > p:not(.eyebrow),
.stories-copy > p:not(.eyebrow),
.visit-copy > p:not(.eyebrow),
.involved-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.large-copy {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.45;
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 38px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.legacy-stats dt,
.legacy-stats dd {
  margin: 0;
}

.legacy-stats dt {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
}

.legacy-stats dd {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-navy {
  color: var(--paper);
  background: var(--navy);
}

.section-navy::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 84% 9%, rgba(215, 174, 88, 0.1), transparent 24%), linear-gradient(120deg, transparent 0 63%, rgba(255,255,255,0.018) 63% 64%, transparent 64%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.section-heading.light h2 {
  color: var(--paper);
}

.section-heading.light > p {
  color: rgba(243, 233, 214, 0.66);
}

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

.archive-image {
  position: relative;
  margin-bottom: 58px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 24px 70px rgba(5, 12, 16, 0.36);
}

.archive-image img {
  width: 100%;
  height: clamp(300px, 50vw, 570px);
  object-fit: cover;
  opacity: 0.78;
}

.archive-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(13, 24, 31, 0.88));
}

.archive-label {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 34px;
  left: 40px;
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 1fr;
  align-items: end;
  gap: 24px;
}

.archive-label span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-label strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.archive-label small {
  color: rgba(243, 233, 214, 0.74);
  text-align: right;
}

.schedule-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.schedule-day {
  padding: clamp(25px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border-top: 5px solid var(--gold);
}

.schedule-heading {
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.schedule-heading .eyebrow {
  color: var(--red);
}

.schedule-heading h3 {
  margin-bottom: 0;
}

.schedule-heading > span {
  max-width: 120px;
  padding: 6px 9px;
  color: var(--navy);
  background: rgba(113, 128, 106, 0.14);
  border-radius: 2px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.timeline {
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 0.72fr) 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline time {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.2;
}

.timeline span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.archive-note {
  position: relative;
  max-width: 760px;
  margin: 32px auto 0;
  color: rgba(243, 233, 214, 0.6);
  font-size: 0.74rem;
  text-align: center;
}

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

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.experience-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-deep);
  box-shadow: 0 18px 40px rgba(32, 48, 59, 0.16);
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 420ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.experience-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 25%, rgba(15, 26, 33, 0.91) 92%);
}

.experience-card:hover img {
  opacity: 0.94;
  transform: scale(1.035);
}

.experience-card > div {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 25px;
  left: 26px;
}

.experience-card span {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 6px 0 9px;
  color: var(--paper);
}

.experience-card p {
  margin: 0;
  color: rgba(243, 233, 214, 0.75);
  font-size: 0.8rem;
  line-height: 1.5;
}

.feature-card {
  grid-column: span 2;
}

.wide-card {
  grid-column: span 3;
  min-height: 410px;
}

.stories {
  overflow: hidden;
}

.stories::after {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -16vw;
  width: 46vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(135, 63, 63, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(135, 63, 63, 0.03), 0 0 0 76px rgba(135, 63, 63, 0.025), 0 0 0 114px rgba(135, 63, 63, 0.02);
}

.stories-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.check-list {
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 19px;
  left: 4px;
  width: 14px;
  height: 8px;
  content: "";
  border-bottom: 2px solid var(--red);
  border-left: 2px solid var(--red);
  transform: rotate(-45deg);
}

.story-images {
  position: relative;
  min-height: 600px;
}

.story-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  height: 70%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-inset {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 43%;
  object-fit: cover;
  border: 9px solid var(--paper);
  box-shadow: 0 16px 45px rgba(32, 48, 59, 0.23);
}

.section-clay {
  color: var(--paper);
  background: var(--clay);
}

.visit-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.visit-image {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(243, 233, 214, 0.32);
}

.visit-image::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 60%;
  height: 60%;
  content: "";
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.visit-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visit-copy .eyebrow {
  color: var(--cream);
}

.visit-copy h2,
.visit-copy > p:not(.eyebrow) {
  color: var(--paper);
}

.visit-copy > p:not(.eyebrow) {
  opacity: 0.8;
}

.visit-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.visit-facts div {
  padding: 18px;
  background: rgba(32, 48, 59, 0.16);
  border: 1px solid rgba(243, 233, 214, 0.2);
}

.visit-facts span,
.visit-facts strong {
  display: block;
}

.visit-facts span {
  color: rgba(243, 233, 214, 0.68);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-facts strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
}

.button-cream {
  color: var(--navy);
  background: var(--cream);
  border-color: var(--cream);
}

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

.external-note {
  margin: 12px 0 0 !important;
  font-size: 0.69rem;
  line-height: 1.45;
}

.involved-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.involved .image-frame {
  order: 2;
}

.involved .image-frame::before {
  right: auto;
  left: -18px;
  background: var(--sage);
}

.involved .image-frame img {
  aspect-ratio: 16 / 11;
}

.app-callout {
  padding-top: 0;
}

.app-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(25px, 4vw, 50px);
  padding: clamp(30px, 5vw, 58px);
  color: var(--paper);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.app-icon {
  width: clamp(100px, 14vw, 160px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-radius: 28%;
  box-shadow: 0 18px 38px rgba(4, 13, 19, 0.34);
}

.app-icon .brand-symbol {
  width: 72%;
  height: 72%;
  border-radius: 26%;
  box-shadow: none;
}

.app-icon .brand-symbol::before { width: 62%; height: 62%; border-width: 4px; }
.app-icon .brand-symbol::after { width: 43%; height: 43%; border-width: 4px; }
.app-icon .brand-symbol i { width: 24%; height: 24%; border-width: 4px; }
.app-icon .brand-symbol i::after { top: 82%; left: 25%; width: 4px; height: 52%; }

.app-panel h2 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.app-panel p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(243, 233, 214, 0.7);
}

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

.button-outline {
  color: var(--cream);
  background: transparent;
  border-color: rgba(243, 233, 214, 0.48);
  box-shadow: none;
  white-space: nowrap;
}

.site-footer {
  padding: 74px 0 26px;
  color: rgba(243, 233, 214, 0.67);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 1fr;
  gap: clamp(40px, 8vw, 100px);
}

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

.brand-footer .brand-symbol {
  width: 56px;
  height: 56px;
}

.footer-lead > p {
  max-width: 550px;
  margin: 25px 0 0;
  font-size: 0.77rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer div > a:not(.brand) {
  width: fit-content;
  display: block;
  margin: 9px 0;
  color: rgba(243, 233, 214, 0.75);
  font-size: 0.76rem;
  text-decoration-color: rgba(243, 233, 214, 0.25);
}

.site-footer div > p {
  font-size: 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(243, 233, 214, 0.12);
  font-size: 0.68rem;
}

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

.policy-hero {
  padding: 160px 0 90px;
  color: var(--paper);
  background: var(--navy);
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.policy-hero h1 {
  margin: 20px 0;
  color: var(--paper);
}

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

.policy-hero .kicker span {
  background: var(--gold);
}

.policy-hero p:not(.kicker) {
  max-width: 700px;
  color: rgba(243, 233, 214, 0.72);
  font-size: 1.05rem;
}

.policy-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid rgba(243, 233, 214, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.policy-meta span {
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(215, 174, 88, 0.08);
  border: 1px solid rgba(215, 174, 88, 0.24);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
  padding-block: 90px 130px;
}

.policy-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  background: var(--cream);
  border-top: 5px solid var(--red);
}

.policy-summary ul {
  padding: 0;
  margin: 20px 0 26px;
  list-style: none;
}

.policy-summary li {
  padding: 10px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
}

.policy-summary .text-link {
  font-size: 0.67rem;
}

.policy-section {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 25px;
  padding: 0 0 45px;
  margin: 0 0 45px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.policy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(135, 63, 63, 0.08);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.policy-section h2 {
  margin: 3px 0 18px;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
}

.policy-section p {
  margin: 0;
  color: #536068;
}

.policy-section a {
  color: var(--red);
  font-weight: 700;
}

.error-main {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 150px 20px 90px;
  background: var(--cream) url("/assets/images/01_heritage_roots.webp") center / cover no-repeat;
}

.error-panel {
  width: min(680px, 100%);
  padding: clamp(32px, 7vw, 72px);
  background: rgba(251, 246, 235, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(10px);
}

.error-panel h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.error-panel p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root { --wrap: min(100% - 32px, 820px); }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 14px 22px 22px;
    color: var(--navy);
    background: var(--paper);
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button { margin-top: 14px; }

  .hero { min-height: 920px; }
  .hero::before { display: none; }
  .hero-art {
    inset: auto 0 0;
    height: 53%;
    background-position: 66% center;
  }
  .hero-art::after { background: linear-gradient(180deg, var(--cream) 0, transparent 20%); }
  .hero-content { padding-top: 90px; }
  .hero-content > * { max-width: 680px; }
  .hero h1 { max-width: 760px; font-size: clamp(3.6rem, 10vw, 6.5rem); }
  .hero-copy { max-width: 560px; }
  .hero-status { right: 16px; left: 16px; width: auto; }

  .split-grid,
  .stories-grid,
  .visit-grid,
  .involved-grid { grid-template-columns: 1fr; }

  .section-copy { max-width: 720px; }
  .image-frame { width: min(720px, calc(100% - 18px)); }

  .schedule-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { grid-column: span 2; }
  .wide-card { grid-column: span 2; }

  .story-images { min-height: 650px; }
  .visit-copy { max-width: 680px; }
  .involved .image-frame { order: 0; justify-self: end; }
  .involved-copy { max-width: 720px; }

  .app-panel { grid-template-columns: auto 1fr; }
  .app-panel .button { grid-column: span 2; width: fit-content; }

  .policy-hero-grid { grid-template-columns: 1fr; }
  .policy-hero img { max-width: 640px; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-summary { position: static; }

  .footer-grid { grid-template-columns: 1.4fr 0.6fr; }
  .footer-grid > div:last-child { grid-column: span 2; }
}

@media (max-width: 680px) {
  :root { --wrap: calc(100% - 28px); }
  body { font-size: 15px; }
  h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  h2 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .header-inner { min-height: 72px; }
  .brand .brand-symbol { width: 42px; height: 42px; }
  .brand strong { font-size: 1rem; }
  .site-header.is-stuck .header-inner { min-height: 66px; }
  .site-nav { top: 64px; }

  .hero { min-height: 920px; padding-top: 72px; }
  .hero-art { height: 49%; background-position: 70% center; }
  .hero-content { padding-top: 70px; }
  .hero h1 { margin: 22px 0; }
  .hero-copy { font-size: 1rem; }
  .button-row { align-items: flex-start; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-status {
    grid-template-columns: auto 1fr;
    min-height: 120px;
    padding: 20px;
  }
  .hero-status p { grid-column: span 2; padding: 12px 0 0; border-top: 1px solid rgba(243, 233, 214, .2); border-left: 0; }

  .section { padding-block: 80px; }
  .split-grid,
  .stories-grid,
  .visit-grid,
  .involved-grid { gap: 62px; }
  .image-stamp { right: -5px; bottom: 22px; width: 78px; height: 78px; }
  .legacy-stats { grid-template-columns: 1fr; }
  .legacy-stats div { padding: 10px 0; border-bottom: 1px solid var(--line); }

  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .archive-image { margin-bottom: 35px; }
  .archive-image img { height: 390px; }
  .archive-label { right: 20px; bottom: 22px; left: 20px; grid-template-columns: 1fr; gap: 8px; }
  .archive-label small { text-align: left; }
  .schedule-day { padding: 24px 20px; }
  .schedule-heading { flex-direction: column; }
  .schedule-heading > span { max-width: none; text-align: left; }
  .timeline li { grid-template-columns: 1fr; gap: 6px; }

  .experience-grid { grid-template-columns: 1fr; }
  .feature-card,
  .wide-card { grid-column: span 1; min-height: 440px; }

  .story-images { min-height: 440px; }
  .story-main { width: 93%; height: 74%; }
  .story-inset { width: 68%; height: 40%; border-width: 6px; }

  .visit-facts { grid-template-columns: 1fr; }
  .visit-copy .button { width: 100%; }

  .app-panel { grid-template-columns: 1fr; text-align: center; }
  .app-icon { margin-inline: auto; }
  .app-panel .button { grid-column: auto; width: 100%; white-space: normal; }

  .policy-hero { padding: 130px 0 70px; }
  .policy-hero-grid { gap: 40px; }
  .policy-layout { padding-block: 60px 90px; }
  .policy-section { grid-template-columns: 1fr; gap: 17px; }
  .policy-number { width: 42px; height: 42px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

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

@media print {
  .site-header,
  .site-footer,
  .policy-summary,
  .button,
  .text-link { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .policy-hero { padding: 0 0 25px; color: #000; background: #fff; }
  .policy-hero h1,
  .policy-hero p:not(.kicker) { color: #000; }
  .policy-hero img { display: none; }
  .policy-layout { display: block; padding: 20px 0; }
  .policy-section { break-inside: avoid; }
}
