
:root {
  --navy: #082b67;
  --navy-deep: #031a3c;
  --blue: #087b9b;
  --teal: #049f9d;
  --teal-bright: #18b9b6;
  --ink: #183a73;
  --muted: #54627a;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --line: #d7dee7;
  --shadow: 0 16px 40px rgba(13, 42, 81, .12);
  --radius: 18px;
  --content: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.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; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 1000; background: #fff; color: var(--navy); padding: .75rem 1rem; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }
.header-shell, .utility-shell, .footer-shell, .content-wrap { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }
.site-header { background: #fff; position: relative; z-index: 20; }
.header-shell { min-height: 164px; display: flex; align-items: center; justify-content: flex-end; position: relative; }
.brand { position: absolute; left: -14px; top: 8px; width: 226px; z-index: 6; }
.brand img { width: 100%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 7px 13px rgba(4, 35, 79, .08)); }
.primary-nav { display: flex; gap: clamp(24px, 3.7vw, 58px); align-items: center; padding-left: 210px; }
.primary-nav a { position: relative; font-size: clamp(1rem, 1.35vw, 1.18rem); font-weight: 700; white-space: nowrap; padding: 10px 0 12px; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--teal); transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.utility-bar { background: linear-gradient(90deg, #eef3f7 0%, #f8fbfd 100%); border-top: 1px solid #edf1f5; border-bottom: 1px solid #d8e0e9; }
.utility-shell { min-height: 82px; display: flex; align-items: center; justify-content: flex-end; gap: 40px; padding-left: 210px; }
.search { width: min(360px, 34vw); height: 46px; background: #fff; border: 1px solid #ccd5df; border-radius: 999px; display: flex; align-items: center; overflow: hidden; box-shadow: inset 0 1px 2px rgba(20,40,70,.04); }
.search input { border: 0; outline: 0; width: 100%; padding: 0 18px; color: var(--ink); background: transparent; }
.search button { width: 48px; height: 100%; border: 0; background: transparent; color: var(--navy); display: grid; place-items: center; cursor: pointer; }
.search svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.utility-actions { display: flex; gap: 14px; }
.cta { min-width: 132px; height: 46px; padding: 0 18px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; font-weight: 700; box-shadow: 0 7px 16px rgba(4,35,79,.14); transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(4,35,79,.2); filter: brightness(1.05); }
.cta-navy { background: linear-gradient(135deg, #052c69, #003771); }
.cta-blue { background: linear-gradient(135deg, #006b88, #087f9c); }
.cta-teal { background: linear-gradient(135deg, #047e7f, #0aa29e); }
.menu-toggle { display: none; }

.hero-section {
  width: 100%;
  margin: 0;
  background: #051d47;
}
.hero-section img {
  width: 100%;
  height: auto;
  display: block;
}

.committees-section {
  padding: 58px 0 108px;
  background: linear-gradient(#ffffff, #fbfcfe);
}
.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}
.top-rule {
  width: 96px;
  height: 4px;
  background: var(--teal-bright);
  margin: 0 auto 18px;
  border-radius: 999px;
}
.section-heading h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.02;
}
.section-heading p {
  margin: 0;
  color: #4b5f7f;
  font-size: 1.05rem;
  line-height: 1.8;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.committee-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.committee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(13, 42, 81, .16);
}
.committee-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}
.card-copy {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-kicker {
  color: var(--teal-bright);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.card-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.06;
}
.card-copy p {
  margin: 0;
  color: #425978;
  font-size: .98rem;
  line-height: 1.58;
}
.card-action {
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  border-top: 4px solid var(--teal);
  color: #fff;
  background:
    linear-gradient(rgba(2,18,43,.86), rgba(2,18,43,.94)),
    radial-gradient(circle at 20% 30%, rgba(31,85,162,.35), transparent 34%),
    radial-gradient(circle at 72% 56%, rgba(36,103,180,.30), transparent 26%),
    radial-gradient(circle at 45% 76%, rgba(72,155,216,.16), transparent 22%),
    linear-gradient(135deg, #001633 0%, #032553 42%, #001b46 100%);
  background-size: cover;
  background-position: center;
}
.footer-shell { padding: 18px 0 24px; text-align: center; }
.footer-icons { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 10px; }
.footer-icons > span { width: 1px; height: 48px; background: rgba(255,255,255,.62); }
.footer-icons a { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; transition: transform .2s ease, background .2s ease; }
.footer-icons a:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); }
.footer-icons svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-url { display: inline-block; color: var(--teal-bright); font-size: 1.25rem; margin: 2px 0 8px; }
.site-footer p { margin: 3px 0; font-size: .88rem; color: rgba(255,255,255,.94); }

@media (max-width: 1100px) {
  .header-shell { min-height: 142px; }
  .brand { width: 202px; top: 8px; left: -8px; }
  .primary-nav { gap: 24px; padding-left: 175px; }
  .primary-nav a { font-size: .98rem; }
  .utility-shell { padding-left: 175px; gap: 24px; }
  .cta { min-width: 118px; }
  .committee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .header-shell { min-height: 110px; justify-content: space-between; }
  .brand { position: relative; left: 0; top: 0; width: 112px; margin: 8px 0; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; border: 0; background: none; padding: 12px; }
  .menu-toggle span:not(.sr-only) { width: 28px; height: 2px; background: var(--navy); }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; padding: 16px 20px 22px; background: #fff; box-shadow: 0 14px 24px rgba(10,30,60,.13); flex-direction: column; gap: 4px; align-items: stretch; display: none; }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 8px; }
  .utility-shell { padding-left: 0; flex-wrap: wrap; gap: 12px; padding-top: 14px; padding-bottom: 14px; }
  .search { width: 100%; order: 2; }
  .utility-actions { width: 100%; justify-content: flex-end; }
  .committee-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header-shell, .utility-shell, .footer-shell, .content-wrap { width: min(100% - 24px, var(--content)); }
  .utility-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cta { min-width: 0; padding: 0 8px; font-size: .86rem; }
  .committees-section { padding-top: 38px; padding-bottom: 84px; }
  .committee-card img { height: 220px; }
  .footer-icons { gap: 8px; flex-wrap: wrap; }
  .footer-icons > span { display: none; }
  .footer-icons a { width: 40px; height: 40px; }
  .site-footer p { font-size: .76rem; }
}
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(20,185,181,.65); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }


/* Committee details page */
.committee-details-section {
  padding: 58px 0 110px;
  background: linear-gradient(#ffffff, #fbfcfe);
}
.committee-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.committee-details-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.committee-details-table th,
.committee-details-table td {
  padding: 24px 26px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e1e7ee;
}
.committee-details-table th {
  color: #fff;
  background: linear-gradient(135deg, #062b68, #087a92);
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.committee-details-table th:first-child { width: 30%; }
.committee-details-table th:nth-child(2) { width: 50%; }
.committee-details-table th:last-child { width: 20%; text-align: center; }
.committee-details-table tbody tr:last-child td { border-bottom: 0; }
.committee-details-table tbody tr:nth-child(even) { background: #f8fbfd; }
.committee-details-table td {
  color: #425978;
  line-height: 1.7;
}
.committee-details-table td strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
}
.committee-details-table td:last-child { text-align: center; }
.table-cta {
  min-width: 112px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #047e7f, #0aa29e);
  box-shadow: 0 8px 17px rgba(4,35,79,.15);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.table-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(4,35,79,.2);
  filter: brightness(1.05);
}
@media (max-width: 760px) {
  .committee-details-table,
  .committee-details-table thead,
  .committee-details-table tbody,
  .committee-details-table tr,
  .committee-details-table th,
  .committee-details-table td {
    display: block;
    width: 100%;
  }
  .committee-details-table thead { display: none; }
  .committee-details-table tr {
    padding: 20px;
    border-bottom: 1px solid #dbe2ea;
  }
  .committee-details-table tr:last-child { border-bottom: 0; }
  .committee-details-table td {
    padding: 10px 0;
    border: 0;
    text-align: left !important;
  }
  .committee-details-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--teal);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
}


/* Shared Committees hero text treatment */
.committee-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}
.committee-hero img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}
.committee-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(1, 13, 41, .52) 0%, rgba(1, 16, 47, .30) 36%, rgba(1, 16, 47, .06) 62%, transparent 100%);
}
.committee-hero-copy {
  width: min(48%, 720px);
  padding-left: clamp(48px, 6vw, 118px);
  padding-right: 28px;
  color: #fff;
}
.committee-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 5.6vw, 5.45rem);
  font-weight: 500;
  line-height: .98;
}
.committee-hero-rule {
  width: 94px;
  height: 4px;
  margin: 16px 0 20px;
  border-radius: 999px;
  background: var(--teal-bright);
}
.committee-hero-copy p {
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.98);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.58;
}
.committee-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 10px 24px;
  border-radius: 9px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #078d99, #18b9b6);
  box-shadow: 0 12px 28px rgba(0, 16, 52, .25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.committee-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 16, 52, .32);
  filter: brightness(1.05);
}
.committee-contact-box {
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fbfe, #eef7fb);
  box-shadow: 0 12px 28px rgba(13, 42, 81, .08);
  text-align: center;
}
.committee-contact-box p {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 600;
}
.committee-contact-box a {
  color: var(--teal);
  font-weight: 800;
}
@media (max-width: 900px) {
  .committee-hero {
    min-height: 500px;
  }
  .committee-hero img {
    height: 500px;
  }
  .committee-hero-overlay {
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(1, 13, 41, .08) 0%, rgba(1, 13, 41, .80) 72%, rgba(1, 13, 41, .94) 100%);
  }
  .committee-hero-copy {
    width: 100%;
    padding: 34px 24px 38px;
  }
  .committee-hero-copy p {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.55;
  }
}
@media (max-width: 600px) {
  .committee-hero-copy h1 {
    font-size: 3.55rem;
  }
  .committee-hero-rule {
    margin: 15px 0 18px;
  }
  .committee-hero-cta {
    margin-top: 20px;
    min-height: 48px;
  }
}
