/* Cocalico Band Boosters — editorial community design system */

:root {
  --navy-950: #061426;
  --navy-900: #071a31;
  --navy-800: #0b2748;
  --blue-700: #124f8f;
  --blue-600: #1d67ad;
  --gold-500: #d3aa4c;
  --gold-400: #e1bf6d;
  --gold-200: #f1dfae;
  --cream-100: #f6f3eb;
  --cream-50: #fbfaf6;
  --white: #ffffff;
  --ink: #151b23;
  --muted: #5d6670;
  --line: #d9d8d2;
  --font-sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
  --container: 1220px;
  --gutter: clamp(20px, 4vw, 56px);
  --shadow: 0 24px 70px rgba(4, 21, 40, 0.16);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--gold-400);
  font-weight: inherit;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(82px, 10vw, 144px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.lead {
  color: var(--navy-900);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-gold {
  color: var(--navy-950);
  background: var(--gold-400);
}

.button-gold:hover {
  background: var(--gold-200);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

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

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

.button-navy:hover {
  background: var(--blue-700);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */

.utility-bar {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.utility-inner p {
  margin-bottom: 0;
}

.utility-inner p span {
  margin-inline: 8px;
  color: var(--gold-400);
}

.utility-inner a {
  color: var(--gold-200);
  text-transform: none;
}

.utility-inner a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(7, 26, 49, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand img {
  width: 45px;
  height: 54px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-copy strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-copy span {
  margin-top: 6px;
  color: var(--gold-400);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: block;
  padding-block: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.main-nav li:not(.nav-action) a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav li:not(.nav-action) a:hover::after,
.main-nav li:not(.nav-action) a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav .nav-action a {
  padding: 12px 17px;
  color: var(--navy-950);
  background: var(--gold-400);
}

.main-nav .nav-action a:hover {
  background: var(--gold-200);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle span:first-child {
  top: 19px;
}

.nav-toggle span:last-child {
  top: 27px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

/* Home hero */

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-image,
.hero-shade,
.hero-lines {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.78) contrast(1.08);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 18, 35, 0.96) 0%, rgba(4, 18, 35, 0.86) 40%, rgba(4, 18, 35, 0.36) 73%, rgba(4, 18, 35, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 18, 35, 0.76) 0%, transparent 43%);
}

.hero-lines {
  z-index: 2;
  left: auto;
  width: 41%;
  opacity: 0.36;
  background: repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.13) 34px 35px);
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
  mask-image: linear-gradient(to left, #000, transparent);
}

.hero-inner {
  min-height: 720px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-block: 90px 150px;
}

.hero-copy {
  width: min(720px, 67%);
}

.hero h1 {
  max-width: 11.6ch;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.7rem, 6.1vw, 6.3rem);
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-caption span:not(:last-child)::after {
  content: "•";
  margin-top: 14px;
  color: var(--gold-400);
}

.quick-links {
  position: relative;
  z-index: 10;
  margin-top: -78px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-link {
  min-height: 156px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 30px clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.quick-link:last-child {
  border-right: 0;
}

.quick-link:hover {
  color: var(--white);
  background: var(--blue-700);
}

.quick-number,
.quick-arrow {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
}

.quick-link:hover .quick-number,
.quick-link:hover .quick-arrow {
  color: var(--gold-200);
}

.quick-arrow {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.quick-link:hover .quick-arrow {
  transform: translate(3px, -3px);
}

.quick-link strong,
.quick-link small {
  display: block;
}

.quick-link strong {
  margin-bottom: 5px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.quick-link small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.quick-link:hover small {
  color: rgba(255, 255, 255, 0.72);
}

/* Home intro */

.intro-section {
  padding-top: clamp(118px, 13vw, 178px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
}

.intro-heading h2,
.section-heading h2,
.about-intro h2,
.organization-copy h2 {
  color: var(--navy-900);
  font-size: clamp(3rem, 5vw, 5rem);
}

.intro-heading h2 {
  max-width: 11ch;
}

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

.intro-copy p {
  color: var(--muted);
}

.intro-copy .lead {
  color: var(--navy-900);
}

.intro-copy .text-link {
  margin-top: 14px;
}

.stats-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr 1.45fr;
  margin-top: clamp(68px, 8vw, 110px);
  border-block: 1px solid var(--line);
}

.stat {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
}

.stat span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.stat-wide strong {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

/* Work */

.work-section {
  background: var(--cream-100);
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: center;
}

.photo-stack {
  position: relative;
  padding: 0 52px 52px 0;
}

.photo-main {
  height: clamp(520px, 61vw, 720px);
  margin: 0;
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-stack:hover .photo-main img {
  transform: scale(1.025);
}

.photo-note {
  width: 250px;
  min-height: 184px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  color: var(--white);
  background: var(--blue-700);
}

.photo-note > span {
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
}

.photo-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.65;
}

.photo-note strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.section-heading > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 26px;
  color: var(--muted);
}

.work-list {
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.work-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.work-list > li > span {
  padding-top: 5px;
  color: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 800;
}

.work-list h3 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.work-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

/* Mission */

.mission-panel {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(29, 103, 173, 0.62), transparent 32%),
    var(--navy-950);
}

.mission-panel::before,
.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background: repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.16) 38px 39px);
  pointer-events: none;
}

.mission-inner {
  min-height: 570px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 100px;
}

.mission-inner blockquote {
  max-width: 1050px;
  margin-bottom: 42px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 6.2vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

/* Resources */

.resources-section {
  background: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.section-heading-row > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border: 1px solid var(--line);
}

.resource-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--line);
  background: var(--cream-50);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.resource-card:hover {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.resource-card-blue {
  color: var(--white);
  background: var(--blue-700);
}

.resource-card-gold {
  color: var(--navy-950);
  background: var(--gold-400);
}

.resource-label {
  margin-bottom: 76px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-bottom: 16px;
  color: inherit;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 600;
}

.resource-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.87rem;
}

.resource-card-blue p {
  color: rgba(255, 255, 255, 0.72);
}

.resource-card-gold p {
  color: rgba(6, 20, 38, 0.7);
}

.resource-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 800;
}

.resource-cta span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.resource-card:hover .resource-cta span {
  transform: translate(3px, -3px);
}

/* Get involved */

.involve-section {
  color: var(--white);
  background: var(--navy-900);
}

.involve-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: start;
}

.involve-heading {
  position: sticky;
  top: 132px;
}

.involve-heading h2 {
  max-width: 9ch;
  color: var(--white);
  font-size: clamp(3.5rem, 5.8vw, 5.7rem);
}

.involve-heading > p:last-child {
  max-width: 500px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.involve-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.involve-item {
  min-height: 150px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 200ms ease, color 200ms ease;
}

.involve-item:hover {
  padding-inline: 14px;
  color: var(--gold-400);
}

.involve-index {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
}

.involve-item strong,
.involve-item small {
  display: block;
}

.involve-item strong {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}

.involve-item small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
}

.involve-item > span:last-child {
  font-size: 1.25rem;
}

.final-cta {
  color: var(--navy-950);
  background: var(--gold-400);
}

.final-cta-inner {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 60px;
}

.final-cta .eyebrow {
  color: var(--navy-900);
}

.final-cta h2 {
  max-width: 13ch;
  color: var(--navy-950);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

/* About */

.about-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 47%;
  opacity: 0.25;
  background: repeating-linear-gradient(0deg, transparent 0 36px, rgba(255, 255, 255, 0.12) 36px 37px);
}

.about-hero-grid {
  min-height: 700px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  padding-block: 88px;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  max-width: 8.2ch;
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(4.2rem, 7vw, 7.4rem);
}

.about-hero-copy > p:last-child {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.about-hero-photo {
  height: 520px;
  position: relative;
  margin: 0;
  box-shadow: var(--shadow);
}

.about-hero-photo::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: -1;
  border: 1px solid rgba(225, 191, 109, 0.5);
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.about-hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 300px;
  padding: 19px 24px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(64px, 10vw, 148px);
}

.about-intro-statement h2 {
  max-width: 9ch;
}

.about-intro-body {
  padding-top: 38px;
}

.about-intro-body > p:not(.lead) {
  color: var(--muted);
}

.values-section {
  background: var(--cream-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-block: 1px solid var(--line);
}

.value {
  min-height: 310px;
  padding: 36px clamp(22px, 2.6vw, 36px);
  border-right: 1px solid var(--line);
}

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

.value > span {
  display: block;
  margin-bottom: 90px;
  color: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 800;
}

.value h3 {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.value p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.story-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-700);
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 11vw, 160px);
}

.story-heading h2 {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(3.6rem, 6vw, 6rem);
}

.story-heading > p:last-child {
  max-width: 510px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.story-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.story-timeline li {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 28px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.story-timeline time,
.story-timeline .story-time {
  padding-top: 5px;
  color: var(--gold-200);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-timeline h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.story-timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.organization-section {
  background: var(--white);
}

.organization-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: start;
}

.organization-copy h2 {
  max-width: 11ch;
}

.organization-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 28px;
  color: var(--muted);
}

.organization-copy .button {
  margin-top: 20px;
}

.organization-points {
  border-top: 1px solid var(--line);
}

.organization-points article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.organization-points article > span {
  padding-top: 7px;
  color: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 800;
}

.organization-points h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.organization-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.legal-section {
  color: var(--white);
  background: var(--navy-950);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 11vw, 160px);
}

.legal-heading h2 {
  max-width: 8ch;
  color: var(--white);
  font-size: clamp(3.6rem, 6vw, 6rem);
}

.legal-heading > p:last-child {
  max-width: 420px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.63);
}

.legal-list {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-list dt {
  color: var(--gold-200);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.legal-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.73rem;
  text-align: right;
}

/* Footer */

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.6fr 0.8fr;
  gap: clamp(48px, 8vw, 118px);
  padding-block: 86px 72px;
}

.footer-brand img {
  width: min(420px, 100%);
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 500px;
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 13px;
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-separator {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.photo-credit {
  text-align: right;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.photo-credit a:hover {
  color: var(--white);
}

/* Motion enhancement; content stays visible if JavaScript is unavailable */

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

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

/* Responsive */

@media (max-width: 1060px) {
  .quick-link {
    grid-template-columns: auto 1fr;
  }

  .quick-arrow {
    display: none;
  }

  .resource-card {
    padding: 34px;
  }

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

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

  .value:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  .utility-inner {
    justify-content: center;
    text-align: center;
  }

  .utility-inner > a {
    display: none;
  }

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

  .brand img {
    width: 40px;
    height: 47px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 38px var(--gutter) 60px;
    visibility: hidden;
    overflow-y: auto;
    background: var(--navy-950);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav ul {
    display: block;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .main-nav a {
    padding-block: 19px;
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 600;
  }

  .main-nav li:not(.nav-action) a::after {
    display: none;
  }

  .main-nav .nav-action {
    margin-top: 26px;
    border: 0;
  }

  .main-nav .nav-action a {
    padding: 17px 20px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-align: center;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-copy {
    width: min(730px, 84%);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 9.6vw, 5.6rem);
  }

  .hero-caption {
    display: none;
  }

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

  .quick-link {
    min-height: 112px;
    grid-template-columns: 42px 1fr auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-link:last-child {
    border-bottom: 0;
  }

  .quick-arrow {
    display: block;
  }

  .intro-grid,
  .work-layout,
  .involve-grid,
  .about-hero-grid,
  .about-intro-grid,
  .story-grid,
  .organization-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .intro-heading h2,
  .about-intro-statement h2,
  .organization-copy h2 {
    max-width: 13ch;
  }

  .intro-copy,
  .about-intro-body {
    max-width: 720px;
    padding-top: 0;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .work-layout {
    gap: 80px;
  }

  .photo-main {
    height: min(720px, 88vw);
  }

  .work-copy {
    max-width: 760px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading-row > p {
    max-width: 680px;
  }

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

  .resource-card {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .resource-card:last-child {
    border-bottom: 0;
  }

  .involve-grid {
    gap: 70px;
  }

  .involve-heading {
    position: static;
  }

  .involve-heading h2 {
    max-width: 12ch;
  }

  .about-hero-grid {
    padding-block: 90px 110px;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-hero h1 {
    max-width: 10ch;
  }

  .about-hero-photo {
    width: calc(100% - 20px);
    height: min(560px, 68vw);
  }

  .about-intro-grid,
  .story-grid,
  .organization-grid,
  .legal-grid {
    gap: 64px;
  }

  .story-heading h2,
  .legal-heading h2 {
    max-width: 12ch;
  }

  .footer-main {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 15.5px;
  }

  .utility-inner {
    min-height: 31px;
    font-size: 0.56rem;
    letter-spacing: 0.055em;
  }

  .utility-inner p span {
    margin-inline: 5px;
  }

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

  .brand-copy span {
    font-size: 0.54rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle span {
    left: 11px;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 18, 35, 0.94) 0%, rgba(4, 18, 35, 0.77) 100%), linear-gradient(0deg, rgba(4, 18, 35, 0.78), transparent 52%);
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 80px 128px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 10ch;
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 15vw, 4.35rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .quick-links {
    margin-top: -72px;
  }

  .quick-link {
    min-height: 104px;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    padding: 22px 18px;
  }

  .quick-link strong {
    font-size: 1.16rem;
  }

  .quick-link small {
    font-size: 0.67rem;
  }

  .intro-section {
    padding-top: 112px;
  }

  .intro-grid {
    gap: 38px;
  }

  .intro-heading h2,
  .section-heading h2,
  .about-intro h2,
  .organization-copy h2 {
    font-size: clamp(2.75rem, 12vw, 3.7rem);
  }

  .stats-row {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .stat {
    min-height: 124px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .photo-stack {
    padding: 0 18px 88px 0;
  }

  .photo-main {
    height: 118vw;
    max-height: 610px;
  }

  .photo-note {
    width: min(280px, calc(100% - 50px));
    min-height: 150px;
    padding: 24px;
  }

  .work-list {
    margin-top: 38px;
  }

  .work-list li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding-block: 24px;
  }

  .mission-inner {
    min-height: 510px;
    padding-block: 78px;
  }

  .mission-inner blockquote {
    font-size: clamp(3rem, 13.2vw, 4.2rem);
  }

  .resource-grid {
    margin-top: 46px;
  }

  .resource-card {
    min-height: 300px;
    padding: 28px;
  }

  .resource-label {
    margin-bottom: 52px;
  }

  .involve-heading h2 {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
  }

  .involve-item {
    min-height: 132px;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
  }

  .involve-item strong {
    font-size: 1.35rem;
  }

  .involve-item small {
    font-size: 0.68rem;
  }

  .final-cta-inner {
    min-height: 340px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
  }

  .final-cta .button {
    width: 100%;
  }

  .about-hero-grid {
    min-height: 0;
    padding-block: 76px 100px;
  }

  .about-hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.25rem);
  }

  .about-hero-photo {
    height: 112vw;
    max-height: 520px;
  }

  .about-hero-photo::before {
    inset: 12px -12px -12px 12px;
  }

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

  .value {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .value:last-child {
    border-bottom: 0;
  }

  .value > span {
    margin-bottom: 58px;
  }

  .story-heading h2,
  .legal-heading h2 {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
  }

  .story-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .organization-points article {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .legal-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-note {
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 68px 56px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }

  .footer-separator {
    display: block;
    margin: 5px 0 0;
    padding: 0;
    border: 0;
  }

  .photo-credit {
    text-align: left;
  }
}

@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-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
