:root {
  --ink: #0a3142;
  --ink-2: #174e67;
  --aqua: #83d0e2;
  --aqua-soft: #dff5fa;
  --coral: #ee6076;
  --ua-red: #ed1c18;
  --paper: #f7fbfc;
  --white: #ffffff;
  --muted: #5d6b73;
  --line: #d7e7ec;
  --shadow: 0 24px 60px rgba(10, 49, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.access-font-large {
  font-size: 112.5%;
}

html.access-font-larger {
  font-size: 125%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.accessibility-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.accessibility-bar span {
  font-size: 0.84rem;
  font-weight: 900;
}

.accessibility-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.accessibility-controls button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}

.accessibility-controls button:hover,
.accessibility-controls button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--aqua);
}

.accessibility-controls button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 51px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 252, 0.92);
  border-bottom: 1px solid rgba(10, 49, 66, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

nav a:hover {
  background: var(--aqua-soft);
}

nav a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 88px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 6vw, 88px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 85% 18%, rgba(131, 208, 226, 0.34), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #edf8fb 55%, #f7fbfc 100%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #285468;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(10, 49, 66, 0.22);
}

.button.primary:hover {
  background: var(--ink-2);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  justify-self: center;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 88px);
  background:
    radial-gradient(circle at 85% 18%, rgba(131, 208, 226, 0.34), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #edf8fb 60%, #f7fbfc 100%);
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #285468;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.page-hero img {
  width: min(260px, 70vw);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.identity-strip {
  display: grid;
  grid-template-columns: 240px minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: 26px clamp(18px, 6vw, 88px);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.identity-strip img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.section {
  padding: clamp(60px, 9vw, 116px) clamp(18px, 6vw, 88px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 6vw, 78px);
  background: var(--white);
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-stack p,
.principles-grid p,
.audience-panel p,
.contact p {
  margin: 0;
  color: #31596b;
  font-size: 1.05rem;
}

.activity-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 49, 66, 0.96), rgba(23, 78, 103, 0.96)),
    linear-gradient(90deg, var(--ink), var(--ink-2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #31596b;
  font-size: 1.05rem;
}

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

.activity-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.activity-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--aqua);
  font-size: 0.9rem;
  font-weight: 900;
}

.activity-grid p {
  color: #d8edf2;
}

.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #eef8fb;
}

.audience-panel {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(10, 49, 66, 0.08);
}

.audience-panel.accent {
  color: var(--white);
  background: var(--ink);
}

.audience-panel.accent p:not(.eyebrow) {
  color: #dff5fa;
}

.principles {
  background: var(--white);
}

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

.principles-grid p {
  padding: 24px;
  border-left: 5px solid var(--coral);
  background: var(--paper);
}

.gallery-section {
  background: #f2fafc;
}

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

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: #31596b;
  background: var(--white);
}

.board-section {
  background: var(--white);
}

.page-note {
  max-width: 680px;
}

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

.member-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(10, 49, 66, 0.07);
}

.member-photo {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--aqua-soft);
}

.member-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  font-size: 1.1rem;
}

.member-card h3 {
  font-size: 1.35rem;
}

.member-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.member-card dl div {
  display: grid;
  gap: 2px;
}

.member-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-card dd {
  margin: 0;
  color: #31596b;
}

.member-card a {
  color: var(--ink-2);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.gallery-item {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 28px rgba(10, 49, 66, 0.07);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  object-fit: cover;
  background: #e9f2f5;
}

.gallery-item span {
  min-height: 26px;
  font-weight: 900;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #102a36 70%);
}

.contact p:not(.eyebrow) {
  color: #dff5fa;
}

footer {
  padding: 20px clamp(18px, 6vw, 88px);
  color: #46616c;
  background: var(--white);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

html.access-contrast body {
  color: #ffffff;
  background: #000000;
}

html.access-contrast .accessibility-bar,
html.access-contrast .site-header,
html.access-contrast .hero,
html.access-contrast .page-hero,
html.access-contrast .identity-strip,
html.access-contrast .two-column,
html.access-contrast .audience,
html.access-contrast .principles,
html.access-contrast .gallery-section,
html.access-contrast footer,
html.access-contrast .audience-panel,
html.access-contrast .member-card,
html.access-contrast .gallery-item,
html.access-contrast .gallery-status,
html.access-contrast .principles-grid p {
  color: #ffffff;
  background: #000000;
  border-color: #ffffff;
  box-shadow: none;
}

html.access-contrast p,
html.access-contrast .brand small,
html.access-contrast .content-stack p,
html.access-contrast .principles-grid p,
html.access-contrast .audience-panel p,
html.access-contrast .contact p,
html.access-contrast .section-heading > p:not(.eyebrow),
html.access-contrast .member-card dd,
html.access-contrast footer {
  color: #ffffff;
}

html.access-contrast nav a,
html.access-contrast .member-card a {
  color: #ffff00;
}

html.access-contrast .button.primary,
html.access-contrast .button.secondary,
html.access-contrast nav a[aria-current="page"] {
  color: #000000;
  background: #ffff00;
  border-color: #ffff00;
}

html.access-contrast .eyebrow,
html.access-contrast .activity-grid span {
  color: #ffff00;
}

html.access-invert {
  filter: invert(1) hue-rotate(180deg);
}

html.access-invert img,
html.access-invert video,
html.access-invert iframe,
html.access-invert .member-photo,
html.access-invert .hero-visual {
  filter: invert(1) hue-rotate(180deg);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(4, 20, 28, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  width: min(920px, 94vw);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .accessibility-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    top: 95px;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .page-hero,
  .two-column,
  .audience,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .identity-strip,
  .gallery {
    grid-template-columns: 1fr;
  }

  .identity-strip img {
    justify-self: center;
    max-width: 560px;
  }

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

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

@media (max-width: 620px) {
  .accessibility-bar {
    position: static;
  }

  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .hero-actions,
  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .page-hero img {
    justify-self: start;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 230px;
  }
}
