:root {
  --ink: #1c2430;
  --muted: #3e4754;
  --navy: #1b2a4a;
  --navy-2: #24365f;
  --coral: #e7977a;
  --coral-2: #efa286;
  --coral-text: #b24d32;
  --gold: #f6cc0a;
  --cream: #f6f0e8;
  --paper: #fffdf9;
  --line: #e4d9cc;
  --shadow: 0 14px 32px rgba(27, 42, 74, .1);
  --radius: 1rem;
  --header-h: 6.4rem;
  --header-bg: #000;
  --header-link: #fff;
  --header-accent: #468faf;
  --header-accent-deep: #324a6d;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Figtree, system-ui, sans-serif;
  line-height: 1.6;
  font-size: 1.05rem;
  overflow-x: hidden;
}
img, picture, svg, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); }
a:hover { color: var(--coral-text); }
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.visually-hidden, .hp {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: 1rem; z-index: 5003;
  transform: translateY(-180%);
  background: var(--header-bg); color: #fff; padding: .7rem 1rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; min-height: 44px;
}
.skip:focus, .skip:focus-visible { transform: none; color: #fff; }
.wrap { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 5000;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  min-height: var(--header-h);
  padding: .35rem 0;
}
.brand {
  display: flex; align-items: center; min-height: 44px; min-width: 44px;
  text-decoration: none; flex-shrink: 0;
}
.brand img { width: 112px; height: 96px; object-fit: contain; }
.site-nav { display: flex; flex-wrap: wrap; gap: .35rem 1.15rem; align-items: center; }
.site-nav a {
  text-decoration: none; color: var(--header-link); font-weight: 500; font-size: .95rem;
  padding: .55rem 0; min-height: 44px; display: inline-flex; align-items: center;
  border-radius: 0; letter-spacing: .01em;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--header-accent); background: transparent; }
.site-nav a.is-active:not(.nav-cta) {
  color: var(--header-accent);
  box-shadow: inset 0 -2px 0 var(--header-accent-deep);
}
.nav-cta {
  background: var(--header-accent) !important; color: #fff !important;
  padding: .5rem 1.05rem !important; box-shadow: none !important;
  border-radius: .35rem !important; font-weight: 600 !important;
  min-height: 44px;
}
.nav-cta:hover, .nav-cta:focus-visible { background: #3d7e9b !important; color: #fff !important; filter: none; }
.nav-cta.is-active { box-shadow: none !important; }
.nav-toggle {
  display: none; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45);
  border-radius: .35rem; padding: .55rem 1.1rem; font: inherit; font-weight: 600;
  min-height: 44px; min-width: 5.4rem; cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--header-accent); color: var(--header-accent); }
.banner {
  position: relative; overflow: hidden; color: #fff;
  min-height: min(72vh, 38rem); background: var(--navy);
}
.banner-track, .banner-slide, .banner-slide picture, .banner-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.banner-slide img { object-fit: cover; object-position: center 30%; }
.banner-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: grid; align-items: center;
  background: linear-gradient(90deg, rgba(27,42,74,.78) 0%, rgba(27,42,74,.42) 55%, rgba(27,42,74,.2) 100%);
}
.banner-copy { padding: 4.5rem 0 4rem; }
.banner h1 {
  font-family: Fraunces, Georgia, serif; font-size: clamp(2.2rem, 6vw, 4.4rem);
  margin: 0 0 .4rem; color: #fff; line-height: 1.08; max-width: 14ch;
}
.banner-sub {
  margin: 0 0 1.3rem; font-size: clamp(1.05rem, 2.2vw, 1.45rem); color: var(--gold); font-weight: 700;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy); text-decoration: none;
  padding: .8rem 1.2rem; border-radius: 999px; font-weight: 800; border: 0; cursor: pointer;
  min-height: 48px; font-size: 1rem;
}
.btn:hover { background: #ffd84a; color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--navy); }
.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.eyebrow {
  letter-spacing: .14em; text-transform: uppercase; font-size: .76rem;
  color: var(--coral-text); font-weight: 800; margin: 0 0 .55rem;
}
h1, h2, h3, h4 { font-family: Fraunces, Georgia, serif; line-height: 1.15; color: var(--navy); }
.lede, .intro p, .prose-block p { max-width: 62ch; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.intro, .section-pad { padding: 3rem 0; }
.photo-frame { margin: 0; }
.photo-frame img.main-photo {
  width: 100%; border-radius: 1.2rem; object-fit: cover; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.photo-frame.landscape img.main-photo { aspect-ratio: 16 / 10; }
.photo-frame figcaption { margin: .55rem 0 0; color: var(--muted); font-size: .95rem; }
@media (min-width: 901px) {
  .split > .photo-frame,
  .content-grid > .media-panel {
    position: relative;
    min-height: 16rem;
    align-self: stretch;
  }
  .split > .photo-frame:has(figcaption) { padding-bottom: 0; }
  .split > .photo-frame picture,
  .split > .photo-frame > img.main-photo,
  .content-grid > .media-panel img {
    position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  }
  .split > .photo-frame:has(figcaption) picture,
  .split > .photo-frame:has(figcaption) > img.main-photo { bottom: 0; }
  .split > .photo-frame picture { display: block; overflow: hidden; border-radius: 1.2rem; }
  .split > .photo-frame picture img.main-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    aspect-ratio: auto; object-fit: cover; border-radius: 0; box-shadow: none;
  }
  .split > .photo-frame > img.main-photo {
    aspect-ratio: auto; object-fit: cover;
  }
  .split > .photo-frame figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
    padding: 2rem .9rem .65rem; color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.62));
    border-radius: 0 0 1.2rem 1.2rem; font-size: .92rem;
  }
  .content-grid { align-items: stretch; }
  .content-grid > .media-panel img {
    object-fit: cover; object-position: center top;
    border-radius: 1.2rem; display: block; box-shadow: var(--shadow);
  }
}
.check-list { margin: .7rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .3rem 0 .3rem 1.5rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .7rem; width: .5rem; height: .5rem;
  border-radius: 50%; background: var(--gold);
}
.stats { background: var(--navy); color: #fff; padding: 2.4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.stats article { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: .9rem; padding: 1rem; }
.stats strong { display: block; font-family: Fraunces, serif; font-size: 2.2rem; color: var(--gold); }
.stats h2 { color: #fff; font-size: 1.05rem; margin: .2rem 0; }
.stats p { margin: 0; color: #d7deea; }
.page-hero { padding: 2.6rem 0 1.2rem; background: linear-gradient(180deg, #f8eee4, var(--paper)); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1rem 0 0; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards article, .callout, .give-card, .event-card, .process-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.25rem; box-shadow: var(--shadow);
}
.cards article { border-top: 4px solid var(--gold); }
.cards article:nth-child(2n) { border-top-color: var(--coral); }
.band { background: var(--cream); padding: 2.6rem 0; }
.process { list-style: none; padding: 0; margin: 0 0 3rem; display: grid; gap: .9rem; }
.process-card { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.process .num {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--navy); color: var(--gold);
  font-family: Fraunces, serif; display: grid; place-items: center; font-weight: 700;
}
.app-form, .give-block, .content-grid { padding-bottom: 3rem; }
.content-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.4rem; padding-top: 1rem; }
.app-form {
  max-width: 46rem; margin: 0 0 3.2rem; padding-bottom: 4rem;
}
.app-intro {
  background: var(--cream); border: 1px solid var(--line); border-radius: 1rem;
  padding: 1.1rem 1.2rem; margin: 0 0 1.2rem;
}
.app-intro p { margin: 0 0 .55rem; }
.app-intro p:last-child { margin: 0; }
.app-intro-meta { font-size: .95rem; color: var(--muted); }
.app-progress {
  list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 1.3rem;
}
.app-progress li {
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .35rem .7rem;
}
.app-form > fieldset.app-card, .app-form > fieldset {
  border: 1px solid var(--line); border-radius: 1.1rem; margin: 0 0 1.15rem;
  padding: 1.15rem 1.2rem 1.3rem; background: #fff; box-shadow: 0 8px 24px rgba(27, 42, 74, .04);
}
.app-form legend {
  font-family: Fraunces, serif; color: var(--navy); padding: 0 .4rem;
  font-size: 1.2rem; display: inline-flex; align-items: center; gap: .5rem;
}
.app-num {
  width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: inline-grid; place-items: center; font-family: Fraunces, serif; font-size: .95rem; font-weight: 700;
}
.app-form label { display: block; font-weight: 600; margin: .65rem 0; }
.app-form input, .app-form select, .app-form textarea {
  width: 100%; margin-top: .35rem; padding: .8rem .9rem; border: 1px solid #cfc3b5;
  border-radius: .7rem; font: inherit; font-size: 16px; background: #fff; min-height: 48px;
}
.app-form input:focus, .app-form select:focus, .app-form textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27, 42, 74, .12);
}
.app-form textarea { min-height: 6.2rem; resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.grid-2 .span-2 { grid-column: 1 / -1; }
.app-follow {
  margin: .15rem 0 1rem; padding: .85rem 1rem; border-radius: .85rem;
  background: var(--cream); border: 1px dashed #d7c8b6;
}
.app-follow[hidden] { display: none !important; }
.choice-set {
  border: 0; padding: 0; margin: .7rem 0 1rem; background: transparent; box-shadow: none;
}
.choice-set legend { font-family: Figtree, sans-serif; font-size: 1rem; font-weight: 700; padding: 0; display: block; }
.choice-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .45rem; }
.choice {
  position: relative;
  font-weight: 700; min-height: 44px; min-width: 5.1rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .45rem 1.05rem; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); cursor: pointer;
}
.choice:has(input:checked) { background: var(--navy); color: #fff; border-color: var(--navy); }
.choice:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 3px; }
.choice input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  position: absolute; width: 1px; height: 1px; margin: 0; padding: 0; border: 0;
  overflow: hidden; clip: rect(0, 0, 0, 0);
}
.app-submit { display: grid; gap: .65rem; justify-items: start; margin-top: .4rem; }
.app-submit .btn { min-width: 16rem; }
.hint { display: block; font-weight: 500; color: var(--muted); font-size: .92rem; }
.req { color: var(--coral-text); }
.flash { text-align: center; padding: .9rem 1rem; font-weight: 800; }
.flash-success { background: #e7f6ea; color: #14532d; }
.flash-error { background: #fde8e4; color: #8a2b1d; }
.cta-band { background: var(--navy); color: #fff; padding: 2.8rem 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7deea; max-width: 46ch; }
.site-footer { background: #000; color: #d7deea; padding: 2.8rem 0 1.1rem; }
.footer-grid {
  display: grid; grid-template-columns: minmax(12rem, 1fr) 1fr 1fr;
  gap: 2rem 1.6rem; align-items: start;
}
.footer-brand {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 .4rem;
}
.footer-logo-link {
  display: flex; justify-content: center; align-items: center;
  min-height: 44px; margin: 0 0 .7rem;
}
.footer-logo {
  width: 140px; height: 120px; object-fit: contain; margin: 0 auto;
}
.footer-tagline {
  margin: 0; max-width: 22ch; color: #c5cedb; font-size: .95rem; line-height: 1.45;
}
.footer-col h2 { margin: .35rem 0 .65rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0; }
.site-footer a { color: #fff; min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer h2 { color: var(--coral-2); font-size: 1.05rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 1.8rem; padding-top: 1rem; font-size: .92rem;
}
.paypal-box { background: #fff; border-radius: .8rem; padding: .6rem; margin-top: .8rem; }
.give-grid, .event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0 0 3rem; }
.event-grid { grid-template-columns: 1fr 1fr; }
.event-card { padding: 0; overflow: hidden; }
.event-card img { width: 100%; height: 220px; object-fit: cover; }
.event-card > div { padding: 1.05rem 1.15rem 1.2rem; }
.team-intro { padding: 0 0 2.2rem; max-width: 1100px; }
.team-intro > p { max-width: 68ch; }
.team-quote {
  margin: 0 0 1.4rem; padding: 1.25rem 1.4rem 1.2rem;
  background: var(--navy); color: #fff; border-radius: 1.1rem;
  box-shadow: var(--shadow);
}
.team-quote p {
  font-family: Fraunces, Georgia, serif; font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35; margin: 0 0 .75rem; color: #fff; max-width: 46ch;
}
.team-quote cite { color: var(--gold); font-style: normal; font-weight: 700; font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; }
.team-section { padding: 0 0 2.8rem; }
.team-section h2 { margin: 0 0 1.1rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.team-grid-3 { grid-template-columns: repeat(3, 1fr); }
.team-grid-3:has(> :nth-child(4)) { grid-template-columns: repeat(2, 1fr); }
.team-grid-3 .team-card {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-top: 1.35rem;
}
.team-grid-3 .team-copy p { margin-left: auto; margin-right: auto; }
.team-card:not(:has(.team-photo)),
.team-card-nophoto {
  grid-template-columns: 1fr;
}
.team-card {
  display: grid; grid-template-columns: 7.2rem 1fr; gap: 1rem 1.1rem;
  align-items: start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
}
.team-card:nth-child(2n) { border-top-color: var(--coral); }
.team-photo { margin: 0; }
.team-photo img {
  width: 7.2rem; height: 7.2rem; object-fit: cover; border-radius: 50%;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--gold);
}
.team-copy { min-width: 0; }
.team-copy h3 { margin: .1rem 0 .45rem; font-size: 1.35rem; }
.team-copy p { margin: 0 0 .7rem; }
.team-copy p:last-child { margin: 0; }
.team-card .role {
  letter-spacing: .12em; text-transform: uppercase; font-size: .72rem;
  color: var(--coral-text); font-weight: 800; margin: 0 0 .15rem;
}
.team-featured {
  grid-template-columns: 9.5rem 1fr; border-top-color: var(--gold);
  padding: 1.4rem 1.45rem 1.5rem;
}
.team-featured .team-photo img {
  width: 9.5rem; height: 9.5rem;
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px var(--gold);
}
.team-copy q { font-style: italic; }
.map-block { padding: .4rem 0 0; }
.house-map {
  width: 100%; max-width: 100%; height: 320px; border: 0; border-radius: 1.1rem; box-shadow: var(--shadow);
}
.prose-block, .prose { padding: 1rem 0 3rem; }

@media (max-width: 1100px) {
  .team-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .split, .content-grid, .stats-grid, .cards, .cards.four, .footer-grid, .grid-2, .give-grid, .event-grid, .team-grid, .team-grid-3 {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { padding-bottom: .4rem; }
  .footer-col { text-align: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 860px) {
  :root { --header-h: 4.75rem; }
  .site-header .wrap {
    width: min(1100px, calc(100% - 2rem));
  }
  .header-inner {
    min-height: var(--header-h);
    padding: .6rem 0;
    gap: 1rem;
  }
  .brand { min-height: 0; }
  .brand img { width: 76px; height: 64px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    z-index: 5002; padding: .45rem 1rem; min-width: 4.6rem;
  }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100dvh - 100%);
    background: var(--header-bg); padding: .85rem 1.15rem calc(1.6rem + env(safe-area-inset-bottom));
    flex-direction: column; align-items: stretch; overflow: auto;
    z-index: 5001; gap: .2rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; font-size: 1.08rem; padding: .85rem .35rem; }
  .nav-cta { justify-content: center; margin-top: .55rem; }
  body.nav-open { overflow: hidden; }
  .banner { min-height: 28rem; }
  .banner-copy { padding: 3.2rem 0 3.4rem; }
  .cta-row .btn { width: 100%; }
}
@media (max-width: 640px) {
  :root { --header-h: 4.4rem; }
  .wrap { width: min(1100px, calc(100% - 1.5rem)); }
  .site-header .wrap { width: calc(100% - 1.75rem); }
  .header-inner { padding: .55rem 0; gap: .85rem; }
  .brand img { width: 70px; height: 60px; }
  .stats-grid { grid-template-columns: 1fr; }
  .house-map { height: 240px; }
  .event-card img { height: 200px; }
  .team-card, .team-featured { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .team-copy p { margin-left: auto; margin-right: auto; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  body { font-size: 1rem; }
  .app-submit .btn { width: 100%; min-width: 0; }
  .app-progress { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
@media (prefers-contrast: more) {
  .site-header { border-bottom: 2px solid #fff; }
  .site-nav a { font-weight: 700; }
  .cards article, .callout, .give-card, .event-card, .team-card { border: 2px solid var(--navy); }
  .banner-overlay { background: rgba(27,42,74,.88); }
}
.rr-captcha { margin: 1rem 0 .2rem; }
.rr-captcha-widget { min-height: 78px; }
.rr-captcha-noscript { margin-top: .6rem; }
.rr-captcha .g-recaptcha { transform-origin: left top; }
@media (max-width: 420px) {
  .rr-captcha .g-recaptcha { transform: scale(.92); }
}
