:root {
  --ink: #050505;
  --oat: #f5e9d6;
  --white: #fff;
  --blue: #2a76de;
  --yellow: #fbba03;
  --pink: #ff84f4;
  --red: #7f0b00;
  --orange: #ff4602;
  --line: rgba(0, 0, 0, 0.18);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--oat);
  color: var(--ink);
  font:
    400 16px/1.6 Poppins,
    Arial,
    sans-serif;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip {
  position: fixed;
  top: -5rem;
  left: 1rem;
  background: #000;
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 100;
}
.skip:focus {
  top: 1rem;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}
.site-header {
  height: 88px;
  padding: 0 clamp(1.2rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 233, 214, 0.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}
.brand img {
  width: 190px;
  height: 70px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.7rem);
  align-items: center;
}
.site-header nav a {
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
}
.site-header nav a:not(.nav-button):after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.25s;
}
.site-header nav a:hover:after {
  width: 100%;
}
.nav-button {
  border: 2px solid #000;
  border-radius: 99px;
  padding: 0.55rem 0.9rem;
}
.nav-button:hover {
  background: #000;
  color: #fff;
}
.menu {
  display: none;
  background: none;
  border: 0;
}
.menu span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px;
  background: #000;
}
.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas: "photo copy" "ticker ticker";
  position: relative;
}
.hero-photo-wrap {
  grid-area: photo;
  margin: clamp(1rem, 3vw, 3rem);
  min-height: 590px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--blue);
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform 0.25s ease-out;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-sticker {
  position: absolute;
  border: 2px solid #000;
  border-radius: 99px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  transform: rotate(-7deg);
  box-shadow: 4px 4px 0 #000;
}
.sticker-one {
  background: var(--pink);
  top: 2rem;
  left: 2rem;
}
.sticker-two {
  background: var(--yellow);
  bottom: 2rem;
  right: 2rem;
  transform: rotate(6deg);
}
.hero-copy {
  grid-area: copy;
  align-self: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}
.eyebrow,
.section-label,
.tag {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow:before {
  content: "";
  width: 2rem;
  height: 4px;
  background: var(--orange);
}
h1,
h2,
h3 {
  letter-spacing: -0.055em;
}
.hero h1 {
  font-size: clamp(3.6rem, 6.6vw, 7.4rem);
  line-height: 0.88;
  margin: 1.4rem 0 2rem;
}
.hero h1 span {
  color: var(--blue);
}
.hero-copy > p:last-of-type {
  font-size: 1.1rem;
  max-width: 39rem;
}
.actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-radius: 99px;
  padding: 0.9rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
}
.button span {
  font-size: 1.15em;
}
.dark {
  background: #000;
  color: #fff;
}
.dark:hover {
  background: var(--red);
}
.outline {
  border: 2px solid #000;
}
.outline:hover {
  background: #000;
  color: #fff;
}
.arrow-link {
  font-weight: 700;
  text-underline-offset: 5px;
}
.marquee {
  grid-area: ticker;
  background: #000;
  color: #fff;
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.marquee div {
  min-width: max-content;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.mission,
.programs,
.pillars,
.history,
.resources,
.events,
.contact {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.2rem, 6vw, 7rem);
}
.mission {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
}
.mission h2,
.program-intro h2,
.pillars > h2,
.history h2,
.resources h2,
.events h2,
.contact h2 {
  font-size: clamp(3rem, 6.4vw, 7rem);
  line-height: 0.93;
  margin: 1rem 0 2.2rem;
}
.mission h2 span,
.pillars > h2 span {
  background: var(--pink);
  padding: 0.02em 0.1em;
}
.large-copy {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.4;
  max-width: 40ch;
}
.mission-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 54rem;
}
.programs {
  background: #000;
  color: #fff;
}
.program-intro {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}
.program-intro h2 {
  margin: 0;
}
.program-intro em {
  font-style: normal;
  color: var(--yellow);
}
.program-ui {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) 2fr;
  gap: 1rem;
}
.program-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.program-tabs button {
  font: 600 1rem/1.3 Poppins;
  text-align: left;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 1.15rem;
  cursor: pointer;
  transition: 0.2s;
}
.program-tabs button span {
  opacity: 0.55;
  margin-right: 0.8rem;
}
.program-tabs button:hover,
.program-tabs button[aria-selected="true"] {
  color: #000;
  background: var(--oat);
  transform: translateX(7px);
}
.program-panel {
  min-height: 570px;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 5rem);
  color: #000;
  position: relative;
  overflow: hidden;
}
.program-panel[hidden] {
  display: none;
}
.program-panel.active {
  animation: panelIn 0.4s ease;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.program-panel.blue {
  background: var(--blue);
  color: #fff;
}
.program-panel.yellow {
  background: var(--yellow);
}
.program-panel.pink {
  background: var(--pink);
}
.program-panel h3 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  max-width: 11ch;
  margin: 1rem 0 1.7rem;
}
.program-panel > p:not(.tag, .panel-note) {
  font-size: 1.05rem;
  max-width: 44rem;
}
.panel-note {
  border-top: 1px solid currentColor;
  padding-top: 1.2rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 2rem;
}
.service-grid span,
.circle-options span {
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 0.55rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}
.pillars-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 2rem;
}
.pillars-mini div {
  border: 2px solid #000;
  border-radius: 18px;
  padding: 1rem;
}
.pillars-mini strong,
.pillars-mini span {
  display: block;
}
.pillars-mini strong {
  font-size: 1.25rem;
}
.pillars-mini span {
  font-size: 0.78rem;
  margin-top: 0.4rem;
}
.circle-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stats div {
  display: flex;
  flex-direction: column;
}
.stats strong {
  font-size: 2.5rem;
  line-height: 1;
}
.stats span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
.panel-art {
  position: absolute;
  right: 5%;
  top: 8%;
  width: 180px;
  height: 150px;
  opacity: 0.92;
}
.art-navigation i {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink);
}
.art-navigation i:nth-child(1) {
  left: 0;
  top: 55px;
}
.art-navigation i:nth-child(2) {
  left: 65px;
  top: 15px;
  background: var(--yellow);
}
.art-navigation i:nth-child(3) {
  right: 0;
  bottom: 0;
  background: #fff;
}
.art-navigation b {
  position: absolute;
  left: 25px;
  top: 45px;
  font-size: 6rem;
  transform: rotate(-20deg);
}
.art-bike i {
  position: absolute;
  width: 75px;
  height: 75px;
  border: 8px solid #000;
  border-radius: 50%;
  bottom: 0;
}
.art-bike i:nth-child(2) {
  right: 0;
}
.art-bike b {
  position: absolute;
  width: 85px;
  height: 8px;
  background: #000;
  left: 43px;
  top: 76px;
  transform: rotate(-20deg);
}
.art-bike em {
  position: absolute;
  width: 55px;
  height: 55px;
  border: 8px solid #000;
  border-left: 0;
  border-bottom: 0;
  left: 65px;
  top: 44px;
  transform: rotate(40deg);
}
.art-circle i {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow);
}
.art-circle i:nth-child(2) {
  right: 0;
  background: var(--blue);
}
.art-circle i:nth-child(3) {
  left: 25px;
  bottom: 0;
  background: #fff;
}
.art-circle i:nth-child(4) {
  right: 25px;
  bottom: 0;
  background: #000;
}
.pillars {
  background: var(--oat);
}
.pillars > h2 {
  max-width: 13ch;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pillar {
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #000;
}
.pillar:nth-child(1):hover {
  background: var(--blue);
  color: #fff;
}
.pillar:nth-child(2):hover {
  background: var(--yellow);
}
.pillar:nth-child(3):hover {
  background: var(--pink);
}
.pillar > p {
  margin-top: 6rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.pillar h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
}
.mini-art {
  height: 110px;
  position: relative;
}
.community i {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 6px solid #000;
  border-radius: 50%;
}
.community i:nth-child(2) {
  left: 70px;
}
.community b {
  position: absolute;
  width: 105px;
  height: 48px;
  left: 14px;
  top: 55px;
  border: 6px solid #000;
  border-radius: 50px 50px 0 0;
  border-bottom: 0;
}
.trust i {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--pink);
}
.trust b {
  position: absolute;
  left: 35px;
  top: 25px;
  width: 30px;
  height: 55px;
  border-radius: 30px;
  background: #000;
}
.strength i {
  position: absolute;
  width: 24px;
  height: 90px;
  background: var(--orange);
  left: 50px;
  bottom: 0;
}
.strength i:nth-child(2) {
  transform: rotate(60deg);
  transform-origin: bottom;
}
.strength b {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  left: 38px;
}
.history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  background: #fff;
}
.history-number {
  background: var(--orange);
  border-radius: var(--radius);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
}
.history-number strong {
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 1;
  font-weight: 800;
}
.history-number span {
  font-weight: 700;
}
.history-copy {
  align-self: center;
}
.history h2 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}
.text-button {
  font: 700 1rem Poppins;
  background: none;
  border: 0;
  border-bottom: 2px solid #000;
  padding: 0.6rem 0;
  cursor: pointer;
}
.text-button span {
  margin-left: 1rem;
}
.board {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
.board[hidden] {
  display: none;
}
.board div {
  padding: 1.4rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.board strong,
.board span {
  display: block;
}
.board span {
  font-size: 0.78rem;
  margin-top: 0.35rem;
}
.resources {
  background: var(--yellow);
}
.resources-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: end;
}
.resources-head h2 {
  margin-top: 1rem;
}
.resource-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.resource-card {
  background: var(--oat);
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}
.resource-icon {
  font-size: 3rem;
}
.resource-card > p:first-of-type {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
}
.resource-card h3 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.resource-card a {
  font-weight: 700;
  margin-top: auto;
  text-underline-offset: 5px;
}
.resource-card a span {
  float: right;
}
.events {
  background: var(--blue);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.events-shape {
  height: 440px;
  position: relative;
}
.events-shape span {
  position: absolute;
  border-radius: 50%;
  width: 250px;
  height: 250px;
}
.events-shape span:nth-child(1) {
  background: var(--pink);
  left: 5%;
  top: 10%;
}
.events-shape span:nth-child(2) {
  background: var(--yellow);
  left: 35%;
  top: 30%;
}
.events-shape span:nth-child(3) {
  background: #000;
  left: 20%;
  top: 50%;
  width: 300px;
  height: 80px;
  border-radius: 99px;
  transform: rotate(-30deg);
}
.events h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}
.light-button {
  background: #fff;
  color: #000;
}
.contact {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact h2 {
  font-size: clamp(3rem, 5.7vw, 6rem);
}
.contact-copy > p {
  max-width: 40rem;
  font-size: 1.1rem;
}
.contact-logo {
  background: #fff;
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 2rem;
  transform: rotate(3deg);
}
footer {
  background: #000;
  color: #fff;
  padding: 4rem clamp(1.2rem, 6vw, 7rem) 2rem;
}
footer > img {
  width: 220px;
  background: var(--oat);
  border-radius: 14px;
  padding: 0.5rem;
}
footer > p {
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
  max-width: 25ch;
  margin: 4rem 0;
}
footer > div {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 950px) {
  .site-header {
    height: 76px;
  }
  .brand img {
    width: 155px;
    height: 58px;
  }
  .menu {
    display: block;
  }
  .site-header nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--oat);
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "photo" "ticker";
  }
  .hero-photo-wrap {
    min-height: 500px;
  }
  .mission {
    grid-template-columns: 1fr;
  }
  .program-intro {
    grid-template-columns: 1fr;
  }
  .program-ui {
    grid-template-columns: 1fr;
  }
  .program-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .program-tabs button {
    font-size: 0.8rem;
  }
  .program-tabs button[aria-selected="true"] {
    transform: translateY(-5px);
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar {
    min-height: 330px;
  }
  .history {
    grid-template-columns: 1fr;
  }
  .history-number {
    min-height: 340px;
  }
  .board {
    grid-template-columns: 1fr 1fr;
  }
  .resources-head {
    grid-template-columns: 1fr;
  }
  .events {
    grid-template-columns: 1fr;
  }
  .events-shape {
    height: 340px;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-logo {
    max-width: 500px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-photo-wrap {
    min-height: 380px;
    margin: 1rem;
  }
  .mission h2,
  .program-intro h2,
  .pillars > h2,
  .resources h2,
  .events h2,
  .contact h2 {
    font-size: 3rem;
  }
  .mission-notes,
  .resource-cards {
    grid-template-columns: 1fr;
  }
  .program-tabs {
    grid-template-columns: 1fr;
  }
  .program-panel {
    min-height: 660px;
  }
  .panel-art {
    width: 115px;
    height: 100px;
    opacity: 0.35;
  }
  .service-grid,
  .pillars-mini {
    grid-template-columns: 1fr;
  }
  .stats {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .board {
    grid-template-columns: 1fr;
  }
  .events-shape {
    height: 260px;
    transform: scale(0.8);
  }
  footer > div {
    flex-direction: column;
    gap: 0.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee div {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-photo-wrap,
  .pillar {
    transition: none;
  }
}

/* Refined interactive layout */
.pink-swipe {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0.02em 0.12em 0.08em;
  white-space: nowrap;
  color: inherit !important;
  transform: rotate(-1.5deg);
  isolation: isolate;
}
.pink-swipe:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0.12em -0.03em 0.04em;
  background: var(--pink);
  transform: skewX(-7deg);
  border-radius: 0.08em;
}
.pink-swipe.angled {
  transform: rotate(1.8deg);
}
.hero {
  height: calc(100svh - 88px);
  min-height: 775px;
  display: block;
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  z-index: -3;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.46) 48%,
      rgba(0, 0, 0, 0.08) 82%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 50%);
}
@keyframes heroZoom {
  to {
    transform: scale(1.045);
  }
}
.hero-copy {
  height: calc(100% - 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7.5rem);
  max-width: 1000px;
}
.hero h1 {
  max-width: 10ch;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.2);
}
.hero-copy > p:last-of-type {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 42rem;
}
.hero .eyebrow:before {
  background: var(--pink);
}
.hero .arrow-link {
  color: #fff;
}
.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: 78px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-scroll b {
  width: 42px;
  height: 42px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  50% {
    transform: translateY(6px);
  }
}
.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.mission h2 span {
  background: none;
  padding: 0;
}
.mission h2 span:after {
  content: "";
  display: block;
  width: 82%;
  height: 0.18em;
  background: var(--pink);
  margin-top: 0.06em;
  transform: rotate(-1.5deg);
}
.program-ui {
  display: block;
}
.program-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.program-tabs button {
  min-height: 82px;
  display: flex;
  align-items: center;
}
.program-tabs button:hover,
.program-tabs button[aria-selected="true"] {
  transform: translateY(-4px);
  background: #fff;
  color: #000;
}
.program-panel {
  min-height: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #fff !important;
  color: #000 !important;
}
.program-panel h3 {
  max-width: 17ch;
  font-size: clamp(2.5rem, 4.7vw, 5rem);
}
.program-panel.blue {
  border-top: 10px solid var(--blue);
}
.program-panel.yellow {
  border-top: 10px solid var(--yellow);
}
.program-panel.pink {
  border-top: 10px solid var(--pink);
}
.pillars > h2 span {
  background: none;
  padding: 0.02em 0.12em 0.08em;
}
.pillar-list {
  border-top: 2px solid #000;
}
.pillar-list .pillar {
  min-height: 0;
  border: 0;
  border-bottom: 2px solid #000;
  border-radius: 0;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.8fr) 1.2fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0.4rem;
  transition:
    padding 0.25s,
    background 0.25s,
    color 0.25s;
}
.pillar-list .pillar:hover {
  transform: none;
  box-shadow: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pillar-list .pillar:nth-child(1):hover {
  background: var(--blue);
  color: #fff;
}
.pillar-list .pillar:nth-child(2):hover {
  background: var(--yellow);
}
.pillar-list .pillar:nth-child(3):hover {
  background: var(--pink);
}
.pillar-list .pillar > p {
  margin: 0;
  font-size: 0.8rem;
}
.pillar-list .pillar h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
}
.pillar-list .pillar > span {
  max-width: 34rem;
}
.history {
  align-items: start;
}
.history-number {
  position: sticky;
  top: 115px;
  box-shadow: 12px 12px 0 #000;
}
.board {
  gap: 0.8rem;
  border: 0;
  margin-top: 3rem;
}
.board div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  background: var(--oat);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.board div:nth-child(3n + 1) {
  border-top: 6px solid var(--blue);
}
.board div:nth-child(3n + 2) {
  border-top: 6px solid var(--yellow);
}
.board div:nth-child(3n) {
  border-top: 6px solid var(--pink);
}
.board div:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 #000;
}
.board strong {
  font-size: 1rem;
}
.board span {
  font-size: 0.76rem;
}
.resources {
  background: var(--yellow);
}
.resources-head h2 {
  font-size: clamp(3rem, 7vw, 7rem);
}
.resource-list {
  border-top: 2px solid #000;
}
.resource-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 40px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.65rem 0.3rem;
  border-bottom: 2px solid #000;
  text-decoration: none;
  transition:
    padding 0.25s,
    background 0.25s;
}
.resource-row:hover {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  background: var(--oat);
}
.resource-row > span {
  font-size: 0.75rem;
  font-weight: 700;
}
.resource-row strong {
  font-size: clamp(1.2rem, 2.3vw, 2.1rem);
}
.resource-row p {
  margin: 0;
}
.resource-row b {
  font-size: 1.5rem;
  text-align: right;
}
.events {
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}
.events h2 {
  font-size: clamp(3rem, 5.8vw, 6rem);
}
.calendar {
  background: #fff;
  color: #000;
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 2.2rem);
  box-shadow: 12px 12px 0 var(--pink);
}
.calendar-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calendar-head h3 {
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  text-align: center;
  margin: 0;
}
.calendar-head button {
  width: 44px;
  height: 44px;
  border: 2px solid #000;
  border-radius: 50%;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
}
.calendar-head button:hover {
  background: #000;
  color: #fff;
  transform: scale(1.08);
}
.calendar-week,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-week {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}
.calendar-week span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.calendar-grid {
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.calendar-grid.changing {
  opacity: 0;
  transform: translateY(6px);
}
.calendar-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.82rem;
}
.calendar-day.muted {
  opacity: 0.25;
}
.calendar-day.today {
  background: var(--yellow);
  font-weight: 800;
  border: 2px solid #000;
}
.calendar-empty {
  border-top: 1px solid var(--line);
  margin: 1rem 0 0;
  padding-top: 1rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.calendar-empty span {
  width: 9px;
  height: 9px;
  background: var(--pink);
  border-radius: 50%;
}
footer {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 4rem;
  align-items: start;
}
footer .footer-brand > img {
  width: 260px;
  filter: grayscale(1) brightness(0) invert(1);
  background: transparent;
  padding: 0;
}
footer .footer-brand > p {
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.12;
  margin: 4rem 0 2rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding-top: 0.5rem;
}
.footer-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.74);
  transition: 0.2s;
}
.footer-nav a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-meta {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
@media (max-width: 950px) {
  .hero {
    height: calc(100svh - 76px);
    min-height: 620px;
  }
  .hero-photo {
    object-position: 58% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.22)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 60%);
  }
  .program-tabs {
    grid-template-columns: 1fr;
  }
  .program-tabs button {
    min-height: 60px;
  }
  .pillar-list .pillar {
    grid-template-columns: 50px 1fr;
  }
  .pillar-list .pillar > span {
    grid-column: 2;
  }
  .history-number {
    position: relative;
    top: auto;
  }
  .events {
    grid-template-columns: 1fr;
  }
  .events-copy {
    max-width: 650px;
  }
  .calendar {
    max-width: 720px;
    width: 100%;
    margin: auto;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 660px;
  }
  .hero-photo {
    object-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.86) 5%,
      rgba(0, 0, 0, 0.35) 78%
    );
  }
  .hero-copy {
    justify-content: flex-end;
    padding-bottom: 7rem;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 0.92;
  }
  .hero-scroll {
    display: none;
  }
  .pink-swipe {
    white-space: normal;
  }
  .program-panel {
    padding: 2rem 1.25rem;
  }
  .program-panel h3 {
    font-size: 2.6rem;
  }
  .pillar-list .pillar {
    grid-template-columns: 38px 1fr;
    gap: 1rem;
    padding: 1.5rem 0.2rem;
  }
  .pillar-list .pillar > span {
    grid-column: 2;
  }
  .resource-row {
    grid-template-columns: 34px 1fr 28px;
    gap: 0.7rem;
  }
  .resource-row p {
    display: none;
  }
  .calendar {
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 7px 7px 0 var(--pink);
  }
  .calendar-week span {
    font-size: 0.58rem;
  }
  .calendar-day {
    font-size: 0.72rem;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-meta {
    grid-column: 1;
    flex-direction: column;
    gap: 0.55rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .hero-scroll b {
    animation: none;
  }
  .calendar-grid {
    transition: none;
  }
}

/* Final spacing and balance refinements */
.site-header {
  height: 110px;
  padding-left: clamp(1.75rem, 5vw, 5.5rem);
  padding-right: clamp(1.75rem, 5vw, 5.5rem);
}
.brand img {
  width: 185px;
  height: 76px;
}
.site-header nav {
  gap: clamp(1.25rem, 2.8vw, 3rem);
}
.hero {
  height: calc(100svh - 110px);
}
.hero-copy {
  padding-bottom: clamp(6rem, 10vh, 8.5rem);
}
.hero-copy .actions {
  transform: translateY(-8px);
}
.mission h2 span {
  background: transparent;
  padding: 0.02em 0.12em 0.08em;
}
.mission h2 span:after {
  display: none;
}
.mission-highlight {
  transform: rotate(-1.7deg);
}
.history-number {
  position: relative;
  top: auto;
  align-self: start;
}
.contact {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  grid-template-columns: 1.25fr 0.75fr;
}
.contact h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.8rem);
  max-width: 13ch;
  margin-bottom: 1.5rem;
}
.contact-copy > p {
  font-size: 1rem;
  max-width: 36rem;
}
.contact-logo {
  max-width: 360px;
  justify-self: end;
}
footer {
  grid-template-columns: minmax(300px, 1.4fr) minmax(180px, 0.6fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
footer .footer-brand > img {
  width: 170px;
  filter: none;
  background: transparent;
  padding: 0;
}
footer .footer-brand > p {
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
  margin: 2.5rem 0 0;
  max-width: 18ch;
}
.footer-nav {
  justify-self: end;
  min-width: 180px;
  gap: 0.8rem;
}
.footer-nav a {
  text-align: right;
  width: 100%;
}
.footer-meta {
  margin-top: 1.5rem;
}
@media (max-width: 950px) {
  .site-header {
    height: 92px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .brand img {
    width: 165px;
    height: 66px;
  }
  .site-header nav {
    top: 92px;
  }
  .hero {
    height: calc(100svh - 92px);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-logo {
    justify-self: start;
    max-width: 280px;
  }
  footer {
    grid-template-columns: 1fr 0.55fr;
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 84px;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .brand img {
    width: 148px;
    height: 60px;
  }
  .site-header nav {
    top: 84px;
  }
  .hero {
    height: calc(100svh - 84px);
  }
  .hero-copy {
    padding-bottom: 8rem;
  }
  .hero-copy .actions {
    transform: translateY(-5px);
  }
  .contact h2 {
    font-size: 2.8rem;
  }
  .contact-logo {
    max-width: 220px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  footer .footer-brand > img {
    width: 145px;
  }
  .footer-nav {
    justify-self: start;
    min-width: 0;
  }
  .footer-nav a {
    text-align: left;
  }
  .footer-meta {
    margin-top: 0;
  }
}

/* About navigation */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-dropdown-toggle .nav-caret {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  margin-left: 0.35em;
  vertical-align: baseline;
  transition: transform 0.2s ease;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -1.1rem;
  right: -1.1rem;
  height: 1rem;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1.1rem;
  min-width: 165px;
  padding: 0.65rem;
  background: var(--oat);
  border: 1px solid var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-submenu a {
  padding: 0.45rem 0.5rem;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em;
}
.nav-submenu a:hover {
  background: var(--pink);
}
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
  display: flex;
}
@media (max-width: 950px) {
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown::after {
    display: none;
  }
  .nav-dropdown-toggle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
  }
  .nav-submenu {
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0.6rem 0 0 1.25rem;
  }
  .nav-submenu a {
    font-size: 14px !important;
    padding: 0.25rem 0;
  }
}

.board {
  perspective: 1200px;
}
.board-card {
  height: 170px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  perspective: 1000px;
}
.board-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.board-card.is-flipped .board-card-inner {
  transform: rotateY(180deg);
}
.board-front,
.board-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.board-front {
  background: var(--oat);
}
.board-back {
  background: #000;
  color: #fff;
  transform: rotateY(180deg);
}
.board-card:nth-child(3n + 1) .board-front {
  border-top: 7px solid var(--blue);
}
.board-card:nth-child(3n + 2) .board-front {
  border-top: 7px solid var(--yellow);
}
.board-card:nth-child(3n) .board-front {
  border-top: 7px solid var(--pink);
}
.board-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}
.board-card small {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.65;
}
.board-card:hover .board-card-inner,
.board-card:focus-visible .board-card-inner {
  transform: translateY(-4px);
}
.board-card.is-flipped:hover .board-card-inner,
.board-card.is-flipped:focus-visible .board-card-inner {
  transform: translateY(-4px) rotateY(180deg);
}
.board-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
@media (max-width: 600px) {
  .board-card {
    height: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .board-card-inner {
    transition: none;
  }
}

/* Final content refinements */
.hero-copy {
  height: 100%;
}
.hero-scroll {
  bottom: 28px;
}
.program-intro {
  grid-template-columns: 1fr 3fr;
  align-items: start;
}
.program-intro .section-label {
  padding-top: 0.85rem;
}
.program-title h2 {
  margin: 0;
}
.program-title p {
  margin: 0.9rem 0 0;
  max-width: 38rem;
}
.program-title {
  align-self: start;
}
.board {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.board-card {
  height: 136px;
}
.board-front,
.board-back {
  padding: 1rem;
}
.board-card strong {
  font-size: 0.88rem;
}
.board-card small {
  font-size: 0.6rem;
}
.resources-head {
  display: block;
}
.resources-head h2 {
  margin-bottom: 0.7rem;
}
.resources-head p {
  margin: 0 0 3rem;
  max-width: 44rem;
  font-size: 1.05rem;
}
.contact {
  display: block;
}
.contact-copy {
  max-width: 800px;
}
.contact-logo {
  display: none;
}
footer .footer-brand > img {
  width: 205px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
footer .footer-brand > p {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  margin-top: 2rem;
}
@media (max-width: 1100px) {
  .board {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 950px) {
  .program-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .program-intro .section-label {
    padding-top: 0;
  }
  .board {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .board-card {
    height: 128px;
  }
  .board-front,
  .board-back {
    padding: 0.9rem;
  }
  footer .footer-brand > img {
    width: 180px;
  }
}

/* Mobile interaction and alignment polish */
.hero-highlight {
  white-space: nowrap;
}
.hero-highlight-one {
  transform: rotate(-1.6deg);
}
.hero-highlight-two {
  transform: rotate(1deg);
}
.hero .actions {
  align-items: center;
}
.hero .button,
.hero .arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  line-height: 1;
}
.hero .arrow-link {
  padding: 0.9rem 0;
}
.cta-arrow {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  font-size: 0;
}
.cta-arrow:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}
.cta-arrow:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.pillar-list .pillar {
  cursor: pointer;
}
.pillar-list .pillar:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.pillar-list .pillar:nth-child(1).is-active {
  background: var(--blue);
  color: #fff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pillar-list .pillar:nth-child(2).is-active {
  background: var(--yellow);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pillar-list .pillar:nth-child(3).is-active {
  background: var(--pink);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 600px) {
  .hero h1 {
    line-height: 0.98;
  }
  .hero-highlight {
    white-space: nowrap;
    padding-left: 0.1em;
    padding-right: 0.1em;
  }
  .hero-highlight-one {
    transform: rotate(-1.8deg);
  }
  .hero-highlight-two {
    transform: rotate(1.2deg);
  }
  .hero .actions {
    gap: 0.75rem 1rem;
  }
  .hero .button,
  .hero .arrow-link {
    min-height: 46px;
  }
  .hero .arrow-link {
    padding: 0.85rem 0;
  }
  .mission {
    gap: 1.15rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .mission-main h2 {
    margin: 0 0 1.55rem;
  }
  .large-copy {
    margin: 0 0 1.35rem;
  }
  .mission-notes {
    margin-top: 0;
    gap: 0.85rem;
  }
  .mission-notes p {
    margin: 0;
  }
  .pillar-list .pillar:hover {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    background: transparent;
    color: inherit;
  }
  .pillar-list .pillar:nth-child(1).is-active {
    background: var(--blue);
    color: #fff;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .pillar-list .pillar:nth-child(2).is-active {
    background: var(--yellow);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .pillar-list .pillar:nth-child(3).is-active {
    background: var(--pink);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer > .footer-brand {
  border-top: 0;
}

footer {
  position: relative;
}
footer > .footer-brand {
  border-top: 0;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}

/* OCJJB Poppins typography, spacing, and color system */
:root {
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-s: 12px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
  --ink: #000;
  --oat: #f5e9d6;
  --white: #fff;
  --blue: #2a76de;
  --yellow: #fbba03;
  --pink: #ff84f4;
  --orange: #ff4602;
  --red: #7f0b00;
}
body {
  font:
    400 16px/1.65 Poppins,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--oat);
}
p {
  max-width: 65ch;
}
h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
}
.mission,
.programs,
.pillars,
.history,
.resources,
.events,
.contact {
  padding: var(--space-4xl) clamp(var(--space-l), 6vw, 112px);
}
.section-label,
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-header nav a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.nav-button {
  padding: 14px 22px;
}
.button,
.arrow-link,
.text-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.button {
  padding: 14px 22px;
  min-height: 48px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 100;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: var(--space-l) 0 var(--space-xl);
  max-width: 13ch;
}
.hero-copy > p:last-of-type {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 60ch;
}
.hero .actions {
  margin-top: var(--space-xl);
}

.mission h2,
.program-intro h2,
.pillars > h2,
.history h2,
.resources h2,
.events h2,
.contact h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: var(--space-m) 0 var(--space-xl);
}
.mission h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
}
.large-copy {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: var(--space-xl);
}
.mission-notes {
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.mission-notes p,
.program-panel > p:not(.tag, .panel-note),
.contact-copy > p,
.events-copy > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 65ch;
}

.program-intro {
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.program-title p,
.resources-head > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 65ch;
}
.program-tabs {
  gap: var(--space-s);
  margin-bottom: var(--space-m);
}
.program-tabs button {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  padding: var(--space-m);
  min-height: 72px;
}
.program-panel {
  padding: var(--space-2xl);
}
.program-panel h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: var(--space-s) 0 var(--space-l);
}
.service-grid,
.pillars-mini,
.circle-options {
  margin-top: var(--space-l);
}
.service-grid span,
.circle-options span {
  font-size: 14px;
  line-height: 1.55;
}
.pillars-mini strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.pillars-mini span,
.panel-note {
  font-size: 14px;
  line-height: 1.55;
}
.stats strong {
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}
.stats span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.pillars > h2 {
  max-width: 19ch;
}
.pillar-list .pillar {
  padding: var(--space-l) var(--space-xs);
  gap: var(--space-xl);
}
.pillar-list .pillar h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.pillar-list .pillar > span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 60ch;
}
.pillar-list .pillar > p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.history {
  gap: var(--space-3xl);
}
.history-number strong {
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}
.history-number span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.history-copy > p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}
.board {
  gap: var(--space-s);
  margin-top: var(--space-xl);
}
.board-card {
  height: 144px;
}
.board-front,
.board-back {
  padding: var(--space-m);
}
.board-card strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}
.board-card small {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.board-back small {
  font-size: 12px;
}
.board-back strong {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.resources-head h2 {
  margin-bottom: var(--space-s);
}
.resources-head p {
  margin: 0 0 var(--space-xl);
}
.resource-row {
  padding: var(--space-l) var(--space-xs);
  gap: var(--space-l);
}
.resource-row > span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.resource-row strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.resource-row p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.calendar-head h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}
.calendar-week span,
.calendar-empty {
  font-size: 12px;
  line-height: 1.5;
}
.calendar-day {
  font-size: 14px;
  line-height: 1.55;
}
.contact-copy > p {
  font-size: 18px;
}

footer {
  padding: var(--space-3xl) clamp(var(--space-l), 6vw, 112px) var(--space-xl);
  gap: var(--space-3xl);
}
footer .footer-brand > p {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  margin-top: var(--space-xl);
}
.footer-nav {
  gap: var(--space-s);
}
.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.footer-meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-top: var(--space-l);
  margin-top: var(--space-l);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.nav-button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.dark {
  background: var(--blue);
  color: var(--white);
}
.dark:hover {
  background: var(--orange);
}
.outline:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.hero .light-button:hover {
  background: var(--yellow);
  color: var(--ink);
}

@media (max-width: 950px) {
  .mission,
  .programs,
  .pillars,
  .history,
  .resources,
  .events,
  .contact {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
  .site-header nav.open a:not(.nav-button) {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
  }
  .site-header nav.open {
    gap: var(--space-l);
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }
  .mission,
  .programs,
  .pillars,
  .history,
  .resources,
  .events,
  .contact {
    padding: var(--space-3xl) var(--space-m);
  }
  .section-label,
  .eyebrow {
    font-size: 12px;
  }
  .tag {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 44px;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: var(--space-m) 0 var(--space-l);
    max-width: 12ch;
  }
  .hero-copy > p:last-of-type {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
  }
  .hero .actions {
    margin-top: var(--space-l);
  }
  .button,
  .arrow-link,
  .text-button {
    font-size: 14px;
  }
  .button {
    padding: 14px 18px;
  }
  .mission h2,
  .program-intro h2,
  .pillars > h2,
  .history h2,
  .resources h2,
  .events h2,
  .contact h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.18;
    margin: var(--space-s) 0 var(--space-l);
  }
  .mission h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.18;
  }
  .large-copy {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin-bottom: var(--space-l);
  }
  .mission-notes {
    gap: var(--space-m);
    margin-top: var(--space-l);
  }
  .program-intro {
    gap: var(--space-s);
    margin-bottom: var(--space-xl);
  }
  .program-title p,
  .resources-head > p {
    font-size: 17px;
  }
  .program-tabs button {
    font-size: 14px;
    min-height: 56px;
  }
  .program-panel {
    padding: var(--space-xl) var(--space-m);
  }
  .program-panel h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: var(--space-m);
  }
  .pillars-mini strong {
    font-size: 18px;
  }
  .stats strong {
    font-size: 40px;
  }
  .stats span {
    font-size: 12px;
  }
  .pillar-list .pillar {
    gap: var(--space-m);
    padding: var(--space-l) var(--space-xxs);
  }
  .pillar-list .pillar h3 {
    font-size: 18px;
  }
  .pillar-list .pillar > span {
    font-size: 16px;
  }
  .pillar-list .pillar > p {
    font-size: 12px;
  }
  .history {
    gap: var(--space-xl);
  }
  .history-number strong {
    font-size: 40px;
  }
  .history-number span {
    font-size: 12px;
  }
  .board {
    gap: var(--space-xs);
  }
  .board-card {
    height: 128px;
  }
  .board-front,
  .board-back {
    padding: var(--space-s);
  }
  .board-card strong {
    font-size: 17px;
  }
  .board-card small {
    font-size: 11px;
  }
  .board-back strong {
    font-size: 13px;
  }
  .resource-row {
    padding: var(--space-l) var(--space-xxs);
    gap: var(--space-s);
  }
  .resource-row strong {
    font-size: 20px;
  }
  .resource-row p {
    font-size: 14px;
  }
  .calendar-head h3 {
    font-size: 22px;
  }
  .contact-copy > p {
    font-size: 17px;
  }
  footer {
    padding: var(--space-2xl) var(--space-m) var(--space-l);
    gap: var(--space-xl);
  }
  footer .footer-brand > p {
    font-size: 23px;
    line-height: 1.3;
    margin-top: var(--space-l);
  }
  .footer-nav a {
    font-size: 13px;
  }
  .footer-meta {
    font-size: 12px;
  }
}

/* Unified hard cast-shadow system */
:root {
  --cast-offset: 12px;
  --cast-shadow-black: var(--cast-offset) var(--cast-offset) 0 var(--ink);
}
.history-number {
  box-shadow: var(--cast-shadow-black);
}
.calendar {
  box-shadow: var(--cast-offset) var(--cast-offset) 0 var(--pink);
}
.program-panel {
  box-shadow: var(--cast-shadow-black);
  margin-right: var(--cast-offset);
  margin-bottom: var(--cast-offset);
}
.program-panel.blue {
  box-shadow: var(--cast-offset) var(--cast-offset) 0 var(--blue);
}
.program-panel.yellow {
  box-shadow: var(--cast-offset) var(--cast-offset) 0 var(--yellow);
}
.program-panel.pink {
  box-shadow: var(--cast-offset) var(--cast-offset) 0 var(--pink);
}
.pillars-mini div {
  box-shadow: var(--cast-shadow-black);
  margin-right: var(--cast-offset);
  margin-bottom: var(--cast-offset);
}
.board-card-inner {
  box-shadow: var(--cast-shadow-black);
  border-radius: 18px;
}
@media (max-width: 600px) {
  :root {
    --cast-offset: 8px;
  }
  .program-panel,
  .pillars-mini div {
    margin-right: var(--cast-offset);
    margin-bottom: var(--cast-offset);
  }
}

/* Stronger editorial title weights */
.hero h1 {
  font-weight: 700;
}
.mission h2,
.program-intro h2,
.pillars > h2,
.history h2,
.resources h2,
.events h2,
.contact h2 {
  font-weight: 700;
}
.program-panel h3,
.pillar-list .pillar h3,
.calendar-head h3,
.resource-row strong {
  font-weight: 700;
}
.board-card strong {
  font-weight: 700;
}
footer .footer-brand > p {
  font-weight: 600;
}

/* Expandable Otero County resource map */
.resource-map {
  margin-top: var(--space-3xl);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--cast-shadow-black);
}
.resource-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-xl);
}
.resource-map-head h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin: var(--space-xs) 0 var(--space-s);
}
.resource-map-head p:not(.tag) {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}
.resource-map-head a {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--blue);
  color: var(--white);
}
.resource-map-head a:hover {
  background: var(--orange);
}
.resource-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  border-top: 2px solid var(--ink);
}
.menu {
  font:
    600 14px/1 Poppins,
    Arial,
    sans-serif;
  padding: 12px 0;
  color: var(--ink);
  cursor: pointer;
}
.calendar-head {
  grid-template-columns: auto 1fr auto;
}
.calendar-head button {
  width: auto;
  min-width: 82px;
  padding: 0 14px;
  border-radius: 999px;
  font:
    600 12px/1 Poppins,
    Arial,
    sans-serif;
}
.resource-map iframe {
  pointer-events: auto;
}
.program-panel.blue,
.program-panel.yellow,
.program-panel.pink {
  border-top: 0;
}
.board-card:nth-child(3n + 1) .board-front,
.board-card:nth-child(3n + 2) .board-front,
.board-card:nth-child(3n) .board-front {
  border-top: 1px solid var(--line);
}
.board-card:nth-child(3n + 1) .board-card-inner {
  box-shadow: var(--cast-offset) var(--cast-offset) 0 var(--blue);
}
.board-card:nth-child(3n + 2) .board-card-inner {
  box-shadow: var(--cast-offset) var(--cast-offset) 0 var(--yellow);
}
.board-card:nth-child(3n) .board-card-inner {
  box-shadow: var(--cast-offset) var(--cast-offset) 0 var(--pink);
}
.resource-row {
  grid-template-columns: 60px 1fr 1fr;
}
.hero-scroll {
  bottom: 40px;
}
@media (max-width: 600px) {
  .hero h1 {
    font-weight: 700;
  }
  .mission h2,
  .program-intro h2,
  .pillars > h2,
  .history h2,
  .resources h2,
  .events h2,
  .contact h2 {
    font-weight: 700;
  }
  .resource-map {
    margin-top: var(--space-2xl);
  }
  .resource-map-head {
    align-items: flex-start;
    flex-direction: column;
    padding: var(--space-l);
    gap: var(--space-l);
  }
  .resource-map-head h3 {
    font-size: 22px;
  }
  .resource-map-head a {
    width: 100%;
    text-align: center;
  }
  .resource-map iframe {
    height: 360px;
  }
  .calendar-head {
    gap: var(--space-xs);
  }
  .calendar-head button {
    min-width: 64px;
    padding: 0 10px;
    font-size: 11px;
  }
  .resource-row {
    grid-template-columns: 34px 1fr;
  }
}

/* Restored oversized bold editorial hierarchy */
.hero h1 {
  font-size: clamp(72px, 6.6vw, 118px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 10ch;
}
.mission h2,
.program-intro h2,
.pillars > h2,
.history h2,
.resources h2,
.events h2,
.contact h2 {
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.program-panel h3 {
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  max-width: 16ch;
}
.pillar-list .pillar h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}
.resource-row strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}
.resource-map-head h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}
.calendar-head h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}
.board-card strong {
  font-size: 20px;
  font-weight: 700;
}
.history-number strong {
  font-size: clamp(112px, 14vw, 200px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.07em;
}
footer .footer-brand > p {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.16;
}

/* Expandable resource map */
.resource-row:is(button) {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}
.resource-row:is(button):hover,
.resource-row:is(button)[aria-expanded="true"] {
  background: var(--oat);
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.resource-row > .resource-number {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.resource-row > .resource-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}
.resource-map[hidden] {
  display: none !important;
}
.resource-map:not([hidden]) {
  animation: mapUnfold 0.45s cubic-bezier(0.2, 0.75, 0.25, 1) both;
  transform-origin: top;
}
@keyframes mapUnfold {
  from {
    opacity: 0;
    transform: scaleY(0.92) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 52px;
    line-height: 0.92;
    max-width: 9.5ch;
  }
  .mission h2,
  .program-intro h2,
  .pillars > h2,
  .history h2,
  .resources h2,
  .events h2,
  .contact h2 {
    font-size: 42px;
    line-height: 1;
  }
  .program-panel h3 {
    font-size: 32px;
  }
  .pillar-list .pillar h3 {
    font-size: 24px;
  }
  .resource-row strong {
    font-size: 24px;
  }
  .resource-map-head h3 {
    font-size: 28px;
  }
  .calendar-head h3 {
    font-size: 24px;
  }
  .board-card strong {
    font-size: 18px;
  }
  .history-number strong {
    font-size: 96px;
  }
  footer .footer-brand > p {
    font-size: 28px;
  }
  .resource-row > .resource-description {
    display: none;
  }
}

/* Layout alignment refinements */
.mission {
  padding-top: var(--space-5xl);
}
.resource-row,
.resource-row:is(button) {
  grid-template-columns: 80px minmax(280px, 1fr) minmax(320px, 1.25fr);
  gap: var(--space-l);
  padding: var(--space-l) var(--space-s);
  text-align: left;
  justify-items: start;
}
.resource-row:hover,
.resource-row:is(button):hover,
.resource-row:is(button)[aria-expanded="true"] {
  padding-left: var(--space-s);
  padding-right: var(--space-s);
}
.resource-row > .resource-number,
.resource-row > strong,
.resource-row > p,
.resource-row > .resource-description {
  align-self: center;
  margin: 0;
}
.board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-l);
}
.board-card {
  height: 108px;
}
.board-front,
.board-back {
  padding: var(--space-s) var(--space-m);
}
@media (max-width: 950px) {
  .resource-row,
  .resource-row:is(button) {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .resource-row > p,
  .resource-row > .resource-description {
    grid-column: 2;
  }
  .board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-m);
  }
}
@media (max-width: 600px) {
  .mission {
    padding-top: 80px;
  }
  .resource-row,
  .resource-row:is(button) {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: var(--space-s);
    padding: var(--space-l) var(--space-xxs);
  }
  .resource-row:hover,
  .resource-row:is(button):hover,
  .resource-row:is(button)[aria-expanded="true"] {
    padding-left: var(--space-xxs);
    padding-right: var(--space-xxs);
  }
  .board {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }
  .board-card {
    height: 100px;
  }
}

/* Program tab icons and panel illustrations */
#tab-yrs .yrs-tab-icon {
  display: block;
  flex: none;
  width: 54px;
  height: auto;
  margin-right: 14px;
  filter: drop-shadow(5px 5px 0 var(--ink));
}
#panel-yrs .yrs-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
#panel-yrs .yrs-illustration {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(12px 12px 0 var(--ink));
  transform-origin: center;
  transition: transform 0.25s ease;
}
#panel-yrs .yrs-intro-copy {
  min-width: 0;
}
#panel-yrs .yrs-intro-copy h3 {
  margin-top: 1rem;
}
#panel-yrs .yrs-intro-copy > p:last-child {
  font-size: 1.05rem;
  max-width: 44rem;
}
@media (max-width: 600px) {
  #tab-yrs .yrs-tab-icon {
    width: 46px;
    margin-right: 12px;
    filter: drop-shadow(4px 4px 0 var(--ink));
  }
  #panel-yrs .yrs-intro {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }
  #panel-yrs .yrs-illustration {
    filter: drop-shadow(7px 7px 0 var(--ink));
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  #panel-yrs .yrs-illustration:hover {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  #panel-yrs .yrs-illustration {
    transition: none;
  }
}

/* Story Riders uses the same icon and panel treatment */
#tab-story .story-tab-icon {
  display: block;
  flex: none;
  width: 54px;
  height: auto;
  margin-right: 14px;
  filter: drop-shadow(5px 5px 0 var(--ink));
}
#panel-story .story-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
#panel-story .story-illustration {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(12px 12px 0 var(--ink));
  transform-origin: center;
  transition: transform 0.25s ease;
}
#panel-story .story-intro-copy {
  min-width: 0;
}
#panel-story .story-intro-copy h3 {
  margin-top: 1rem;
}
#panel-story .story-intro-copy > p:last-child {
  font-size: 1.05rem;
  max-width: 44rem;
}
@media (max-width: 600px) {
  #tab-story .story-tab-icon {
    width: 46px;
    margin-right: 12px;
    filter: drop-shadow(4px 4px 0 var(--ink));
  }
  #panel-story .story-intro {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }
  #panel-story .story-illustration {
    filter: drop-shadow(7px 7px 0 var(--ink));
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  #panel-story .story-illustration:hover {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  #panel-story .story-illustration {
    transition: none;
  }
}

/* One Circle uses the same icon and panel treatment */
#tab-circle .circle-tab-icon {
  display: block;
  flex: none;
  width: 54px;
  height: auto;
  margin-right: 14px;
  filter: drop-shadow(5px 5px 0 var(--ink));
}
#panel-circle .circle-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
#panel-circle .circle-illustration {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(12px 12px 0 var(--ink));
  transform-origin: center;
  transition: transform 0.25s ease;
}
#panel-circle .circle-intro-copy {
  min-width: 0;
}
#panel-circle .circle-intro-copy h3 {
  margin-top: 1rem;
}
#panel-circle .circle-intro-copy > p:last-child {
  font-size: 1.05rem;
  max-width: 44rem;
}
@media (max-width: 600px) {
  #tab-circle .circle-tab-icon {
    width: 46px;
    margin-right: 12px;
    filter: drop-shadow(4px 4px 0 var(--ink));
  }
  #panel-circle .circle-intro {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }
  #panel-circle .circle-illustration {
    filter: drop-shadow(7px 7px 0 var(--ink));
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  #panel-circle .circle-illustration:hover {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  #panel-circle .circle-illustration {
    transition: none;
  }
}

/* Pillar headings and descriptions share one left edge */
.pillar-list .pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
}
.pillar-list .pillar > span {
  display: block;
  grid-column: auto;
  max-width: 60ch;
}

/* Illustrated marker for the expandable resource map */
#map-toggle .resource-map-pin {
  display: block;
  width: 42px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(6px 6px 0 var(--ink));
}
@media (max-width: 600px) {
  #map-toggle .resource-map-pin {
    width: 28px;
    filter: drop-shadow(4px 4px 0 var(--ink));
  }
}

/* Illustrated marker for referral forms */
.resource-row .referral-icon {
  display: block;
  width: 52px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(6px 6px 0 var(--ink));
}
@media (max-width: 600px) {
  .resource-row .referral-icon {
    width: 34px;
    filter: drop-shadow(4px 4px 0 var(--ink));
  }
}
