:root {
  --ama-red: #e33732;
  --deep-red: #9e1816;
  --ink: #161313;
  --soft-ink: #3d3732;
  --muted: #716a63;
  --paper: #fffaf6;
  --white: #ffffff;
  --mist: #f3f2ef;
  --concrete: #d8d1c8;
  --blue: #214d82;
  --line: rgba(22, 19, 19, 0.13);
  --shadow: 0 28px 80px rgba(22, 19, 19, 0.16);
  --radius: 8px;
  --type-h1: clamp(2.15rem, 1.55rem + 3vw, 4.5rem);
  --type-h2: 1.125rem;
  --type-h3: 1.0625rem;
  --type-body: clamp(0.95rem, 0.92rem + 0.12vw, 1rem);
  --type-lead: clamp(0.98rem, 0.92rem + 0.28vw, 1.1rem);
  --type-small-body: 0.9rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

::selection {
  background: rgba(227, 55, 50, 0.2);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  overflow: hidden;
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.78);
  box-shadow: 0 18px 52px rgba(22, 19, 19, 0.12);
  padding: 10px 12px;
  backdrop-filter: blur(20px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 250, 246, 0.94);
  box-shadow: 0 12px 42px rgba(22, 19, 19, 0.13);
}

.brand {
  display: inline-flex;
  min-width: 188px;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 104px;
  height: auto;
}

.brand span {
  color: var(--ink);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav nav a {
  border-radius: var(--radius);
  color: rgba(22, 19, 19, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 11px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav nav a:hover,
.site-nav nav a:focus-visible {
  background: rgba(22, 19, 19, 0.07);
  color: var(--ink);
  transform: translateY(-1px);
}

.menu-button {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: rgba(22, 19, 19, 0.07);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.site-nav.menu-open .menu-button span:first-child {
  transform: rotate(45deg);
}

.site-nav.menu-open .menu-button span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-items: end;
  isolation: isolate;
  padding: 132px max(24px, calc((100% - 1180px) / 2)) 28px;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.76)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.1) 70%),
    linear-gradient(135deg, rgba(158, 24, 22, 0.52), rgba(33, 77, 130, 0.16));
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--ama-red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: var(--type-h1);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: var(--type-h2);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

h3 {
  margin-bottom: 12px;
  font-size: var(--type-h3);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.62;
}

.hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--type-lead);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 800;
  padding: 13px 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--ama-red);
  background: var(--ama-red);
  color: white;
  box-shadow: 0 18px 42px rgba(227, 55, 50, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--deep-red);
  border-color: var(--deep-red);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  min-height: 108px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.35;
}

.section {
  padding: 104px 24px;
}

.section-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 44px;
}

.story-section {
  background: var(--paper);
}

.story-grid,
.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.story-copy p,
.focus-copy p,
.video-heading p,
.section-heading p,
.cta-copy p {
  max-width: 650px;
}

.story-images {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 210px 210px;
  gap: 14px;
}

.story-images img,
.photo-mosaic img,
.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack img,
.experience-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-images img {
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(22, 19, 19, 0.1);
}

.story-images .story-large {
  grid-row: span 2;
}

.video-section {
  position: relative;
  padding: 106px 24px;
  background:
    linear-gradient(135deg, rgba(158, 24, 22, 0.9), rgba(22, 19, 19, 0.96)),
    var(--ink);
  color: white;
}

.video-heading {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.video-heading .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.video-heading p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

.video-shell {
  width: min(1040px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  padding: 10px;
}

.vimeo-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 2px);
  background: black;
}

.vimeo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-section {
  background: var(--mist);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.experience-card,
.program-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 54px rgba(22, 19, 19, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.experience-card:hover,
.program-card:hover {
  border-color: rgba(227, 55, 50, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.experience-card img,
.story-images img,
.image-stack img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-card:hover img,
.story-images img:hover,
.image-stack img:hover {
  transform: scale(1.035);
}

.experience-card img {
  aspect-ratio: 4 / 5;
}

.experience-card div,
.program-card {
  padding: 22px;
}

.experience-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.experience-card p,
.program-card p {
  font-size: var(--type-small-body);
  line-height: 1.56;
}

.focus-section {
  background: var(--white);
}

.focus-grid {
  grid-template-columns: minmax(430px, 1fr) minmax(0, 0.9fr);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  border-radius: var(--radius);
}

.image-stack img:first-child {
  aspect-ratio: 1 / 1.08;
}

.image-stack img:last-child {
  aspect-ratio: 1 / 1.3;
}

.method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.method-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 760;
  padding: 10px 12px;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(243, 242, 239, 0.96)),
    var(--mist);
}

.photo-mosaic {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 126px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.photo-mosaic figure {
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--concrete);
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: none;
  cursor: zoom-in;
  padding: 0;
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--ama-red);
  outline-offset: -3px;
}

.photo-mosaic .tile-wide {
  grid-column: span 6;
}

.photo-mosaic .tile-tall {
  grid-row: span 3;
}

.photo-mosaic img {
  transition: transform 400ms ease;
}

.photo-mosaic figure:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.04);
}

.programs-section {
  background: var(--paper);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.program-card {
  min-height: 190px;
}

.program-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ama-red);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover::before,
.program-card:focus-within::before {
  transform: scaleX(1);
}

.program-card h3 {
  min-height: 2.4em;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-heading p {
  max-width: 430px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 820;
  padding: 22px 50px 22px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 2px;
  background: var(--ama-red);
  content: "";
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details p {
  max-width: 650px;
  margin-bottom: 22px;
  padding-right: 50px;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--ama-red);
  outline-offset: 4px;
}

.contact-section {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-item {
  display: grid;
  min-height: 190px;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-item i {
  align-self: start;
  margin-bottom: 34px;
  color: var(--ama-red);
  font-size: 1.4rem;
}

.contact-item span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 0.96rem;
  line-height: 1.35;
}

.contact-item:hover,
.contact-item:focus-visible {
  border-color: rgba(227, 55, 50, 0.4);
  box-shadow: 0 20px 52px rgba(22, 19, 19, 0.1);
  transform: translateY(-4px);
}

.contact-item:focus-visible {
  outline: 2px solid var(--ama-red);
  outline-offset: 3px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.cta-photo {
  min-height: 430px;
}

.cta-copy {
  display: grid;
  align-content: center;
  padding: 54px;
}

.cta-copy .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-copy .button {
  width: fit-content;
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: var(--white);
  padding: 54px 24px 24px;
}

.footer-inner {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  align-items: start;
  gap: 40px;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 104px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-about > p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-about > p {
  max-width: 260px;
  margin: 18px 0 0;
  line-height: 1.55;
}

.footer-nav,
.footer-contact,
.footer-social {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-nav strong,
.footer-contact strong,
.footer-social > strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  line-height: 1.4;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  width: min(1180px, 100%);
  margin: 42px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom button {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 0.78rem;
  padding: 0;
}

.footer-bottom button:hover,
.footer-bottom button:focus-visible {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--ama-red);
  background: var(--ama-red);
  color: var(--white);
  transform: translateY(-3px);
}

.lightbox,
.legal-dialog {
  border: 0;
  padding: 0;
}

.lightbox::backdrop,
.legal-dialog::backdrop {
  background: rgba(10, 8, 8, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox {
  overflow: visible;
  width: min(1100px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100svh - 48px);
  background: transparent;
  color: var(--white);
}

.lightbox figure {
  display: grid;
  margin: 0;
  justify-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 116px);
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav,
.dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(22, 19, 19, 0.72);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
}

.lightbox-nav {
  position: fixed;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-count {
  position: fixed;
  bottom: 20px;
  left: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  transform: translateX(-50%);
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.dialog-close:hover,
.dialog-close:focus-visible {
  border-color: var(--ama-red);
  background: var(--ama-red);
  outline: none;
}

.legal-dialog {
  position: relative;
  width: min(520px, calc(100% - 36px));
  max-width: none;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 34px;
}

.legal-dialog .dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.legal-dialog h2 {
  padding-right: 42px;
}

.legal-dialog p:last-child {
  margin-bottom: 0;
}

body.has-dialog {
  overflow: hidden;
}

.social-links a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 760ms ease var(--reveal-delay),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.experience-card:nth-child(2),
.program-card:nth-child(2) {
  --reveal-delay: 80ms;
}

.experience-card:nth-child(3),
.program-card:nth-child(3) {
  --reveal-delay: 160ms;
}

.experience-card:nth-child(4),
.program-card:nth-child(4) {
  --reveal-delay: 240ms;
}

.program-card:nth-child(5) {
  --reveal-delay: 320ms;
}

.program-card:nth-child(6) {
  --reveal-delay: 400ms;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: hero-drift 18s ease-in-out infinite alternate;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 980px) {
  .site-nav {
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav nav {
    display: none;
    width: 100%;
    padding-top: 8px;
  }

  .site-nav.menu-open nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 90svh;
    padding-top: 112px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .story-grid,
  .focus-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .story-images,
  .image-stack {
    grid-template-columns: 1fr 1fr;
  }

  .experience-grid,
  .program-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-heading {
    position: static;
  }

  .experience-card img {
    aspect-ratio: 16 / 11;
  }

  .photo-mosaic {
    grid-auto-rows: 118px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .photo-mosaic figure,
  .photo-mosaic .tile-wide {
    grid-column: span 3;
  }

  .cta-copy {
    padding: 42px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 92px;
  }

  .hero {
    min-height: 92svh;
    padding-inline: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts,
  .experience-grid,
  .program-grid,
  .contact-grid,
  .story-images,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
  }

  .section,
  .video-section {
    padding: 78px 18px;
  }

  .story-images {
    grid-template-rows: none;
  }

  .story-images img,
  .story-images .story-large {
    grid-row: auto;
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .video-shell {
    padding: 6px;
  }

  .photo-mosaic {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .photo-mosaic figure,
  .photo-mosaic .tile-wide,
  .photo-mosaic .tile-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-mosaic img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .cta-section {
    width: calc(100% - 36px);
  }

  .program-card h3 {
    min-height: 0;
  }

  .cta-photo {
    min-height: 260px;
  }

  .cta-copy {
    padding: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-about,
  .footer-social {
    grid-column: 1 / -1;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    width: calc(100% - 24px);
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-count {
    bottom: 30px;
  }

  .legal-dialog {
    padding: 28px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
