:root {
  --navy-950: #041d30;
  --navy-900: #062b4d;
  --navy-800: #083b66;
  --navy-700: #0c4b79;
  --blue-500: #1674b8;
  --gold-300: #ffe38a;
  --gold-400: #f8c84a;
  --gold-500: #eda91d;
  --gold-600: #d8890d;
  --cream: #fff8e8;
  --cream-2: #fffdf6;
  --sand: #f2e4c8;
  --coral: #e97849;
  --teal: #2d7774;
  --ink: #13283a;
  --muted: #5d6b76;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(4, 29, 48, 0.10);
  --shadow-md: 0 22px 60px rgba(4, 29, 48, 0.18);
  --shadow-lg: 0 32px 90px rgba(4, 29, 48, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1220px;
  --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 108px 0; position: relative; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  background: var(--gold-400);
  color: var(--navy-950);
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(4, 29, 48, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(4, 29, 48, .985); box-shadow: 0 12px 35px rgba(0,0,0,.18); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; width: 214px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  position: relative;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.primary-nav > a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-400);
  transition: right .2s ease;
}
.primary-nav > a:not(.nav-donate):hover::after,
.primary-nav > a:not(.nav-donate):focus-visible::after { right: 0; }
.nav-donate {
  display: none;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--navy-950) !important;
  background: var(--gold-400);
}
.header-text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 9px 16px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-text-button:hover { transform: translateY(-2px); box-shadow: 0 11px 26px rgba(0,0,0,.24); }
.header-text-button svg { width: 25px; height: 25px; fill: currentColor; }
.header-text-button small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; opacity: .75; }
.menu-toggle { display: none; }

.hero {
  min-height: 850px;
  padding-top: var(--header-height);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-900) url('../images/new-mexico-sunrise.svg') center / cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: var(--header-height) 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,29,48,.42) 0%, rgba(4,29,48,.18) 44%, rgba(4,29,48,.52) 100%),
    linear-gradient(0deg, rgba(4,29,48,.74) 0%, transparent 52%);
}
.hero-grid {
  min-height: 690px;
  padding-top: 64px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  align-items: end;
  gap: clamp(48px, 7vw, 100px);
}
.hero-portrait {
  position: relative;
  align-self: end;
  max-width: 420px;
  padding: 11px;
  border-radius: 48px 48px 24px 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(248,200,74,.72));
  box-shadow: var(--shadow-lg);
}
.hero-portrait picture { position: relative; z-index: 1; }
.hero-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 39px 39px 17px 17px;
}
.portrait-halo {
  position: absolute;
  z-index: -1;
  inset: -46px -32px 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,230,132,.64), rgba(255,230,132,0) 68%);
  filter: blur(10px);
}
.portrait-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1px;
  margin-top: 10px;
  padding: 12px 18px 10px;
  text-align: center;
  color: var(--navy-950);
  background: rgba(255,255,255,.78);
  border-radius: 12px;
}
.portrait-caption strong { font-size: 19px; }
.portrait-caption span { font-size: 13px; font-weight: 700; color: var(--navy-700); text-transform: uppercase; letter-spacing: .08em; }
.hero-copy { max-width: 720px; align-self: center; padding-top: 28px; }
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 42px; height: 3px; border-radius: 99px; background: var(--gold-400); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .98;
  letter-spacing: -.045em;
  text-shadow: 0 4px 20px rgba(0,0,0,.32);
}
.hero h1 em { display: block; color: var(--gold-300); font-weight: 700; }
.hero-lead { max-width: 680px; margin: 24px 0 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; color: rgba(255,255,255,.93); text-shadow: 0 2px 10px rgba(0,0,0,.25); }
.hero-verse {
  max-width: 670px;
  margin: 26px 0 0;
  padding: 18px 22px;
  border-left: 5px solid var(--gold-400);
  border-radius: 0 14px 14px 0;
  background: rgba(4,29,48,.46);
  backdrop-filter: blur(8px);
}
.hero-verse p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 2.7vw, 33px); font-style: italic; line-height: 1.25; }
.hero-verse cite { display: block; margin-top: 7px; color: var(--gold-300); font-style: normal; font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 26px rgba(4,29,48,.16);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(4,29,48,.24); }
.button:active { transform: translateY(0); }
.button svg { width: 21px; height: 21px; fill: currentColor; }
.button-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-400) 55%, var(--gold-500)); border-color: rgba(255,255,255,.42); }
.button-gold:hover { background: linear-gradient(135deg, #fff1ae, #ffd75d 55%, #f3b52c); }
.button-light { color: var(--navy-950); background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.65); }
.button-navy { color: var(--white); background: var(--navy-900); }
.button-light-outline { color: var(--white); border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); }
.button-light-outline:hover { background: rgba(255,255,255,.18); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.42); background: transparent; box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.10); }
.hero-handle { margin: 13px 0 0 5px; font-size: 14px; color: rgba(255,255,255,.84); }
.hero-handle strong { color: var(--gold-300); }
.welcome-band {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.25);
  background: rgba(4,29,48,.88);
  box-shadow: 0 -10px 40px rgba(0,0,0,.18);
}
.welcome-band-inner { min-height: 74px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.welcome-band span { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.welcome-band span + span { border-left: 1px solid rgba(255,255,255,.16); }
.welcome-band svg { width: 23px; height: 23px; fill: var(--gold-400); }

.section-kicker { color: var(--gold-600); }
.section-kicker.light { color: var(--gold-300); }
h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(39px, 4.2vw, 61px); line-height: 1.08; letter-spacing: -.035em; color: var(--navy-900); }
h3 { margin: 0; font-size: 23px; line-height: 1.25; color: var(--navy-900); }
.two-column-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 110px); align-items: start; }
.intro-copy { font-size: 19px; color: var(--muted); }
.intro-copy p { margin: 0; }
.intro-copy p + p { margin-top: 16px; }
.mission { overflow: hidden; background: linear-gradient(180deg, var(--cream-2), #fffaf0); }
.mission::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,200,74,.22), rgba(248,200,74,0) 70%);
  pointer-events: none;
}
.mission-principles {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(6,43,77,.10);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.principle { padding: 28px 31px; display: grid; gap: 4px; }
.principle + .principle { border-left: 1px solid rgba(6,43,77,.11); }
.principle strong { color: var(--navy-900); font-size: 19px; }
.principle span { color: var(--muted); font-size: 15px; }

.services { background: #f7eedc; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  min-height: 330px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(6,43,77,.09);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(248,200,74,.72); }
.service-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--navy-900);
  background: linear-gradient(145deg, #fff5c8, var(--gold-400));
  box-shadow: 0 12px 24px rgba(237,169,29,.22);
}
.service-icon svg { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.service-card p { margin: 13px 0 0; color: var(--muted); font-size: 16px; }

.verse-section { padding: 66px 0; color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); overflow: hidden; position: relative; }
.verse-section::before, .verse-section::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(248,200,74,.18); }
.verse-section::before { width: 370px; height: 370px; left: -180px; top: -240px; }
.verse-section::after { width: 520px; height: 520px; right: -240px; bottom: -360px; }
.verse-inner { display: flex; align-items: center; justify-content: center; gap: 38px; }
.verse-cross { flex: 0 0 auto; width: 68px; height: 68px; fill: var(--gold-400); opacity: .96; }
.verse-inner blockquote { margin: 0; max-width: 900px; text-align: center; }
.verse-inner p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px, 3.1vw, 44px); font-style: italic; line-height: 1.3; }
.verse-inner cite { display: block; margin-top: 12px; color: var(--gold-300); font-style: normal; font-size: 13px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }

.founder { background: var(--cream-2); }
.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.founder-logo { position: relative; padding: 35px; border-radius: var(--radius-lg); background: radial-gradient(circle at 45% 35%, #ffffff 0%, #fff8e8 58%, #efdcb5 100%); box-shadow: var(--shadow-md); }
.founder-logo::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(6,43,77,.09); border-radius: 28px; pointer-events: none; }
.founder-copy > p:not(.section-kicker):not(.founder-quote) { color: var(--muted); font-size: 18px; }
.founder-quote { margin: 25px 0 0; padding-left: 24px; border-left: 5px solid var(--gold-400); font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-style: italic; color: var(--navy-900); }
.founder-signature { margin: 22px 0 15px; font-family: "Brush Script MT", "Segoe Script", cursive; font-size: 48px; line-height: 1; color: var(--navy-700); transform: rotate(-2deg); transform-origin: left center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-700); font-weight: 900; text-decoration: none; border-bottom: 2px solid var(--gold-400); }
.text-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.involved { color: var(--white); background: linear-gradient(160deg, #0b416c 0%, #062b4d 58%, #041d30 100%); }
.involved .section-kicker { color: var(--gold-300); }
.involved h2 { color: var(--white); }
.involved .section-heading > p:last-child { color: rgba(255,255,255,.75); }
.involvement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.involvement-card { min-height: 430px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); box-shadow: 0 22px 50px rgba(0,0,0,.18); overflow: hidden; position: relative; }
.involvement-card::before { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; right: -70px; top: -78px; background: rgba(255,255,255,.09); }
.involvement-card h3 { color: inherit; font-size: 27px; }
.involvement-card p { color: rgba(255,255,255,.82); }
.involvement-card .button { align-self: flex-start; box-shadow: none; }
.card-label { margin: 0 0 9px; font-size: 12px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.volunteer-card { background: linear-gradient(145deg, #e7eef2, #ffffff); color: var(--navy-950); }
.volunteer-card p { color: #536471; }
.volunteer-card .card-label { color: var(--navy-700); }
.need-card { background: linear-gradient(145deg, #9a4b38, #632b34); }
.need-card .card-label { color: #ffd5aa; }
.partner-card { background: linear-gradient(145deg, #257b79, #0f4c5d); }
.partner-card .card-label { color: #d8fff1; }

.contact-section { background: #f7eedc; }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 7vw, 100px); align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.section-kicker) { color: var(--muted); font-size: 18px; }
.direct-contact { margin-top: 30px; padding: 22px 24px; display: grid; gap: 4px; border-radius: 18px; background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-sm); }
.direct-contact span { color: var(--gold-300); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.direct-contact a { font-size: 28px; font-weight: 900; text-decoration: none; }
.sms-form { padding: 38px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-md); }
.form-row { display: grid; gap: 8px; }
.form-row + .form-row { margin-top: 20px; }
.form-row label { color: var(--navy-900); font-size: 14px; font-weight: 900; }
input, select, textarea { width: 100%; border: 1.5px solid #cbd4da; border-radius: 12px; background: #fbfcfd; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
input, select { min-height: 52px; padding: 10px 14px; }
textarea { resize: vertical; min-height: 145px; padding: 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(22,116,184,.14); background: var(--white); }
.form-submit { margin-top: 24px; border: 0; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 13px; }
.form-status, .copy-status { min-height: 1.5em; margin: 10px 0 0; color: var(--navy-700); font-weight: 800; font-size: 14px; }

.donate-section { padding-top: 92px; background: var(--cream-2); }
.donate-panel { padding: clamp(32px, 5vw, 62px); display: grid; grid-template-columns: 1fr 270px; gap: 60px; align-items: center; color: var(--white); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.donate-panel::before { content: ""; position: absolute; width: 560px; height: 560px; right: -230px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(248,200,74,.35), rgba(248,200,74,0) 70%); }
.donate-panel h2 { color: var(--white); }
.donate-copy { position: relative; z-index: 1; }
.donate-copy > p:not(.section-kicker):not(.copy-status) { max-width: 760px; color: rgba(255,255,255,.80); font-size: 18px; }
.donate-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 26px; }
.donate-qr { position: relative; z-index: 1; padding: 15px; display: grid; justify-items: center; gap: 5px; border-radius: 24px; background: rgba(255,255,255,.95); color: var(--navy-950); text-align: center; box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.donate-qr img { width: 100%; height: auto; border-radius: 10px; }
.donate-qr strong { font-size: 16px; }
.donate-qr span { font-size: 13px; color: var(--navy-700); font-weight: 800; }
.giving-disclosure { padding-top: 25px; }
.giving-disclosure p { margin: 0; color: var(--muted); font-size: 13px; text-align: center; }
.giving-disclosure a { color: var(--navy-700); font-weight: 800; }

.site-footer { color: var(--white); background: var(--navy-950); }
.footer-top { padding: 65px 0 48px; display: grid; grid-template-columns: 1.05fr 1.3fr .75fr; gap: 55px; align-items: start; }
.footer-brand img { width: 250px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.68); font-size: 14px; }
.footer-verse { margin: 0; padding-left: 24px; border-left: 3px solid var(--gold-400); }
.footer-verse p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-style: italic; line-height: 1.5; color: rgba(255,255,255,.86); }
.footer-verse cite { display: block; margin-top: 8px; color: var(--gold-300); font-size: 12px; font-style: normal; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact { display: grid; gap: 9px; }
.footer-contact strong { color: var(--gold-300); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact a { color: rgba(255,255,255,.80); text-decoration: none; font-size: 14px; }
.footer-contact a:hover { color: var(--gold-300); }
.footer-bottom { padding: 20px 0 28px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.55); font-size: 13px; }
.footer-legal { display: flex; flex-direction: column; gap: 5px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.site-credit a { color: var(--gold-400); font-weight: 700; }
.site-credit a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.mobile-action-bar { display: none; }

/* Interior pages */
.inner-page { min-height: 100vh; padding-top: var(--header-height); background: #f7eedc; }
.inner-hero { padding: 76px 0 56px; color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.inner-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 6vw, 76px); line-height: 1.05; }
.inner-hero p { max-width: 760px; color: rgba(255,255,255,.8); font-size: 18px; }
.legal-content { max-width: 900px; margin: 0 auto; padding: 72px 0 96px; }
.legal-card { padding: clamp(30px, 5vw, 56px); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-md); }
.legal-card h2 { margin-top: 40px; font-size: 34px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--navy-700); font-weight: 800; }
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--navy-700); font-weight: 900; text-decoration: none; }
.error-page { min-height: 100vh; padding: 130px 20px 70px; display: grid; place-items: center; color: var(--white); text-align: center; background: var(--navy-950) url('../images/new-mexico-sunrise.svg') center / cover no-repeat; }
.error-card { max-width: 720px; padding: 50px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg); background: rgba(4,29,48,.78); backdrop-filter: blur(12px); box-shadow: var(--shadow-lg); }
.error-card img { width: min(420px, 100%); margin: 0 auto 22px; }
.error-card h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 64px; }
.error-card p { color: rgba(255,255,255,.8); }

:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
.reveal.delay-1 { transition-delay: .05s; }
.reveal.delay-2 { transition-delay: .10s; }
.reveal.delay-3 { transition-delay: .15s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --header-height: 80px; }
  .brand { width: 190px; }
  .primary-nav { gap: 19px; }
  .primary-nav a { font-size: 14px; }
  .header-text-button { min-width: 0; padding: 10px 13px; }
  .header-text-button span { display: none; }
  .hero-grid { grid-template-columns: 360px 1fr; gap: 55px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 290px; }
  .involvement-grid { grid-template-columns: 1fr; }
  .involvement-card { min-height: 0; }
  .involvement-card .button { align-self: flex-start; }
}

@media (max-width: 860px) {
  .site-header { height: var(--header-height); }
  .header-inner { justify-content: space-between; }
  .brand { width: 205px; }
  .header-text-button { margin-left: auto; }
  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 13px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 2px; border-radius: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    margin: 0;
    padding: 30px 24px 34px;
    display: grid;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    background: rgba(4,29,48,.985);
    border-top: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 25px 50px rgba(0,0,0,.3);
    transition: transform .28s ease, opacity .2s ease, visibility .28s;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.10); font-size: 17px; }
  .primary-nav > a::after { display: none; }
  .nav-donate { display: inline-flex !important; justify-content: center; margin-top: 18px; border-bottom: 0 !important; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 55px; padding-bottom: 62px; text-align: center; }
  .hero-copy { grid-row: 1; max-width: 720px; margin-inline: auto; padding-top: 15px; }
  .hero-portrait { grid-row: 2; width: min(420px, 78vw); margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-verse { margin-inline: auto; text-align: left; }
  .hero-actions { justify-content: center; }
  .welcome-band-inner { min-height: 66px; }
  .two-column-intro, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .mission-principles { grid-template-columns: 1fr; }
  .principle + .principle { border-left: 0; border-top: 1px solid rgba(6,43,77,.11); }
  .founder-logo { max-width: 600px; margin-inline: auto; }
  .contact-copy { position: static; }
  .donate-panel { grid-template-columns: 1fr; text-align: center; }
  .donate-copy > p:not(.section-kicker):not(.copy-status) { margin-inline: auto; }
  .donate-actions { justify-content: center; }
  .donate-qr { width: min(280px, 100%); margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --header-height: 72px; }
  body { font-size: 16px; padding-bottom: 64px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .brand { width: 170px; }
  .header-text-button { display: none; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero-grid { padding-top: 42px; gap: 42px; }
  .hero h1 { font-size: clamp(48px, 16vw, 68px); }
  .hero-lead { font-size: 18px; }
  .hero-verse { padding: 16px 17px; }
  .hero-verse p { font-size: 23px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-portrait { width: min(360px, 88vw); border-radius: 36px 36px 20px 20px; }
  .hero-portrait img { border-radius: 28px 28px 13px 13px; }
  .welcome-band-inner { padding: 13px 0; grid-template-columns: 1fr; gap: 9px; }
  .welcome-band span + span { border-left: 0; }
  .welcome-band span { font-size: 13px; }
  .two-column-intro { gap: 25px; }
  .mission-principles { margin-top: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .verse-inner { flex-direction: column; gap: 18px; }
  .verse-cross { width: 50px; height: 50px; }
  .founder-logo { padding: 22px; }
  .founder-signature { font-size: 42px; }
  .involvement-card { padding: 28px; }
  .involvement-card .button { width: 100%; }
  .sms-form { padding: 26px 20px; }
  .form-submit { width: 100%; }
  .donate-section { padding-top: 72px; }
  .donate-panel { padding: 32px 20px; gap: 38px; border-radius: 25px; }
  .donate-actions { display: grid; }
  .donate-actions .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .mobile-action-bar {
    position: fixed;
    z-index: 110;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  }
  .mobile-action-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-size: 14px; font-weight: 900; }
  .mobile-action-bar a:first-child { color: var(--white); background: var(--navy-700); }
  .mobile-action-bar a:last-child { color: var(--navy-950); background: var(--gold-400); }
  .mobile-action-bar svg { width: 21px; height: 21px; fill: currentColor; }
  .inner-page { padding-top: var(--header-height); }
  .inner-hero { padding: 54px 0 40px; }
  .legal-content { padding: 46px 0 78px; }
  .legal-card { padding: 28px 20px; }
  .error-card { padding: 34px 22px; }
  .error-card h1 { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
