:root {
  --navy: #0F1B2A;
  --cream: #F7F6F2;
  --paper: #FCFBF8;
  --pink: #C33A63;
  --pink-deep: #A52D51;
  --teal: #2E6970;
  --grey: #D6D9DC;
  --muted: #69727D;
  --line: rgba(15, 27, 42, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { display: block; width: 220px; }
.brand img { width: 100%; height: auto; }

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
  padding-top: clamp(64px, 9vw, 124px);
  padding-bottom: clamp(72px, 10vw, 132px);
}
.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.pink-rule {
  display: inline-block;
  width: 23px;
  height: 3px;
  margin-right: 11px;
  background: var(--pink);
  vertical-align: middle;
  transform: translateY(-1px);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: .99;
  letter-spacing: -.035em;
  font-weight: 500;
}
h1 em { color: var(--pink); font-weight: 500; }
.lede {
  max-width: 680px;
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.25vw, 26px);
  line-height: 1.47;
  color: #2B3847;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.button-primary { background: var(--navy); color: white; }
.button-quiet { min-height: 38px; padding: 8px 12px; border-color: var(--line); }
.text-link { font-size: 14px; font-weight: 700; text-underline-offset: 4px; }
@media (hover:hover) and (pointer:fine) {
  .button:hover { transform: translateY(-1px); }
  .button-primary:hover { background: #1A2B3D; }
  .video-card:hover .video-thumb img { transform: scale(1.025); }
}

.hero-media {
  min-width: 0;
  border-top: 1px solid var(--navy);
  border-bottom: 5px solid var(--navy);
  background: #EDEDE9;
  position: relative;
}
.hero-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 72px;
  height: 5px;
  background: var(--pink);
}
.media-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 36px;
  text-align: center;
  color: var(--muted);
}
.placeholder-mark {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font: 42px/1 var(--serif);
}
.placeholder-mark span { color: var(--pink); }
.media-placeholder p { margin: 0; font-size: 14px; }
.hero-player { aspect-ratio: 16 / 9; width: 100%; border: 0; display: block; }
.featured-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 13px 2px 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 750;
}

.latest {
  padding-top: 74px;
  padding-bottom: 108px;
  border-top: 1px solid var(--line);
}
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 57px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 500;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 24px;
}
.video-card { min-width: 0; }
.video-launch {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #E8E8E4;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .22s ease; }
.play-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15,27,42,.92);
  color: white;
  font-size: 15px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.28);
}
.video-card h3 {
  margin: 16px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -.012em;
}
.video-meta { margin: 0; color: var(--muted); font-size: 13px; }
.loading-card { aspect-ratio: 16/9; background: linear-gradient(100deg, #E7E6E2 20%, #F0EFEC 45%, #E7E6E2 70%); background-size: 200% 100%; animation: shimmer 1.3s infinite linear; }
@keyframes shimmer { to { background-position-x: -200%; } }
.feed-note { margin: 28px 0 0; color: var(--muted); font-size: 14px; }

.about {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 850px) auto;
  justify-content: center;
  gap: clamp(22px, 5vw, 66px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 104px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-copy { text-align: center; }
.about-copy h2 { max-width: 830px; margin: 0 auto; }
.about-copy > p:last-child {
  max-width: 760px;
  margin: 26px auto 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  color: #33404F;
}
.about-marker { font-family: var(--serif); font-size: 92px; color: var(--pink); font-weight: 300; }

.resources {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 8vw, 110px);
  padding-top: 104px;
  padding-bottom: 112px;
}
.resources-intro > p:last-child { max-width: 520px; margin: 23px 0 0; font-size: 17px; line-height: 1.65; color: #44505D; }
.resource-card {
  align-self: end;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 30px 34px 28px;
  border: 1px solid var(--navy);
  background: var(--paper);
}
.resource-card::after {
  content: "]";
  position: absolute;
  right: 22px;
  top: 13px;
  color: var(--pink);
  font: 52px/1 var(--serif);
}
.resource-number { margin: 3px 0 0; color: var(--pink); font-size: 13px; font-weight: 800; }
.resource-card h3 { margin: 0 0 10px; font: 500 27px/1.1 var(--serif); }
.resource-card p { margin: 0; max-width: 560px; font-size: 15px; line-height: 1.55; color: #4C5662; }
.resource-status { grid-column: 2; margin-top: 15px; width: max-content; padding-top: 8px; border-top: 3px solid var(--pink); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.site-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.site-footer p { margin: 0; }
.footer-dot { color: var(--pink); }

.video-dialog {
  width: min(1000px, calc(100% - 28px));
  max-width: 1000px;
  padding: 0;
  border: 0;
  background: var(--navy);
  color: white;
}
.video-dialog::backdrop { background: rgba(4, 10, 18, .78); }
.dialog-bar { min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px 0 20px; }
.dialog-bar p { margin: 0; font-size: 13px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.dialog-close { width: 42px; height: 42px; border: 0; background: transparent; color: white; font-size: 30px; cursor: pointer; }
.dialog-player { aspect-ratio: 16/9; background: black; }
.dialog-player iframe { width: 100%; height: 100%; border: 0; display: block; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { max-width: 680px; width: 100%; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resources { grid-template-columns: 1fr; }
  .resource-card { align-self: auto; }
}
@media (max-width: 600px) {
  .site-header, .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 76px; }
  .brand { width: 174px; }
  .button-quiet { font-size: 12px; }
  .hero { padding-top: 58px; padding-bottom: 76px; gap: 48px; }
  h1 { font-size: clamp(45px, 14vw, 64px); }
  .lede { font-size: 20px; }
  .video-grid { grid-template-columns: 1fr; gap: 34px; }
  .latest { padding-top: 62px; padding-bottom: 84px; }
  .hide-small { display: none; }
  .about { grid-template-columns: 20px 1fr 20px; gap: 10px; padding-top: 78px; padding-bottom: 82px; }
  .about-marker { font-size: 58px; }
  .about-copy > p:last-child { font-size: 18px; }
  .resources { padding-top: 80px; padding-bottom: 86px; }
  .resource-card { padding: 25px 24px; }
  .resource-card::after { display: none; }
  .site-footer { min-height: 130px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

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