:root {
  --bg: #f6f1ff;
  --surface: #ffffff;
  --surface-soft: #efe6ff;
  --surface-deep: #2a0b55;
  --surface-dark: #16052e;
  --ink: #1d1330;
  --muted: #66587e;
  --line: rgba(68, 26, 132, 0.14);
  --purple: #5c22b8;
  --purple-strong: #42167f;
  --purple-bright: #7e4ce0;
  --lavender: #d7c2ff;
  --gold: #f0c95b;
  --shadow: 0 24px 80px rgba(43, 16, 87, 0.12);
  --shadow-strong: 0 30px 90px rgba(24, 6, 48, 0.2);
  --radius: 0;
  --container: 1440px;
  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(126, 76, 224, 0.12), transparent 30%),
    linear-gradient(180deg, #faf8ff 0%, var(--bg) 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

p,
li,
label,
input,
textarea,
select {
  font-size: 1rem;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transform: scaleY(1);
  transform-origin: top center;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(16, 4, 34, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 45px rgba(12, 2, 24, 0.24);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  transform: scaleY(0.96);
}

.site-header .site-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: min-height 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled .site-shell {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 96px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-strong));
  box-shadow: 0 16px 40px rgba(92, 34, 184, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(92, 34, 184, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost {
  border-color: var(--line);
  color: var(--purple-strong);
  background: var(--surface);
}

.button-gold {
  color: var(--surface-dark);
  background: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(22, 5, 46, 0.94) 0%, rgba(52, 16, 104, 0.9) 46%, rgba(81, 32, 148, 0.78) 100%),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 28%, rgba(255, 212, 104, 0.36), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero .site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: center;
  padding: 124px 0 80px;
}

.hero-copy h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.hero-copy h1 .accent {
  color: #c78fff;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

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

.hero-notes article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-notes strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.hero-notes span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 560px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(248, 243, 255, 0.18), rgba(248, 243, 255, 0.08));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-panel .panel-media {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(54, 14, 105, 0.18), rgba(54, 14, 105, 0.52)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.hero-panel .panel-body {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: rgba(21, 6, 41, 0.82);
}

.hero-panel .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2,
.content-hero h1,
.section-heading h2,
.split-copy h2,
.story-banner h2,
.cta-panel h2,
.legal-panel h1,
.page-header h1 {
  margin-bottom: 0;
}

.hero-panel h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.mockup-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-card {
  min-height: 120px;
  display: grid;
  align-content: end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(250, 247, 255, 0.1), rgba(117, 63, 201, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-card strong {
  font-size: 0.9rem;
}

.mockup-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.page-main section,
.page-main .cta-band,
.page-main .page-header,
.page-main .content-hero,
.page-main .legal-panel {
  padding: 96px 0;
}

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

.section-heading h2,
.section-intro h2 {
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  color: var(--surface-dark);
}

.section-heading p,
.section-intro p,
.split-copy p,
.impact-card p,
.service-card p,
.story-card p,
.footer-summary,
.legal-panel p,
.page-header p,
.content-card p,
.contact-list li,
.info-card p,
.step-card p,
.audience-card p,
.benefit-list li,
.detail-list li {
  color: var(--muted);
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.icon-card,
.service-card,
.story-card,
.impact-card,
.step-card,
.audience-card,
.info-card,
.content-card,
.legal-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.icon-card,
.service-card,
.story-card,
.impact-card,
.step-card,
.audience-card,
.info-card,
.content-card {
  padding: 28px;
}

.icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--purple-strong);
  background: linear-gradient(180deg, #f2e8ff, #e2d0ff);
  font-size: 1.6rem;
  font-weight: 700;
}

.icon-card h3,
.service-card h3,
.story-card h3,
.impact-card strong,
.step-card h3,
.audience-card h3,
.content-card h3,
.info-card h3 {
  margin-bottom: 12px;
  color: var(--surface-dark);
  font-size: 1.55rem;
}

.icon-card:hover,
.service-card:hover,
.story-card:hover,
.impact-card:hover,
.step-card:hover,
.audience-card:hover,
.info-card:hover,
.content-card:hover {
  transform: translateY(-4px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border-color: rgba(92, 34, 184, 0.34);
  box-shadow: 0 28px 90px rgba(59, 21, 116, 0.16);
}

.mission-strip {
  position: relative;
  margin-top: -56px;
  padding-bottom: 96px;
}

.mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.mission-highlight {
  display: grid;
  gap: 18px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(160deg, var(--surface-dark), var(--purple-strong));
}

.mission-highlight h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.metric-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 6, 39, 0.98), rgba(69, 23, 132, 0.92)),
    url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.metric-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.metric-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  padding-top: 84px;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple-strong);
  font-weight: 700;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.band-media {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(32, 9, 66, 0.16), rgba(32, 9, 66, 0.46)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.split-copy {
  display: grid;
  gap: 18px;
  padding: 38px;
  color: #fff;
  background: linear-gradient(145deg, var(--purple-strong), #2c0c58);
}

.split-copy h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.split-copy p,
.split-copy li {
  color: rgba(255, 255, 255, 0.78);
}

.benefit-list,
.detail-list,
.resource-list,
.footer-links,
.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-list,
.detail-list {
  display: grid;
  gap: 12px;
}

.benefit-list li,
.detail-list li {
  position: relative;
  padding-left: 24px;
}

.benefit-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.stories-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.story-stack {
  display: grid;
  gap: 20px;
}

.story-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: stretch;
}

.story-card .story-image {
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.story-image-a {
  background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=900&q=80");
}

.story-image-b {
  background-image: url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=900&q=80");
}

.story-image-c {
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=80");
}

.quote-panel {
  padding: 30px;
  color: #fff;
  background: linear-gradient(160deg, var(--surface-dark), var(--purple-strong));
}

.quote-panel blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, #25074c, #6130bc);
  box-shadow: var(--shadow-strong);
}

.cta-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background:
    linear-gradient(90deg, rgba(37, 7, 76, 1) 0%, rgba(37, 7, 76, 0) 34%),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=900&q=80") center/cover;
  opacity: 0.55;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.contact-preview article {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.page-header {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 4, 34, 0.96), rgba(71, 27, 137, 0.88)),
    url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.page-header .site-shell {
  display: grid;
  gap: 18px;
  padding-top: 52px;
}

.page-header h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-header p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.page-header .meta-line {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-hero {
  padding-top: 72px;
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.content-card {
  padding: 34px;
}

.photo-panel,
.map-panel {
  min-height: 100%;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(245, 239, 255, 0.9), rgba(230, 216, 255, 0.88));
  box-shadow: var(--shadow);
}

.photo-panel {
  overflow: hidden;
}

.photo-panel .photo {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.photo-panel .photo-body,
.map-panel .map-copy {
  padding: 28px;
}

.photo-about {
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1200&q=80");
}

.photo-apply {
  background-image: url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1200&q=80");
}

.photo-volunteer {
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80");
}

.photo-stories {
  background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1200&q=80");
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--surface-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(92, 34, 184, 0.5);
  box-shadow: 0 0 0 3px rgba(126, 76, 224, 0.14);
}

.form-note {
  margin: 0;
  color: var(--purple-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  padding-top: 96px;
  color: rgba(255, 255, 255, 0.78);
  background: #130427;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 34px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.2rem;
}

.footer-brand img {
  width: 104px;
  margin-bottom: 18px;
}

.footer-links,
.contact-list {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.contact-list a:hover,
.social-links a:hover,
.credit a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.footer-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
}

.credit a {
  color: #fff;
}

.legal-panel {
  min-height: calc(100vh - 88px);
}

.legal-card {
  padding: 38px;
}

.legal-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
}

.legal-card h2 {
  margin: 28px 0 12px;
  font-size: 1.7rem;
}

.legal-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.map-panel {
  display: grid;
  align-content: stretch;
}

.map-embed {
  min-height: 320px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.map-graphic {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(104, 54, 191, 0.22), rgba(240, 201, 91, 0.2)),
    linear-gradient(180deg, #f4ecff, #e0d0ff);
  position: relative;
  overflow: hidden;
}

.map-graphic::before,
.map-graphic::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
}

.map-graphic::before {
  inset: 20% 12%;
  clip-path: polygon(0 6%, 46% 6%, 46% 0, 54% 0, 54% 68%, 100% 68%, 100% 76%, 54% 76%, 54% 100%, 46% 100%, 46% 14%, 0 14%);
}

.map-graphic::after {
  width: 24px;
  height: 24px;
  top: 42%;
  left: 54%;
  background: var(--purple-strong);
  box-shadow: 0 0 0 10px rgba(92, 34, 184, 0.14);
}

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

@media (max-width: 1180px) {
  .site-header .site-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 88px 16px auto;
    z-index: 110;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(16, 4, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
  }

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

  .site-nav a {
    padding: 14px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero .site-shell,
  .mission-panel,
  .split-band,
  .stories-strip,
  .cta-panel,
  .content-hero-grid,
  .grid-2,
  .page-header .site-shell {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .timeline,
  .metric-grid,
  .contact-preview,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    justify-self: start;
  }

  .mission-points {
    grid-template-columns: 1fr;
  }

  .cta-panel::after {
    width: 100%;
    opacity: 0.18;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header .site-shell {
    min-height: 76px;
  }

  .site-header.is-scrolled .site-shell {
    min-height: 64px;
  }

  .site-nav {
    top: 76px;
  }

  .brand img {
    width: 86px;
  }

  .hero .site-shell {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .hero-notes,
  .grid-4,
  .grid-3,
  .timeline,
  .metric-grid,
  .contact-preview,
  .footer-grid,
  .form-grid,
  .story-card,
  .mockup-stack {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .page-main section,
  .page-main .cta-band,
  .page-main .page-header,
  .page-main .content-hero,
  .page-main .legal-panel,
  .site-footer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .mission-strip {
    margin-top: -38px;
  }

  .mission-panel,
  .cta-panel,
  .split-copy,
  .content-card,
  .legal-card {
    padding: 24px;
  }

  .story-card {
    gap: 0;
  }

  .story-card .story-image {
    min-height: 220px;
  }
}

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

  .hero,
  .metric-band,
  .page-header {
    background-attachment: scroll;
  }
}
