:root {
  --navy: #0A2458;
  --navy-mid: #02427A;
  --red: #BF0A30;
  --rule: #C0C0C0;
  --ink: #112A40;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #112A40;
  color: #112A40;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-wrap: pretty;
}

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

a { color: var(--navy); }
a:hover { color: var(--navy-mid); }

:focus-visible { outline: 3px solid #FFD24A; outline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: #0A2458;
  padding: 12px 20px;
  font-weight: 700;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 44, 0.35);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
}

.masthead {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
}

.masthead-logo img { width: 98px; height: auto; }

.hero-title-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-weight: 300;
  font-size: clamp(20px, 3.4vw, 43px);
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

#site-nav { flex: 1 1 auto; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  color: #fff;
  font: inherit;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  color: #fff;
  font: inherit;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: #fff;
  color: #000;
}

.nav-link[aria-current="page"] {
  background: #fff;
  color: #000;
}

.nav-caret {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
}

.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  min-width: 260px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.has-sub.is-open .nav-sub,
.has-sub:hover .nav-sub,
.has-sub:focus-within .nav-sub { display: block; }

.nav-sub a {
  display: block;
  padding: 10px 18px;
  color: #0A2458;
  text-decoration: none;
}

.nav-sub a:hover,
.nav-sub a:focus-visible {
  background: #0A2458;
  color: #fff;
}

.hero-interior {
  min-height: 640px;
  background: #0A2458 url('../images/capitol-wide-intro.jpg') center bottom / cover no-repeat;
}

.hero-interior .hero-tint { background: rgba(6, 22, 52, 0.18); }

.hero-interior .hero-inner { display: flex; flex-direction: column; }

.hero-interior .hero-title-wrap {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  max-width: 1300px;
  margin: auto auto 0;
  padding: 60px 35px 150px;
}

.hero-interior .page-title { text-align: left; }

.hero-interior + .main {
  position: relative;
  z-index: 2;
  margin-top: -120px;
}

.page-title {
  margin: 0;
  color: #fff;
  font-weight: 300;
  font-size: clamp(30px, 4.5vw, 48px);
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.prose {
  color: var(--navy);
  font-weight: 300;
  font-size: 21px;
}

.prose p { margin: 0 0 22px; }
.prose p:last-child { margin-bottom: 0; }

.prose ul {
  margin: 0 0 22px;
  padding-left: 24px;
}

.prose li { margin-bottom: 12px; }

.lead {
  color: var(--navy);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 29px);
  line-height: 1.35;
  margin: 0 0 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: start;
}

.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 100px 24px;
  margin: 78px 0 0;
  padding: 0;
  list-style: none;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 100px 18px 26px;
  border: 1px solid var(--rule);
  text-align: center;
}

.person img {
  width: 120px;
  height: 156px;
  object-fit: cover;
  margin: -178px 0 8px;
  border: 1px solid var(--navy);
  background: #fff;
}

.people-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .people-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .people { gap: 96px 20px; }
  .people-3 { grid-template-columns: 1fr; }
}

.person-name {
  margin: 0;
  color: var(--navy);
  font-weight: 400;
  font-size: 21px;
}

.hero-foundation {
  background: #0A2458 url('../images/liberty-american-flag.jpg') center center / cover no-repeat;
}

.hero-foundation .hero-tint { background: rgba(6, 22, 52, 0.42); }

.page-subtitle {
  margin: 12px 0 0;
  color: #fff;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.9vw, 24px);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-member {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  border: 1px solid var(--rule);
}

.board-member p { margin: 0; }

.contact-card {
  max-width: 420px;
  padding: 28px 24px;
  border: 1px solid var(--rule);
}

.contact-card p { margin: 0 0 6px; }

.contact-form {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.field {
  display: grid;
  gap: 6px;
  width: 100%;
}

.field label {
  color: var(--navy);
  font-size: 17px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 18px;
}

.field textarea { resize: vertical; }

.field input:focus-visible,
.field textarea:focus-visible { border-color: var(--navy-mid); }

.issues {
  display: grid;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue {
  display: grid;
  grid-template-columns: 201px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.issue p { margin: 0 0 8px; }

.issue-kicker {
  color: var(--navy-mid);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-season { color: var(--ink); font-weight: 300; font-size: 18px; }

.issue-title a {
  font-family: Arvo, Georgia, serif;
  font-size: clamp(19px, 2vw, 24px);
  text-decoration: none;
}

.issue-title a:hover,
.issue-title a:focus-visible { text-decoration: underline; }

.issue-note { color: var(--ink); font-weight: 300; font-size: 17px; }

.letters {
  margin: 0;
  padding: 0;
  list-style: none;
}

.letter + .letter {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}

.letter-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
}

.conf-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.conf-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px 24px;
  align-items: baseline;
  padding: 18px 16px;
  border-bottom: 1px solid var(--rule);
}

.conf-item:nth-child(odd) { background: #f7f8fa; }

.conf-item p { margin: 0; }

.conf-date {
  color: var(--navy-mid);
  font-size: 19px;
}

.conf-org { color: var(--navy); font-size: 20px; }

.conf-loc { color: var(--ink); font-weight: 300; font-size: 18px; }

.dues {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dues-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid var(--rule);
}

.dues-name {
  margin: 0;
  color: var(--navy);
  font-weight: 400;
  font-size: 22px;
}

.dues-note {
  margin: 0;
  color: var(--ink);
  font-weight: 300;
  font-size: 17px;
}

.dues-price {
  margin: 4px 0 8px;
  color: var(--navy-mid);
  font-family: Arvo, Georgia, serif;
  font-size: 30px;
}

.dues-card .btn { margin-top: auto; }

.press + .press {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.press-source { font-weight: 400; }

.doc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doc-list li { border-bottom: 1px solid var(--rule); }

.doc-list a {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  text-decoration: none;
}

.doc-list a:hover,
.doc-list a:focus-visible { text-decoration: underline; }

.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--rule);
}

.partners img { max-height: 96px; width: auto; object-fit: contain; }

.person-region {
  margin: 0;
  color: var(--navy-mid);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.org-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 4px 32px;
}

.org-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}

.person-role {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.person-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--navy);
  font-size: 16px;
  word-break: break-word;
}

.person-mail svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

.figure-wide { margin: 0 0 32px; }
.figure-wide img { display: block; width: 100%; max-width: 900px; height: auto; }

.alerts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.alert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: background-color 500ms linear;
}

.alert-1 { background: var(--navy); }
.alert-2 { background: var(--red); }
.alert-3 { background: var(--navy-mid); }

.alert-1:hover, .alert-3:hover { background: var(--navy-mid); }
.alert-2:hover { background: var(--navy-mid); }
.alert-3:hover { background: var(--navy); }

.alert p { margin: 0; }

.alert-kicker {
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.45;
  text-wrap: balance;
  margin-bottom: 6px;
}

.alert a {
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  text-wrap: balance;
}

.alert-1 a { font-size: 18px; white-space: nowrap; }

.alert a:hover,
.alert a:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

.main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px 120px;
}

#main {
  background: #fff;
  border-top: 4px solid #002868;
  border-bottom: 4px solid #002868;
  padding: 40px 40px;
  margin-top: 40px;
}

.block {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.block:last-child { border-bottom: 0; }

.block-heading {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 3.2vw, 42px);
  text-align: left;
}

.center .block-heading { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible { background: #800000; color: #fff; }

.letter p { font-size: 18px; }
.press p, .media p { font-size: 18px; }

.letter .media-link,
.press .media-link,
.media .media-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 4px 0 0;
  padding: 0 22px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.letter .media-link:hover,
.letter .media-link:focus-visible,
.press .media-link:hover,
.press .media-link:focus-visible,
.media .media-link:hover,
.media .media-link:focus-visible { background: #800000; color: #fff; }

.conf-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 44px 32px;
  background: var(--navy);
  text-align: center;
}

.conf-banner-title {
  margin: 0;
  max-width: 32ch;
  color: #fff;
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  text-wrap: balance;
}

.conference {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 36px;
  align-items: start;
  margin-top: 28px;
}

.conference img { width: 100%; max-width: 620px; }

.conference h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 29px);
}

.conference p {
  margin: 0;
  color: var(--navy);
  font-weight: 300;
  font-size: 19px;
}

.event-details {
  margin-top: 24px;
  color: var(--navy);
  font-weight: 300;
  font-size: 17px;
}

.event-details h3 {
  margin: 22px 0 8px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-details h3:first-child { margin-top: 0; }

.event-details p { margin: 0 0 16px; }

.event-schedule {
  margin: 0 0 16px;
  padding-left: 24px;
  list-style: disc;
}

.event-schedule li { margin-bottom: 8px; }

.center { text-align: center; }

.media {
  display: grid;
  grid-template-columns: 201px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.media img { width: 201px; }

.eyebrow {
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
}

.media h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 300;
  font-size: 19px;
}

.media-link {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--navy);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 29px);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.media-link:hover,
.media-link:focus-visible { border-bottom-color: var(--navy); }

.note {
  margin: 0;
  color: var(--ink);
  font-weight: 300;
  font-size: 19px;
}

.note a { color: var(--navy); }

.site-footer {
  position: relative;
  background: url('../images/narco-bk-img.png') center bottom / cover repeat;
  color: #fff;
}

.footer-tint {
  position: absolute;
  inset: 0;
  background: rgba(8, 42, 92, 0.82);
}

.footer-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 32px;
}

.footer-logos {
  position: relative;
  z-index: 2;
  top: -104px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  margin: 0 0 -76px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  text-align: center;
}

.footer-cols img { margin: 0 auto; }

.footer-cols p {
  margin: 0;
  font-family: Arvo, Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  font-family: Arvo, Georgia, serif;
  font-size: 17px;
  line-height: 1.9;
  text-align: center;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover,
.site-footer a:focus-visible { color: #fff; text-decoration: underline; }

.footer-bar {
  position: relative;
  background: var(--navy-mid);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-family: Arvo, Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1250px) {
  .masthead { flex-wrap: wrap; align-items: flex-start; }
  #site-nav { flex: 0 0 100%; }
  .nav-toggle { display: inline-flex; }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 8px 0;
  }
  .nav-list.is-open { display: flex; }
  .has-sub:hover .nav-sub { display: none; }
  .has-sub.is-open .nav-sub { display: block; }
  .nav-link { width: 100%; justify-content: space-between; }
  .nav-sub {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (max-width: 1024px) {
  .alerts { grid-template-columns: 1fr; }
  .conference { grid-template-columns: 1fr; }
  .conference img { margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero { min-height: 460px; }
  .hero-interior { min-height: 420px; }
  .hero-interior .hero-title-wrap { padding: 40px 20px 90px; }
  .hero-interior + .main { margin-top: -70px; }
  .hero-title { white-space: normal; font-size: clamp(24px, 6vw, 34px); }
  .hero-title-wrap { padding: 40px 16px 60px; }
  #main { padding: 28px 18px; }
  .media { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .prose { font-size: 19px; }
  .conf-item { grid-template-columns: 1fr; padding: 20px 16px; }
  .issue { grid-template-columns: 1fr; justify-items: center; gap: 20px; text-align: center; }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
  .footer-logos,
  .footer-cols { display: contents; }
  .footer-logos a:first-child {
    order: 1;
    position: relative;
    z-index: 2;
    top: -80px;
    margin-bottom: -56px;
  }
  .footer-cols > div:first-child { order: 2; }
  .footer-logos a:last-child { order: 3; margin: 36px 0 20px; }
  .footer-cols > div:last-child { order: 4; }
  .footer-links { order: 5; grid-template-columns: 1fr; width: 100%; margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
