:root {
  --navy: #0b2239;
  --navy-2: #123c69;
  --navy-3: #1b4d80;
  --gold: #d7b56d;
  --gold-soft: #f2ead9;
  --cream: #f7f4ef;
  --ink: #1d2733;
  --muted: #617284;
  --line: rgba(11, 34, 57, 0.12);
  --shadow: 0 18px 50px rgba(11, 34, 57, 0.12);
  --radius: 22px;
  --radius-sm: 16px;
  --wrap: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: clamp(15px, 0.25vw + 14px, 16px);
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.98rem, 0.18vw + 0.94rem, 1rem);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
p, li, input, textarea, select, button { font-size: inherit; }

.visually-hidden,
.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;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

/* Utility bar */
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: clamp(0.9rem, 0.2vw + 0.86rem, 0.95rem);
}
.utility-bar .wrap {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.utility-links,
.utility-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.utility-links a,
.utility-social a {
  opacity: .92;
}
.utility-links a:hover,
.utility-social a:hover {
  opacity: 1;
  color: white;
}
.utility-social .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.utility-social .social-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
}

/* Header / nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11, 34, 57, .08);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(11,34,57,.15);
}
.brand-text { min-width: 0; }
.brand-kicker {
  color: var(--navy-3);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.05;
}
.brand-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(1.08rem, 0.62vw + 0.96rem, 1.4rem);
  line-height: 1.2;
  color: var(--navy);
  margin-top: 4px;
}
.brand-subtitle {
  color: var(--muted);
  font-size: clamp(0.9rem, 0.2vw + 0.86rem, 0.95rem);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
}
.menu-toggle:hover { background: rgba(11, 34, 57, .06); }
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.nav-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.main-nav {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--navy);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(0.88rem, 0.22vw + 0.83rem, 0.98rem);
  line-height: 1.15;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link[aria-current="page"],
.nav-button:hover,
.nav-item:hover > .nav-button {
  background: rgba(18, 60, 105, .08);
}
.nav-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-button::after {
  content: "▾";
  font-size: .8rem;
  color: var(--navy-3);
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 290px;
  background: white;
  border: 1px solid rgba(11,34,57,.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 30;
}
.dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--ink);
  font-size: clamp(0.92rem, 0.18vw + 0.88rem, 0.98rem);
  line-height: 1.25;
}
.dropdown a:hover,
.dropdown a.active {
  background: var(--cream);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-button,
.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: clamp(0.9rem, 0.2vw + 0.86rem, 0.98rem);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.search-button {
  border: 1px solid rgba(11,34,57,.12);
  background: white;
  color: var(--navy);
  cursor: pointer;
}
.search-button:hover,
.button:hover,
.button-outline:hover {
  transform: translateY(-1px);
}
.button {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: white;
  box-shadow: 0 10px 25px rgba(18, 60, 105, .2);
}
.button-outline {
  border: 1px solid rgba(11,34,57,.14);
  color: var(--navy);
  background: white;
}

/* Desktop header final layout */
@media (min-width: 921px) {
  .header > .wrap.header-row {
    width: calc(100vw - 20px);
    max-width: none;
    margin: 0;
    padding: 12px 10px 10px;
    grid-template-columns: minmax(295px, auto) minmax(0, 1fr);
    align-items: start;
    gap: 18px;
  }

  .brand {
    justify-self: start;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding-top: 2px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .brand-text {
    min-height: 58px;
    display: grid;
    align-content: center;
    gap: 2px;
  }

  .brand-kicker {
    font-size: 0.72rem;
    line-height: 1.05;
    letter-spacing: 0.18em;
  }

  .brand-title {
    font-size: 1.95rem;
    line-height: 1.02;
    margin: 0;
  }

  .brand-subtitle {
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .nav-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      ". actions"
      "nav nav";
    align-items: start;
    row-gap: 10px;
    column-gap: 18px;
  }

  .header-actions {
    grid-area: actions;
    justify-self: end;
    align-self: start;
    gap: 12px;
    margin: 0;
    padding-top: 2px;
  }

  .header-actions .search-button,
  .header-actions .button {
    min-height: 52px;
    padding: 0 22px;
    font-size: 1.45rem;
    line-height: 1;
  }

  .main-nav {
    grid-area: nav;
    justify-self: center;
    align-self: center;
    width: max-content;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: visible;
  }

  .nav-item {
    display: block;
    flex: 0 0 auto;
  }

  .nav-link,
  .nav-button {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 1.08rem;
    line-height: 1;
    border-radius: 999px;
    white-space: nowrap;
  }

  .nav-button::after {
    font-size: 0.72rem;
    margin-left: 4px;
  }

  .nav-item[data-nav-parent] {
    position: relative;
  }

  .nav-item[data-nav-parent]::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
  }

  .nav-item[data-nav-parent]:hover > .dropdown,
  .nav-item[data-nav-parent]:focus-within > .dropdown,
  .nav-item[data-nav-parent].is-open > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (min-width: 921px) and (max-width: 1360px) {
  .header > .wrap.header-row {
    grid-template-columns: minmax(270px, auto) minmax(0, 1fr);
    gap: 14px;
  }
  .brand-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .brand-text { min-height: 54px; }
  .brand-kicker { font-size: 0.66rem; }
  .brand-title { font-size: 1.7rem; }
  .brand-subtitle { font-size: 0.98rem; }
  .header-actions .search-button,
  .header-actions .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 1.2rem;
  }
  .main-nav { gap: 2px; }
  .nav-link,
  .nav-button {
    padding: 8px 8px;
    font-size: 0.92rem;
  }
}

@media (min-width: 921px) and (max-width: 1200px) {
  .header > .wrap.header-row {
    grid-template-columns: minmax(248px, auto) minmax(0, 1fr);
    gap: 12px;
  }
  .brand { gap: 10px; }
  .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .brand-text { min-height: 50px; }
  .brand-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }
  .brand-title { font-size: 1.48rem; }
  .brand-subtitle { font-size: 0.88rem; }
  .header-actions .search-button,
  .header-actions .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 1.02rem;
  }
  .nav-link,
  .nav-button {
    padding: 7px 7px;
    font-size: 0.84rem;
  }
}

/* Page banner */
.page-banner {
  background:
    radial-gradient(circle at top right, rgba(215,181,109,.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
  border-bottom: 1px solid rgba(11,34,57,.08);
}
.page-banner .wrap {
  padding: 34px 0 30px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(0.9rem, 0.2vw + 0.86rem, 0.95rem);
  color: var(--muted);
}
.breadcrumbs a { color: var(--navy-3); }
.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(11,34,57,.25);
}
.page-heading {
  margin-top: 12px;
}
.page-heading h1,
.hero-copy h1,
.section-heading h2,
.content-card h2,
.sidebar-card h3,
.list-card h3,
.form-card h2 {
  font-family: "Merriweather", Georgia, serif;
  margin: 0;
  line-height: 1.16;
  color: var(--navy);
}
.page-heading h1 { font-size: clamp(2rem, 3vw, 3.1rem); }
.page-heading p {
  max-width: 72ch;
  color: var(--muted);
  margin: 12px 0 0;
}

/* Generic hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 56px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 480px);
  gap: 34px;
  align-items: center;
}
.hero-copy { padding: 18px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(215,181,109,.18);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin-top: 16px;
}
.hero-copy p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 18px 0 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.hero-highlights .stat {
  padding: 18px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(11,34,57,.08);
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-size: 1.9rem;
  font-family: "Merriweather", Georgia, serif;
  color: var(--navy);
}
.stat span { color: var(--muted); font-size: .95rem; }
.hero-media { position: relative; }
.hero-frame {
  background: linear-gradient(180deg, #ffffff 0%, #f3efe7 100%);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,34,57,.08);
  position: relative;
  overflow: hidden;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(215,181,109,.5);
  border-radius: 24px;
  pointer-events: none;
}
.hero-frame img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero-card-float {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: min(260px, 70%);
  background: rgba(11,34,57,.94);
  color: white;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(11,34,57,.25);
}
.hero-card-float strong {
  display: block;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
}
.hero-card-float span {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

/* Home hero slider */
.hero-home {
  position: relative;
  isolation: isolate;
  min-height: min(900px, calc(100vh - 120px));
  padding: 0;
  background: none;
}
.hero-slider,
.hero-slider-overlay {
  position: absolute;
  inset: 0;
}
.hero-slider {
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .85s ease, transform 3.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slider-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,18,28,.72) 0%, rgba(7,18,28,.48) 34%, rgba(7,18,28,.18) 58%, rgba(7,18,28,.22) 100%),
    linear-gradient(180deg, rgba(8,15,23,.16) 0%, rgba(8,15,23,.08) 54%, rgba(8,15,23,.38) 100%);
}
.hero-home .wrap {
  position: relative;
  z-index: 2;
  min-height: min(900px, calc(100vh - 120px));
}
.hero-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 520px);
  align-items: end;
  gap: 20px;
}
.hero-home-copy {
  padding: 84px 0 112px;
  position: relative;
  z-index: 2;
}
.hero-home-panel {
  max-width: 700px;
  padding: 34px 32px 30px;
  border-radius: 26px;
  background: rgba(15, 24, 35, .52);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(3, 10, 18, .22);
  backdrop-filter: blur(4px);
}
.hero-home-name {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
}
.hero-home-title {
  margin-top: 14px;
  font-size: clamp(1rem, 1.45vw, 1.7rem);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}
.hero-home-panel p {
  max-width: 28ch;
  color: rgba(255,255,255,.92);
  font-size: clamp(0.98rem, 0.18vw + 0.94rem, 1.06rem);
  line-height: 1.45;
  margin: 18px 0 0;
}
.hero-subscribe {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(220px, 300px) auto;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 660px;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 18px 32px rgba(6, 15, 24, .18);
}
.hero-subscribe input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 9px 18px;
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
  outline: none;
  align-self: center;
  box-sizing: border-box;
}
.hero-subscribe input::placeholder {
  color: rgba(11,34,57,.50);
  font-weight: 600;
}
.hero-subscribe button {
  border: 0;
  min-width: 220px;
  padding: 18px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1677d4 0%, #1f6eb5 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.hero-subscribe .form-message {
  grid-column: 1 / -1;
  padding: 0 20px 10px;
}
.hero-home-figure {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: end;
  height: 100%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero-home-figure img {
  width: min(38vw, 540px);
  max-height: 860px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}
.hero-slider-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  max-width: 12px;
  max-height: 12px;
  flex: 0 0 12px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: block;
  line-height: 0;
  background: rgba(255,255,255,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.hero-slider-dot::before,
.hero-slider-dot::after {
  content: none;
}
.hero-slider-dot:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,.74);
}
.hero-slider-dot.is-active {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.16);
}

/* Sections / cards */
.section {
  padding: 48px 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.section-heading p {
  max-width: 60ch;
  color: var(--muted);
  margin: 12px 0 0;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.feature-card,
.content-card,
.sidebar-card,
.list-card,
.form-card,
.quote-card,
.issue-card,
.contact-card,
.info-panel {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(11,34,57,.08);
  box-shadow: var(--shadow);
}
.feature-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.feature-card-body {
  padding: 22px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-3);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}
.feature-card h3,
.issue-card h3,
.quote-card h3,
.list-card h3,
.contact-card h3 {
  font-family: "Merriweather", Georgia, serif;
  margin: 12px 0 10px;
  color: var(--navy);
  line-height: 1.22;
  font-size: clamp(1.08rem, 0.48vw + 0.98rem, 1.3rem);
}
.feature-card p,
.issue-card p,
.quote-card p,
.content-card p,
.list-card p,
.contact-card p,
.sidebar-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.18vw + 0.94rem, 1.06rem);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--navy-3);
  font-weight: 700;
}
.link-arrow::after { content: "→"; }
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, .9fr);
  gap: 28px;
  align-items: start;
}
.content-stack,
.sidebar-stack {
  display: grid;
  gap: 24px;
}
.content-card,
.sidebar-card,
.form-card,
.contact-card,
.info-panel {
  padding: 28px;
}
.content-card h2,
.form-card h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  margin-bottom: 14px;
}
.content-card h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: clamp(1.08rem, 0.48vw + 0.98rem, 1.3rem);
}
.content-card ul,
.content-card ol {
  margin: 14px 0 0 0;
  padding-left: 20px;
  color: var(--ink);
}
.content-card li + li { margin-top: 8px; }
.issue-grid,
.news-grid,
.contact-grid,
.archive-grid {
  display: grid;
  gap: 18px;
}
.issue-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.issue-card { padding: 22px; }
.quote-card {
  padding: 28px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
}
.quote-card p {
  color: rgba(255,255,255,.86);
  font-size: 1.06rem;
}
.quote-card .quote-source {
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
}
.sidebar-card img.portrait {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 18px;
}
.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.sidebar-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.sidebar-list a {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
}
.sidebar-list a:hover { background: var(--gold-soft); }
.news-item,
.archive-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(11,34,57,.08);
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}
.news-date,
.archive-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 16px;
  background: rgba(18,60,105,.08);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  padding: 14px;
}
.news-item h3,
.archive-item h3 {
  margin-top: 0;
  font-size: 1.02rem;
}
.archive-list {
  display: grid;
  gap: 16px;
}
.archive-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.archive-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
}
.archive-links a::after { content: "↗"; }
.icon-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.icon-bullets li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}
.icon-bullets li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--gold), #c59b45);
}
.two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.two-col-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(11,34,57,.05);
  font-weight: 600;
  color: var(--navy);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field.full { grid-column: 1 / -1; }
label {
  font-weight: 700;
  color: var(--navy);
}
input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(11,34,57,.16);
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(27,77,128,.24);
  border-color: var(--navy-3);
}
.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
}
.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.form-message {
  font-weight: 700;
  color: var(--navy-3);
}
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-card strong {
  color: var(--navy);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.contact-list li { color: var(--muted); }

/* Newsletter + footer */
.newsletter-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
  overflow: hidden;
}
.newsletter-panel .split-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}
.newsletter-panel .content-card,
.newsletter-panel .sidebar-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: white;
}
.newsletter-panel .content-card h2,
.newsletter-panel .sidebar-card h3 {
  color: white;
}
.newsletter-panel p,
.newsletter-panel li,
.newsletter-panel .section-heading p,
.newsletter-panel .content-card p,
.newsletter-panel .content-card li,
.newsletter-panel .icon-bullets li {
  color: #F2F6FB;
}
.newsletter-panel input {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: white;
}
.newsletter-panel input::placeholder {
  color: rgba(255,255,255,.7);
}
.footer {
  margin-top: auto;
  background: var(--navy);
  color: rgba(255,255,255,.88);
}
.footer .wrap { padding: 34px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr .95fr;
  gap: 24px;
}
.footer h3 {
  margin: 0 0 14px;
  color: white;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.1rem;
}
.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,.82);
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer a:hover { color: white; }
.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: clamp(0.9rem, 0.2vw + 0.86rem, 0.95rem);
}

/* Search modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(11,34,57,.52);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 100;
}
.search-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.search-dialog {
  width: min(720px, 100%);
  background: white;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(11,34,57,.24);
  padding: 24px;
}
.search-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.search-dialog h2 {
  font-family: "Merriweather", Georgia, serif;
  margin: 0;
  color: var(--navy);
}
.search-close {
  border: 0;
  background: rgba(11,34,57,.06);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--navy);
}
.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 18px;
}
.search-results {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.search-results a {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
}
.search-results a small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.notice-bar {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(215,181,109,.16);
  color: var(--navy);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero .wrap,
  .split-layout,
  .newsletter-panel .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-float {
    left: 20px;
    right: 20px;
    width: auto;
  }
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-block; }

  .nav-wrap {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(11,34,57,.08);
    padding: 0 16px 18px;
    display: none;
  }
  .nav-wrap.is-open { display: block; }

  .main-nav {
    display: grid;
    gap: 10px;
  }
  .nav-item {
    display: block;
    width: 100%;
  }
  .nav-link,
  .nav-button {
    min-height: 50px;
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
    white-space: normal;
    text-align: left;
    font-size: clamp(0.94rem, 0.3vw + 0.9rem, 1rem);
    padding: 12px 16px;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 16px;
    border: 0;
    background: var(--cream);
    display: none;
    margin-top: 8px;
    padding: 8px;
  }
  .nav-item.is-open > .dropdown { display: block; }
  .dropdown a {
    min-height: 46px;
    white-space: normal;
    font-size: clamp(0.93rem, 0.24vw + 0.89rem, 0.99rem);
  }

  .header-row {
    grid-template-columns: 1fr auto;
    padding: 12px 0;
    align-items: center;
    gap: 16px;
  }
  .brand {
    gap: 10px;
  }
  .brand-text {
    display: grid;
    gap: 1px;
    align-content: center;
  }
  .header-actions {
    justify-content: flex-end;
    margin-top: 12px;
    gap: 10px;
  }
  .header-actions .search-button,
  .header-actions .button {
    min-height: 46px;
    flex: 1 1 0;
  }

  .hero-home {
    min-height: auto;
    background-position: 60% center;
  }
  .hero-home .wrap {
    min-height: auto;
  }
  .hero-home-grid {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 0;
  }
  .hero-home-copy {
    padding: 64px 0 20px;
  }
  .hero-home-panel {
    max-width: 100%;
    padding: 24px 22px 22px;
    border-radius: 22px;
  }
  .hero-home-panel p {
    max-width: 36ch;
  }
  .hero-subscribe {
    grid-template-columns: 1fr;
    border-radius: 26px;
    padding: 10px;
  }
  .hero-subscribe button {
    width: 100%;
    min-width: 0;
  }
  .hero-home-figure {
    justify-self: center;
    max-width: 100%;
    margin-top: 18px;
  }
  .hero-home-figure img {
    width: min(72vw, 460px);
    max-height: 620px;
  }
  .hero-slider-dots {
    bottom: 14px;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
  }
  .hero-home-panel,
  .content-card,
  .sidebar-card,
  .form-card,
  .contact-card,
  .info-panel,
  .quote-card {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .utility-bar { display: none; }
  .hero { padding-top: 26px; }
  .hero-highlights,
  .card-grid,
  .issue-grid,
  .contact-grid,
  .form-grid,
  .two-col-list {
    grid-template-columns: 1fr;
  }
  .news-item,
  .archive-item {
    grid-template-columns: 1fr;
  }
  .header-actions .button { display: none; }
  .page-banner .wrap { padding: 26px 0 22px; }
  .content-card,
  .sidebar-card,
  .form-card,
  .contact-card,
  .info-panel {
    padding: 22px;
  }
  .search-form { grid-template-columns: 1fr; }

  .brand-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .brand-title { font-size: 1rem; }
  .brand-subtitle { font-size: 0.82rem; }
  .hero-home-name {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .hero-home-title {
    font-size: clamp(0.95rem, 4vw, 1.25rem);
  }
  .hero-home-panel p,
  .section-heading p,
  .page-heading p,
  .content-card p,
  .feature-card p,
  .issue-card p,
  .sidebar-card p,
  .quote-card p,
  .contact-card p,
  .list-card p,
  .footer p,
  .footer li {
    font-size: 0.98rem;
  }
  .section-heading h2,
  .content-card h2,
  .form-card h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }
  .feature-card h3,
  .issue-card h3,
  .quote-card h3,
  .list-card h3,
  .contact-card h3,
  .sidebar-card h3,
  .content-card h3 {
    font-size: 1.08rem;
  }
  .hero-subscribe input,
  .hero-subscribe button,
  input,
  textarea,
  select,
  .button,
  .button-outline,
  .search-button {
    font-size: 0.96rem;
  }
}

@media (max-width: 640px) {
  .hero-home-copy {
    padding: 48px 0 16px;
  }
  .hero-home-panel {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }
  .hero-home-panel p {
    max-width: none;
    font-size: 1rem;
  }
  .hero-subscribe {
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 24px;
  }
  .hero-subscribe input {
    padding: 9px 14px;
  }
  .hero-subscribe button {
    min-width: 0;
    width: 100%;
    padding: 15px 20px;
  }
  .hero-home-figure img {
    width: min(82vw, 390px);
    max-height: 500px;
  }
  .hero-slider-dots {
    gap: 10px;
    bottom: 10px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 46px;
    height: 46px;
  }
  .hero-home-panel,
  .content-card,
  .sidebar-card,
  .form-card,
  .contact-card,
  .info-panel,
  .quote-card {
    padding: 18px;
  }
  .nav-link,
  .nav-button,
  .dropdown a,
  .button,
  .button-outline,
  .search-button {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* integrated utility social icons */
.utility-social .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  line-height: 1;
}

.utility-social .social-icon-link:hover,
.utility-social .social-icon-link:focus-visible {
  color: #ffffff;
}

.utility-social .social-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
}

.utility-social .social-icon-link:focus-visible {
  outline: 2px solid rgba(255,255,255,.8);
  outline-offset: 3px;
  border-radius: 4px;
}

/* integrated newsletter contrast overrides */
.newsletter-panel,
.newsletter-panel .content-card,
.newsletter-panel .sidebar-card {
  color: #F2F6FB !important;
}

.newsletter-panel h2,
.newsletter-panel h3 {
  color: #FFFFFF !important;
}

.newsletter-panel p,
.newsletter-panel li,
.newsletter-panel .section-heading p,
.newsletter-panel .content-card p,
.newsletter-panel .content-card li,
.newsletter-panel .sidebar-card p,
.newsletter-panel .sidebar-card li,
.newsletter-panel .icon-bullets li {
  color: #F2F6FB !important;
}

/* integrated mobile submenu behavior */
@media (max-width: 920px) {
  .nav-item[data-nav-parent] > .nav-button {
    position: relative;
  }

  .nav-item[data-nav-parent] > .nav-button::after {
    transition: transform .2s ease;
  }

  .nav-item[data-nav-parent].is-open > .nav-button::after {
    transform: rotate(180deg);
  }

  .nav-item[data-nav-parent] > .dropdown {
    display: none;
  }

  .nav-item[data-nav-parent].is-open > .dropdown {
    display: block;
  }
}

/* integrated desktop hover bridge */
@media (min-width: 921px) {
  .nav-item[data-nav-parent] {
    position: relative;
  }

  .nav-item[data-nav-parent]::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
  }

  .nav-item[data-nav-parent] > .dropdown {
    top: calc(100% + 8px);
    visibility: hidden;
  }

  .nav-item[data-nav-parent]:hover > .dropdown,
  .nav-item[data-nav-parent]:focus-within > .dropdown,
  .nav-item[data-nav-parent].is-open > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.utility-right-tools{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
  flex-wrap:wrap;
}

.translate-widget{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  min-width:0;
}

.translate-widget .goog-te-gadget{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,.92) !important;
  font-size:0.82rem !important;
  font-family:"Inter","Segoe UI",Arial,sans-serif !important;
  white-space:nowrap;
}

.translate-widget .goog-te-gadget .goog-te-combo{
  height:30px;
  min-width:150px;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:#ffffff;
  color:#0b2442;
  font-size:0.84rem;
  font-weight:600;
  box-shadow:none;
  outline:none;
}

.translate-widget .goog-te-gadget .goog-te-combo:focus{
  outline:2px solid #ffd34d;
  outline-offset:2px;
}

.translate-widget .goog-te-gadget img{
  vertical-align:middle;
}

.translate-widget .goog-logo-link{
  color:rgba(255,255,255,.92) !important;
}

.translate-widget .goog-te-gadget span{
  color:rgba(255,255,255,.92) !important;
}

.mobile-translate-wrap{
  display:none;
}

.mobile-social-row{
  display:none;
}

@media (max-width: 920px){
  .utility-right-tools{
    width:100%;
    justify-content:space-between;
    gap:10px;
  }

  .translate-widget .goog-te-gadget .goog-te-combo{
    min-width:132px;
    max-width:160px;
  }
}

@media (max-width: 720px){
  .utility-right-tools{
    justify-content:flex-end;
  }

  .translate-widget{
    width:auto;
  }

  .translate-widget .goog-te-gadget{
    font-size:0.76rem !important;
  }

  .translate-widget .goog-te-gadget .goog-te-combo{
    min-width:124px;
    height:28px;
    font-size:0.8rem;
    padding:3px 8px;
  }

  .mobile-translate-wrap{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:8px;
    grid-column:1 / -1;
    margin-top:10px;
  }

  .mobile-translate-wrap .translate-widget{
    display:flex;
    justify-content:flex-end;
    width:100%;
  }

  .mobile-translate-wrap .goog-te-gadget{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#0b2442 !important;
    font-size:0.76rem !important;
    font-family:"Inter","Segoe UI",Arial,sans-serif !important;
    white-space:nowrap;
  }

  .mobile-translate-wrap .goog-te-gadget .goog-te-combo{
    min-width:138px;
    max-width:160px;
    height:30px;
    padding:4px 10px;
    border:1px solid rgba(11,36,66,.22);
    border-radius:999px;
    background:#fff;
    color:#0b2442;
    font-size:0.82rem;
    font-weight:600;
  }

  .mobile-translate-wrap .goog-te-gadget span,
  .mobile-translate-wrap .goog-logo-link{
    color:#0b2442 !important;
  }

  .mobile-social-row{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    width:100%;
  }

  .mobile-social-row .social-icon-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    min-width:32px;
    min-height:32px;
    color:#0b2442;
    text-decoration:none;
    border-radius:999px;
    background:rgba(11,36,66,.06);
    border:1px solid rgba(11,36,66,.10);
  }

  .mobile-social-row .social-icon-link:hover{
    color:#153a69;
    background:rgba(11,36,66,.10);
  }

  .mobile-social-row .social-icon{
    width:16px;
    height:16px;
    display:block;
  }

  .mobile-social-row .mobile-social-x{
    font-size:0.9rem;
    font-weight:800;
    line-height:1;
  }
}

.utility-right-tools{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
  flex-wrap:wrap;
}

.translate-widget{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  min-width:0;
}

.translate-widget .goog-te-gadget{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,.92) !important;
  font-size:0.82rem !important;
  font-family:"Inter","Segoe UI",Arial,sans-serif !important;
  white-space:nowrap;
}

.translate-widget .goog-te-gadget .goog-te-combo{
  height:30px;
  min-width:150px;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:#ffffff;
  color:#0b2442;
  font-size:0.84rem;
  font-weight:600;
  box-shadow:none;
  outline:none;
}

.translate-widget .goog-te-gadget .goog-te-combo:focus{
  outline:2px solid #ffd34d;
  outline-offset:2px;
}

.translate-widget .goog-te-gadget img{
  vertical-align:middle;
}

.translate-widget .goog-logo-link{
  color:rgba(255,255,255,.92) !important;
}

.translate-widget .goog-te-gadget span{
  color:rgba(255,255,255,.92) !important;
}

.social-icon-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.social-icon{
  width:14px;
  height:14px;
  display:block;
}

.mobile-social-x{
  font-size:0.8rem;
  font-weight:800;
  line-height:1;
}

@media (max-width: 920px){
  .utility-right-tools{
    width:100%;
    justify-content:space-between;
    gap:10px;
  }

  .translate-widget .goog-te-gadget .goog-te-combo{
    min-width:132px;
    max-width:160px;
  }
}

@media (max-width: 720px){
  .utility-bar{
    display:block !important;
  }

  .utility-bar .wrap{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:8px;
    padding:8px 0;
  }

  .utility-links{
    display:none;
  }

  .utility-right-tools{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:flex-end;
    gap:8px;
    margin-left:0;
  }

  .translate-widget{
    width:100%;
    display:flex;
    justify-content:flex-end;
  }

  .translate-widget .goog-te-gadget{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#ffffff !important;
    font-size:0.76rem !important;
    font-family:"Inter","Segoe UI",Arial,sans-serif !important;
    white-space:nowrap;
  }

  .translate-widget .goog-te-gadget .goog-te-combo{
    min-width:138px;
    max-width:170px;
    height:30px;
    padding:4px 10px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    background:#fff;
    color:#0b2442;
    font-size:0.82rem;
    font-weight:600;
  }

  .translate-widget .goog-te-gadget span,
  .translate-widget .goog-logo-link{
    color:#ffffff !important;
  }

  .utility-social{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    width:100%;
  }

  .utility-social .social-icon-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    min-width:32px;
    min-height:32px;
    color:#ffffff;
    text-decoration:none;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
  }

  .utility-social .social-icon-link:hover{
    color:#f9df84;
    background:rgba(255,255,255,.14);
  }

  .utility-social .social-icon{
    width:16px;
    height:16px;
    display:block;
  }

  .utility-social .mobile-social-x{
    font-size:0.9rem;
    font-weight:800;
    line-height:1;
  }
}

/* ===== Walkpiece theme overrides ===== */
:root {
  --navy: #0d1836;
  --navy-2: #18488f;
  --navy-3: #2b73bb;
  --gold: #d5af52;
  --gold-soft: #f3ede0;
  --cream: #ececec;
  --ink: #121212;
  --muted: #445066;
  --line: rgba(9, 22, 48, 0.12);
  --shadow: 0 18px 50px rgba(7, 15, 34, 0.12);
}
html {
  background: #ececec;
}
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #f3f3f3 0%, #ececec 100%);
  color: var(--ink);
}
h1, h2, h3, h4, h5, h6,
.brand-title,
.brand-district-badge,
.hero-home-name,
.hero-home-title,
.hero-district-badge,
.kicker,
.news-date,
.button,
.button-outline,
.nav-link,
.nav-button,
.footer-title,
.section-kicker {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  letter-spacing: .01em;
}
.utility-bar {
  background: linear-gradient(90deg, #091326 0%, #123f7a 48%, #b71825 100%);
  color: rgba(255,255,255,.96);
}
.header {
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.92);
  border-bottom: 3px solid #c51f2e;
  box-shadow: 0 10px 28px rgba(8, 18, 41, .08);
}
.brand-kicker {
  color: #b71825;
  font-weight: 800;
}
.brand-title,
.brand-district-badge,
.brand-subtitle {
  text-transform: uppercase;
}
.brand-title,
.brand-district-badge {
  color: #0d1836;
}
.brand-mark {
  box-shadow: 0 10px 22px rgba(8,18,41,.18);
}
.nav-link,
.nav-button {
  color: #0d1836;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.nav-link:hover,
.nav-link[aria-current="page"],
.nav-button:hover,
.nav-item:hover > .nav-button {
  background: rgba(197, 31, 46, .08);
  color: #b71825;
}
.dropdown {
  border-top: 4px solid #c51f2e;
}
.dropdown a:hover,
.dropdown a.active {
  background: #f7f7f7;
  color: #b71825;
}
.search-button,
.button,
.button-outline,
.link-arrow {
  text-transform: uppercase;
  letter-spacing: .04em;
}
.button {
  background: linear-gradient(90deg, #0d1836 0%, #123f7a 55%, #b71825 100%);
  border: 0;
  color: #fff;
  box-shadow: 0 10px 24px rgba(9, 19, 38, .18);
}
.button:hover {
  filter: brightness(1.05);
}
.button-outline,
.search-button {
  border-color: rgba(13,24,54,.2);
  color: #0d1836;
  background: #fff;
}
.search-button:hover,
.button-outline:hover {
  border-color: #b71825;
  color: #b71825;
}
.section {
  padding-block: clamp(42px, 7vw, 84px);
}
.section-heading h2,
.content-card h2,
.sidebar-card h3,
.issue-card h3,
.feature-card h3,
.news-item h3,
.page-hero h1,
.page-title,
.form-card h2,
.form-panel h2,
.contact-card h2 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #121212;
}
.kicker,
.section-kicker,
.news-date {
  color: #b71825;
  font-weight: 700;
  text-transform: uppercase;
}
.content-card,
.sidebar-card,
.feature-card,
.issue-card,
.news-item,
.form-card,
.form-panel,
.contact-card,
.stat-card,
.page-panel,
.card-grid > article {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(13,24,54,.08);
  box-shadow: 0 14px 36px rgba(10, 19, 38, .08);
}
.content-card,
.sidebar-card,
.form-card,
.form-panel,
.contact-card,
.page-panel {
  border-radius: 24px;
}
.feature-card,
.issue-card,
.news-item {
  border-radius: 20px;
}
.hero-home {
  background: #091326;
  border-bottom: 10px solid #c51f2e;
}
.hero-slider-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 28, .72) 0%, rgba(12, 49, 106, .46) 42%, rgba(139, 20, 32, .28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.18) 100%);
}
.hero-slide {
  background-position: center center;
  background-size: cover;
}
.hero-home-panel {
  background: rgba(9, 19, 38, .78);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 54px rgba(0,0,0,.2);
}
.hero-home-name,
.hero-home-title,
.hero-home-panel p {
  color: #fff;
}
.hero-home-title {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0,0,0,.58);
  border-left: 6px solid #c51f2e;
}
.hero-district-badge {
  color: #ffffff;
  -webkit-text-stroke: 1px #091326;
}
.hero-slider-dot {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.16);
}
.hero-slider-dot.is-active {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(197,31,46,.24);
}
.page-hero,
.hero-standard,
.subpage-hero {
  background:
    linear-gradient(90deg, rgba(9,19,38,.84) 0%, rgba(18,63,122,.52) 40%, rgba(183,24,37,.28) 100%),
    url('../img/newbg.jpg') center/cover no-repeat;
  border-bottom: 8px solid #c51f2e;
}
.footer {
  background: linear-gradient(90deg, #091326 0%, #123f7a 45%, #b71825 100%);
  color: rgba(255,255,255,.96);
  border-top: 6px solid #ffffff;
}
.footer a,
.footer-title,
.footer .kicker {
  color: #fff;
}
.footer-bottom {
  border-top-color: rgba(255,255,255,.16);
}
input, textarea, select {
  border-color: rgba(13,24,54,.16);
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #2b73bb;
  box-shadow: 0 0 0 4px rgba(43,115,187,.16);
}
::selection {
  background: rgba(197,31,46,.18);
}
