:root {
  --ink: #1f2933;
  --muted: #5b6673;
  --line: #d7dde4;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --navy: #18324a;
  --teal: #1e8a7a;
  --rose: #be2f67;
  --gold: #b5872f;
  --shadow: 0 18px 48px rgba(24, 50, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 750;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}

.site-nav a {
  padding-block: 8px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rose);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 70px));
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 7vw, 96px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 550ms ease;
}

.hero-slide-1 {
  --hero-image: url("../images/slide-11.jpg");
}

.hero-slide-2 {
  --hero-image: url("../images/slide-2.jpg");
}

.hero-slide-3 {
  --hero-image: url("../images/slider-3.jpg");
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(16, 34, 49, 0.9) 0%, rgba(16, 34, 49, 0.76) 42%, rgba(16, 34, 49, 0.32) 74%, rgba(16, 34, 49, 0.08) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-inner {
  position: relative;
  width: min(100%, 760px);
  max-width: 760px;
  min-width: 0;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 700;
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-controls {
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.hero-controls button.is-active,
.hero-controls button:hover,
.hero-controls button:focus-visible {
  background: #fff;
  color: var(--navy);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 80px);
}

.muted {
  background: var(--soft);
}

.section-intro {
  padding-top: clamp(64px, 9vw, 112px);
}

.two-column,
.section-header,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero h1,
.section h2,
.principles h3,
.newsletter-card h3 {
  overflow-wrap: break-word;
}

.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.04;
  color: var(--navy);
  text-wrap: balance;
}

.two-column > *,
.section-header > *,
.contact-section > *,
.principles > *,
.link-grid > *,
.resource-row > *,
.newsletter-list > * {
  min-width: 0;
}

.section-header {
  align-items: end;
  margin-bottom: 28px;
}

.section-header p,
.prose p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.principles,
.link-grid,
.resource-row,
.newsletter-list {
  max-width: 1180px;
  margin: 36px auto 0;
}

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

.principles article,
.newsletter-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(31, 41, 51, 0.06);
}

.principles span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--rose);
  font-weight: 850;
}

.principles h3,
.newsletter-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
}

.principles p,
.newsletter-card p {
  margin: 0;
  color: var(--muted);
}

.link-grid,
.resource-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.link-grid a,
.resource-row a,
.contact-actions a,

.updates-header {
  align-items: center;
}

.media-filters {
  flex-wrap: wrap;
  justify-content: end;
}

.media-list {
  align-items: start;
}

.media-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.media-type-label {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.media-date {
  font-weight: 700;
}

.media-summary {
  margin-top: 12px;
}

.media-card a {
  margin-top: auto;
}

.video-card a {
  background: var(--teal);
  border-color: var(--teal);
}

.video-frame {
  aspect-ratio: 16 / 9;
  margin: -6px -6px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1b26;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-empty {
  max-width: 1180px;
  margin: 24px auto 0;
  color: var(--muted);
  font-weight: 700;
}
.newsletter-card a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.link-grid a:hover,
.resource-row a:hover,
.contact-actions a:hover,
.newsletter-card a:hover,
.link-grid a:focus-visible,
.resource-row a:focus-visible,
.contact-actions a:focus-visible,
.newsletter-card a:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--shadow);
}

.filter-wrap {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.filter-wrap select {
  min-width: 132px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

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

.newsletter-card a {
  margin-top: 18px;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.contact-section {
  align-items: start;
  background: var(--navy);
  color: #fff;
}

.contact-section h2,
.contact-section .section-kicker {
  color: #fff;
}

.contact-section address {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero h1,
.section h2,
.principles h3,
.newsletter-card h3 {
  overflow-wrap: break-word;
}

.section h2 {
    font-size: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 13px 0;
  }

  .two-column,
  .section-header,
  .contact-section,
  .principles,
  .link-grid,
  .resource-row,
  .newsletter-list {
    grid-template-columns: 1fr;
  }

  .filter-wrap {
    justify-self: start;
  }

  .hero {
    min-height: 640px;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 8px;
    padding: 12px 14px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .brand span {
    max-width: 160px;
    font-size: 15px;
    line-height: 1.25;
  }

  .menu-toggle {
    flex: 0 0 auto;
    padding: 0 10px;
  }

  .hero,
  .hero-slide {
    max-width: 100vw;
  }

  .hero-slide {
    padding: 44px 22px 72px;
  }

  .hero-inner,
  .hero h1,
  .hero p:not(.eyebrow),
  .section h2,
  .prose,
  .section-header p {
    width: 100%;
    max-width: calc(100vw - 44px);
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.02;
    text-wrap: normal;
  }

  .hero p:not(.eyebrow) {
    max-width: 300px;
    font-size: 16px;
  }

  .hero h1,
.section h2,
.principles h3,
.newsletter-card h3 {
  overflow-wrap: break-word;
}

.section h2 {
    font-size: 30px;
    text-wrap: normal;
  }

  .site-footer {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}




