:root {
  --ink: #233d66;
  --muted: #5d6a63;
  --paper: #dcc490;
  --cream: #f6ebd8;
  --gold: #ef9c36;
  --gold-dark: #bf7717;
  --green: #59674c;
  --teal: #46523f;
  --rose: #d15f47;
  --line: rgba(35, 61, 102, 0.16);
  --shadow: 0 24px 70px rgba(35, 61, 102, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --horizon-glow: oklch(77% 0.17 77 / 0.28);
  --leaf-glow: oklch(56% 0.11 165 / 0.22);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(1200px 520px at 18% 0%, var(--horizon-glow), transparent 65%),
    linear-gradient(118deg, rgba(239, 156, 54, 0.14), transparent 38%, rgba(89, 103, 76, 0.16));
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(4%, 1%); }
  80% { transform: translate(-2%, -1%); }
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold), var(--green), var(--rose));
}

.aura-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 59;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(216, 155, 61, 0.2), rgba(47, 111, 99, 0.1) 42%, transparent 70%);
  mix-blend-mode: multiply;
  transition: opacity 260ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(89, 103, 76, 0.95);
  animation: navDrop 620ms var(--ease-out) both;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header.is-scrolled {
  background: rgba(89, 103, 76, 0.98);
  box-shadow: 0 12px 32px rgba(35, 61, 102, 0.09);
  backdrop-filter: blur(14px);
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 56px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: rgba(246, 235, 216, 0.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.05;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.nav .nav-cta {
  border: 1px solid rgba(246, 235, 216, 0.3);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--cream);
  color: var(--ink);
}

.nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 235, 216, 0.22);
  border-radius: 999px;
  background: rgba(246, 235, 216, 0.88);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 42px;
}

.hero::before {
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: clamp(70px, 16vw, 180px);
  z-index: 1;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  border: 1px solid rgba(216, 155, 61, 0.35);
  border-radius: 50%;
  content: "";
  clip-path: inset(52% 0 0);
  transform: rotate(-8deg);
  animation: horizonArc 10s ease-in-out infinite alternate;
}

@keyframes horizonArc {
  from { transform: translateY(8px) rotate(-8deg); opacity: 0.42; }
  to { transform: translateY(-10px) rotate(-3deg); opacity: 0.8; }
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(216, 196, 144, 0.92), rgba(216, 196, 144, 0.74) 40%, rgba(35, 61, 102, 0.08));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 900ms var(--ease-out);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: clamp(70px, 12vw, 140px);
}

.hero-content h1 {
  animation: heroReveal 900ms var(--ease-out) 120ms both;
}

.hero-copy,
.hero-actions,
.hero-panel {
  animation: heroReveal 900ms var(--ease-out) 260ms both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: Fraunces, "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 660px;
  font-size: clamp(58px, 10vw, 128px);
}

h2 {
  font-size: clamp(40px, 6vw, 74px);
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: #31415f;
  font-size: clamp(18px, 2.2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(35, 61, 102, 0.14);
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-out);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button.primary {
  background: var(--ink);
  color: var(--cream);
}

.button.secondary {
  background: rgba(246, 235, 216, 0.8);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(860px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  min-height: 132px;
  padding: 24px;
  background: rgba(246, 235, 216, 0.94);
}

.hero-panel strong {
  display: block;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(78px, 11vw, 150px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.home-intro {
  background: linear-gradient(180deg, rgba(246, 235, 216, 0.24), rgba(216, 196, 144, 0.18));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.page-directory {
  background: rgba(246, 235, 216, 0.72);
}

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

.directory-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 235, 216, 0.9);
  box-shadow: 0 14px 38px rgba(35, 61, 102, 0.08);
  transform-style: preserve-3d;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.directory-card:hover,
.directory-card:focus-visible {
  transform: translateY(-6px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: var(--shadow);
}

.directory-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.directory-card span {
  margin: 22px 22px 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directory-card h3,
.directory-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.directory-card h3 {
  margin-top: 0;
}

.directory-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.home-cta {
  padding: clamp(86px, 13vw, 150px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(70, 82, 63, 0.76), rgba(70, 82, 63, 0.76)),
    url("assets/stock/card-get-involved.jpg") center/cover;
}

.programs {
  background: rgba(246, 235, 216, 0.68);
}

.program-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.program-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(246, 235, 216, 0.92);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tab:hover {
  transform: translateX(4px);
}

.tab.is-active {
  background: var(--teal);
  color: var(--cream);
}

.program-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
}

.program-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.program-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
}

.program-card p {
  color: var(--muted);
  font-size: 18px;
}

.program-card a,
.news-card a {
  width: fit-content;
  margin-top: 10px;
  border-bottom: 2px solid var(--gold);
  color: var(--teal);
  font-weight: 800;
}

.impact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.impact-visual {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.impact-visual img {
  width: 100%;
  height: min(620px, 72vw);
  object-fit: cover;
}

.impact-copy p:not(.section-kicker) {
  max-width: 710px;
  color: var(--muted);
  font-size: 18px;
}

.mission-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mission-list span {
  border: 1px solid rgba(47, 111, 99, 0.25);
  border-radius: 999px;
  padding: 10px 14px;
  background: #edf6f2;
  color: var(--green);
  font-weight: 800;
}

.news {
  background: linear-gradient(180deg, rgba(216, 196, 144, 0.35), rgba(246, 235, 216, 0.9));
}

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

.news-card,
.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
}

.news-card {
  padding-bottom: 24px;
}

.news-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.news-card h3,
.news-card p,
.news-card a {
  margin-right: 22px;
  margin-left: 22px;
}

.news-card h3 {
  margin-top: 22px;
}

.news-card p {
  color: var(--muted);
}

.stories {
  background: var(--green);
  color: var(--cream);
}

.stories .section-kicker,
.stories .story-card span {
  color: #ffd58f;
}

.story-track {
  display: grid;
  grid-auto-columns: minmax(320px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.story-card {
  min-width: 0;
  color: var(--ink);
  scroll-snap-align: start;
}

.story-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.story-card div {
  padding: 22px;
}

.story-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
}

.story-card p {
  color: var(--muted);
}

.visit {
  padding: clamp(86px, 13vw, 160px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(70, 82, 63, 0.76), rgba(70, 82, 63, 0.76)),
    url("assets/stock/card-get-involved.jpg") center/cover;
}

.visit-card {
  max-width: 840px;
  color: var(--cream);
}

.visit-card .section-kicker {
  color: #ffd58f;
}

.visit-card p:not(.section-kicker) {
  max-width: 680px;
  font-size: 18px;
}

.visit-card .button.secondary {
  border-color: rgba(246, 235, 216, 0.42);
  background: rgba(246, 235, 216, 0.12);
  color: var(--cream);
}

.footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 28px;
  align-items: start;
  padding: 46px clamp(18px, 5vw, 72px);
  background: #46523f;
  color: var(--cream);
}

.footer img {
  width: 120px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.footer p {
  color: rgba(246, 235, 216, 0.82);
}

.newsletter label {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

.newsletter div {
  display: flex;
  gap: 10px;
}

.newsletter input,
.newsletter button {
  min-height: 46px;
  border: 1px solid rgba(246, 235, 216, 0.22);
  border-radius: 999px;
  font: inherit;
}

.newsletter input {
  width: 100%;
  padding: 0 16px;
  background: rgba(246, 235, 216, 0.08);
  color: var(--cream);
}

.newsletter button {
  padding: 0 20px;
  background: var(--gold);
  color: #243d66;
  cursor: pointer;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.footer-links a {
  color: var(--cream);
  font-weight: 800;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 78svh;
  padding: 138px clamp(18px, 5vw, 72px) 64px;
  background: linear-gradient(135deg, #dac28f 0%, #e0c797 52%, #efdfbf 100%);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: auto -10% -25% 35%;
  height: 52%;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(8deg, rgba(216, 155, 61, 0.11) 0 1px, transparent 1px 22px),
    linear-gradient(90deg, transparent, rgba(47, 111, 99, 0.12), transparent);
  transform: rotate(-5deg);
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 24px;
  color: #31415f;
  font-size: clamp(19px, 2.4vw, 25px);
}

.page-hero blockquote {
  max-width: 620px;
  margin: 28px 0 0;
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 22px;
  color: var(--teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.08;
}

.page-hero-image {
  width: 100%;
  height: min(620px, 68vw);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 120ms linear;
}

.page-body {
  background: linear-gradient(180deg, rgba(239, 223, 191, 0.7), rgba(246, 235, 216, 0.92));
}

.lead {
  max-width: 940px;
  color: var(--muted);
  font-size: 20px;
}

.detail-grid,
.people-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.detail-card,
.person-card,
.step-grid li {
  border: 1px solid rgba(35, 61, 102, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 14px 36px rgba(35, 61, 102, 0.08);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.detail-card:hover,
.person-card:hover,
.step-grid li:hover {
  border-color: rgba(216, 155, 61, 0.34);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.detail-card p,
.person-card p,
.step-grid li {
  color: var(--muted);
}

.detail-card a {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 2px solid var(--gold);
  color: var(--teal);
  font-weight: 800;
}

.person-card strong {
  display: block;
  margin-top: 10px;
  color: var(--gold-dark);
}

.step-grid {
  counter-reset: foster-step;
  list-style: none;
  padding: 0;
}

.step-grid li {
  position: relative;
  min-height: 120px;
  padding-top: 54px;
}

.step-grid li::before {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--cream);
  content: counter(foster-step);
  counter-increment: foster-step;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.contact-panel {
  margin-top: 44px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 46px);
  background: rgba(246, 235, 216, 0.92);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--green), var(--rose));
}

.contact-panel h2 {
  max-width: 760px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  border: 1px solid rgba(35, 61, 102, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--ink);
  font: inherit;
}

.contact-panel textarea {
  margin-top: 16px;
  resize: vertical;
}

.contact-panel .button {
  margin-top: 18px;
}

.form-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
}

.is-submitted .form-note::after {
  content: " Message noted on this demo page.";
  color: var(--green);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out), filter 760ms var(--ease-out);
}

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

.reveal:nth-child(2) { transition-delay: 70ms; }
.reveal:nth-child(3) { transition-delay: 140ms; }
.reveal:nth-child(4) { transition-delay: 210ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .aura-cursor,
  .scroll-meter {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(246, 235, 216, 0.32);
    border-radius: 8px;
    padding: 14px;
    background: rgba(89, 103, 76, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-panel,
  .intro-grid,
  .program-shell,
  .program-card,
  .impact,
  .footer,
  .page-hero,
  .detail-grid,
  .people-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: auto;
  }

  .program-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab {
    padding: 13px;
    text-align: center;
  }

  .program-card img {
    min-height: 280px;
    max-height: 420px;
  }

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

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

  .page-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .page-hero-image {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  .hero-media::after {
    background: linear-gradient(rgba(216, 196, 144, 0.92), rgba(216, 196, 144, 0.8));
  }

  .hero-actions,
  .visit-actions,
  .newsletter div {
    flex-direction: column;
  }

  .button,
  .newsletter button {
    width: 100%;
  }

  .program-tabs {
    grid-template-columns: 1fr;
  }

  .story-track {
    grid-auto-columns: minmax(280px, 86vw);
  }

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

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