:root {
  --ink: #102b2f;
  --ink-soft: #486166;
  --navy: #052b33;
  --teal: #0b6568;
  --teal-dark: #074e52;
  --mint: #dff2ec;
  --sky: #eaf7f8;
  --cream: #f8f6ef;
  --gold: #e3ae4b;
  --white: #fff;
  --line: #d5e2df;
  --danger: #9e342a;
  --success: #166346;
  --shadow: 0 24px 70px rgba(5, 43, 51, .13);
  --radius: 22px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--navy); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
h1, h2, h3 { margin: 0 0 .6em; color: var(--navy); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.55rem, 6vw, 5.3rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin: 0 0 1.15rem; }
ul, ol { padding-left: 1.25rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-sm { padding: clamp(45px, 6vw, 72px) 0; }
.section-cream { background: var(--cream); }
.section-sky { background: var(--sky); }
.section-navy { background: var(--navy); color: #d9ecec; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-navy .eyebrow { color: #88d8d1; }
.lead { max-width: 720px; color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.7; }
.section-navy .lead { color: #c8dddd; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -100px; z-index: 9999; padding: 12px 18px; color: var(--white); background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 18px; }

.utility-bar { color: #d5e9e9; background: var(--navy); font-size: .78rem; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner p { margin: 0; }
.utility-inner a { color: #d5e9e9; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(5,43,51,.1); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; }
.brand img { width: 58px; aspect-ratio: 1; object-fit: contain; border-radius: 50%; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-family: Georgia, serif; font-size: 1.06rem; }
.brand small { margin-top: 5px; color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a { padding: 10px 8px; color: var(--ink); border-radius: 8px; font-size: .82rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--teal); background: var(--sky); }
.nav-toggle { display: none; width: 46px; height: 46px; align-content: center; justify-items: center; gap: 5px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.nav-toggle span:not(.sr-only) { width: 22px; height: 2px; background: var(--navy); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; color: var(--white) !important; background: var(--teal); border: 2px solid var(--teal); border-radius: 999px; font-weight: 800; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { background: var(--teal-dark); transform: translateY(-2px); }
.button-secondary { color: var(--navy) !important; background: transparent; border-color: var(--navy); }
.button-secondary:hover { color: var(--white) !important; background: var(--navy); }
.button-light { color: var(--navy) !important; background: var(--white); border-color: var(--white); }
.button-small { min-height: 40px; padding: 9px 15px !important; }
.button-danger { background: var(--danger); border-color: var(--danger); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero { position: relative; min-height: min(770px, calc(100svh - 122px)); display: grid; align-items: end; isolation: isolate; background: var(--navy); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,43,51,.98) 0%, rgba(5,43,51,.86) 43%, rgba(5,43,51,.15) 76%), linear-gradient(0deg, rgba(5,43,51,.62), transparent 50%); }
.hero-media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { max-width: 780px; padding-block: clamp(90px, 12vw, 150px); color: var(--white); }
.hero h1 { color: var(--white); }
.hero .lead { max-width: 630px; color: #d7e8e7; }
.hero .eyebrow { color: #9de3da; }
.hero .microcopy { margin-top: 18px; color: #bfd4d3; font-size: .85rem; }

.trust-strip { position: relative; z-index: 2; margin-top: -1px; background: var(--white); box-shadow: 0 -12px 40px rgba(5,43,51,.12); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.15rem; }
.trust-item span { color: var(--ink-soft); font-size: .86rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); align-items: center; gap: clamp(42px, 8vw, 105px); }
.split-reverse .split-media { order: -1; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media.landscape img { aspect-ratio: 5/4; }
.image-note { position: absolute; left: -28px; bottom: 26px; max-width: 245px; padding: 18px 20px; color: var(--white); background: var(--navy); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.image-note strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 1.25rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.card { min-width: 0; padding: clamp(24px, 3vw, 34px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(5,43,51,.06); }
.card-link { position: relative; display: flex; min-height: 330px; flex-direction: column; justify-content: flex-end; overflow: hidden; color: var(--white); border: 0; }
.card-link::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(0deg, rgba(5,43,51,.96), rgba(5,43,51,.05) 85%); }
.card-link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card-link:hover img { transform: scale(1.035); }
.card-link > div { position: relative; z-index: 1; }
.card-link h3 { color: var(--white); }
.card-link a { color: #a7e9e1; font-weight: 800; }
.icon-mark { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 28px; color: var(--teal); background: var(--mint); border-radius: 50%; font-size: 1.4rem; font-weight: 900; }
.card .meta { color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.card h3 a { color: inherit; text-decoration: none; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 45px; background: rgba(255,255,255,.15); }
.stat { padding: 38px; background: var(--navy); }
.stat strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); }
.stat span { color: #d4e5e4; }

.leadership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 45px; }
.person-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.person-card img { width: 100%; aspect-ratio: 4/4.5; object-fit: cover; object-position: top; background: var(--sky); }
.person-card div { padding: 20px; }
.person-card h3 { margin-bottom: 5px; font-size: 1.18rem; }
.person-card p { margin: 0; color: var(--teal); font-size: .83rem; font-weight: 800; }

.page-hero { position: relative; padding: clamp(80px, 11vw, 140px) 0; color: var(--white); background: var(--navy); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: -260px; border: 1px solid rgba(227,174,75,.5); border-radius: 50%; box-shadow: 0 0 0 85px rgba(11,101,104,.15), 0 0 0 170px rgba(11,101,104,.08); }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 950px; color: var(--white); }
.page-hero .lead { color: #d5e7e6; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: #b8d0cf; font-size: .82rem; }
.breadcrumbs a { color: #b8d0cf; }

.check-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 35px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; color: var(--teal-dark); background: var(--mint); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.resource-list { display: grid; gap: 16px; margin-top: 35px; }
.resource-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; }
.resource-item:hover { border-color: var(--teal); box-shadow: 0 12px 30px rgba(5,43,51,.08); }
.resource-item strong { display: block; }
.resource-item span { color: var(--ink-soft); font-size: .9rem; }
.resource-item b { color: var(--teal); }

.alert { margin: 28px 0; padding: 22px 24px; border-left: 5px solid var(--gold); background: #fff7df; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.alert-danger { border-color: var(--danger); background: #fff0ee; }
.alert-success { border-color: var(--success); background: #eaf8f1; }
.alert h2, .alert h3 { margin-bottom: 8px; font-size: 1.25rem; }
.alert p:last-child { margin-bottom: 0; }
.medical-note { padding: 20px; color: var(--ink-soft); background: var(--sky); border-radius: var(--radius-sm); font-size: .9rem; }
.medical-note-spaced { margin-top: 35px; }

.event-list { display: grid; gap: 20px; margin-top: 38px; }
.event-card { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 26px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.date-block { display: grid; place-items: center; min-height: 98px; color: var(--white); background: var(--teal); border-radius: var(--radius-sm); text-align: center; }
.date-block strong { font-family: Georgia, serif; font-size: 2.1rem; line-height: 1; }
.date-block span { font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.event-card h2, .event-card h3 { margin-bottom: 8px; font-size: 1.45rem; }
.event-card p { margin: 0; color: var(--ink-soft); }
.empty-state { padding: 38px; color: var(--ink-soft); background: var(--sky); border: 1px dashed #9ebebb; border-radius: var(--radius); text-align: center; }

.form-shell { display: grid; grid-template-columns: .7fr 1.3fr; gap: 42px; align-items: start; }
.form-aside { position: sticky; top: 145px; padding: 32px; color: #d6e8e7; background: var(--navy); border-radius: var(--radius); }
.form-aside h2 { color: var(--white); font-size: 2rem; }
.form-card { padding: clamp(24px, 5vw, 50px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field { display: grid; align-content: start; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label, .field-label { color: var(--navy); font-size: .86rem; font-weight: 800; }
.field label span { color: var(--danger); }
.field input, .field select, .field textarea { min-width: 0; width: 100%; min-height: 51px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid #9cb5b3; border-radius: 9px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11,101,104,.11); outline: 0; }
.field small { color: var(--ink-soft); }
.checkbox { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.checkbox input { width: 20px; height: 20px; margin-top: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.errors { margin-bottom: 25px; padding: 20px 24px; color: #651d17; background: #fff0ee; border: 1px solid #ecc0bb; border-radius: var(--radius-sm); }
.errors h2 { font-size: 1.18rem; }
.errors ul { margin-bottom: 0; }

.gallery-grid { columns: 3 280px; column-gap: 18px; margin-top: 42px; }
.gallery-item { position: relative; break-inside: avoid; margin-bottom: 18px; overflow: hidden; background: var(--sky); border-radius: var(--radius-sm); }
.gallery-item img { width: 100%; }
.gallery-item figcaption { padding: 14px 16px; color: var(--ink-soft); font-size: .85rem; }

.filters { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; margin: 30px 0; padding: 22px; background: var(--sky); border-radius: var(--radius-sm); }
.filters input, .filters select { min-width: 0; min-height: 48px; padding: 10px 14px; border: 1px solid #9cb5b3; border-radius: 8px; }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.member-card { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.member-card h2 { margin-bottom: 6px; font-size: 1.25rem; }
.member-card p { margin: 0; color: var(--ink-soft); }
.member-card .location { margin-top: 13px; color: var(--teal); font-size: .85rem; font-weight: 800; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 35px; padding: clamp(34px, 6vw, 70px); color: #d9e8e7; background: var(--navy); border-radius: var(--radius); overflow: hidden; }
.cta-panel h2 { max-width: 730px; color: var(--white); }
.cta-panel p { max-width: 680px; margin: 0; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--navy); background: transparent; border: 0; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; text-align: left; cursor: pointer; }
.faq-panel { padding: 0 0 22px; }

.site-footer { padding-top: 70px; color: #c8d9d8; background: #031f25; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 50px; }
.brand-footer { margin-bottom: 20px; color: var(--white); }
.brand-footer small { color: #8cd5cc; }
.footer-grid h2 { color: var(--white); font-family: inherit; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-grid a { color: #d7e5e4; }
.footer-note { color: #9ab1af; font-size: .8rem; }
.footer-bottom { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { display: flex; gap: 20px; }
.toast { position: fixed; z-index: 1200; right: 22px; bottom: 22px; max-width: min(430px, calc(100% - 44px)); padding: 17px 20px; color: var(--white); background: var(--navy); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }

.login-page { min-height: 100svh; display: grid; place-items: center; padding: 40px 20px; background: var(--navy); }
.login-panel { width: min(100%, 470px); padding: clamp(28px, 5vw, 48px); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.login-panel .brand { margin-bottom: 35px; }

@media (max-width: 1080px) {
  .nav-toggle { display: grid; }
  .site-nav { position: fixed; inset: 122px 0 0; display: none; align-content: start; align-items: stretch; padding: 28px 20px 50px; background: var(--white); overflow-y: auto; }
  .site-nav.is-open { display: grid; }
  .site-nav > a { padding: 14px; font-size: 1rem; }
  .site-nav .button { margin-top: 10px; }
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: flex-end; }
  .nav-wrap { min-height: 80px; }
  .site-nav { inset-block-start: 114px; }
  .hero { min-height: 680px; }
  .hero::after { background: linear-gradient(0deg, rgba(5,43,51,.98) 7%, rgba(5,43,51,.68) 82%), linear-gradient(90deg, rgba(5,43,51,.6), rgba(5,43,51,.2)); }
  .hero-media { object-position: 63% center; }
  .hero-content { padding-block: 90px 70px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .split-media, .split-reverse .split-media { order: -1; }
  .split-media img { max-height: 610px; }
  .cards, .directory-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 90px 1fr; }
  .event-card > .button { grid-column: 1 / -1; }
  .form-shell { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .brand img { width: 50px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .62rem; }
  .utility-inner { min-height: 30px; }
  .site-nav { inset-block-start: 110px; }
  .hero { min-height: 650px; }
  .trust-item { padding: 20px 15px; }
  .trust-item strong { font-size: 1rem; }
  .image-note { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .leadership-grid { grid-template-columns: 1fr; }
  .person-card { display: grid; grid-template-columns: 112px 1fr; align-items: center; }
  .person-card img { height: 100%; aspect-ratio: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .event-card { grid-template-columns: 1fr; }
  .date-block { width: 88px; min-height: 82px; }
  .filters { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { grid-column: auto !important; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }
  .actions .button { width: 100%; }
}

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

@media print {
  .site-header, .site-footer, .button, .nav-toggle { display: none !important; }
  body { color: #000; }
  a { color: #000; }
}
