:root {
  --blue: #005793;
  --yellow: #fdbe57;
  --orange: #e8852f;
  --ink: #162734;
  --cream: #f2eee7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    17px/1.55 Arial,
    sans-serif;
}
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10;
  padding: 10px;
  background: #fff;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
header {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 25px 5vw;
  background: #003c65;
  color: #fff;
}
.brand img {
  width: 185px;
  height: auto;
}
.brand {
  display: flex;
}
.header nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
header nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
header nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: bold;
}
.lang {
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 9px 13px;
  background: transparent;
  color: #fff;
  font: inherit;
}
.menu {
  display: none;
}
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("../../assets/images/tcp-live/tcp-kids.jpg") center/cover;
  transform: scale(1.03);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(800px, 90%);
  padding: 13vh 7vw 12vh;
  background: #003c65;
}
.overline {
  margin: 0 0 18px;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 800;
}
.hero h1 {
  margin: 0 0 24px;
  font:
    700 clamp(4.2rem, 10vw, 10rem) / 0.84 Georgia,
    serif;
  letter-spacing: -0.07em;
}
.hero h1 em {
  color: var(--yellow);
  font-style: italic;
}
.hero-copy > p:not(.overline) {
  max-width: 520px;
  font-size: 1.32rem;
}
.circle-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.circle-link::after {
  content: "↓";
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.chapter {
  display: grid;
  grid-template-columns: 200px 1fr 0.95fr;
  gap: 70px;
  align-items: center;
  min-height: 750px;
  padding: 110px 7vw;
}
.chapter-rail {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #bac5c4;
}
.chapter-rail button {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 17px 18px;
  border: 0;
  background: transparent;
  color: #738087;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.chapter-rail button[aria-selected="true"] {
  color: var(--blue);
  font-weight: bold;
}
.chapter-rail button[aria-selected="true"] span {
  border-bottom: 2px solid var(--orange);
}
.chapter-copy h2 {
  max-width: 650px;
  margin: 0 0 22px;
  font:
    700 clamp(2.8rem, 5.5vw, 6rem) / 0.94 Georgia,
    serif;
  letter-spacing: -0.045em;
}
.chapter-copy > p:not(.overline) {
  max-width: 510px;
  color: #506169;
  font-size: 1.18rem;
}
.chapter-copy a,
.closing a,
.act a {
  color: var(--blue);
  font-weight: bold;
}
.chapter-photo img {
  width: 100%;
  height: 510px;
  object-fit: cover;
}
.impact {
  padding: 125px 7vw;
  background: var(--blue);
  color: #fff;
}
.impact h2 {
  max-width: 850px;
  margin: 0 0 65px;
  font:
    700 clamp(3.2rem, 7vw, 7rem) / 0.9 Georgia,
    serif;
  letter-spacing: -0.06em;
}
.impact h2 span {
  color: var(--yellow);
  font-style: italic;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.impact-grid article {
  padding: 25px 0;
  border-top: 2px solid var(--yellow);
}
.impact-grid strong {
  font:
    700 2rem Georgia,
    serif;
}
.impact-grid p {
  color: #d8e7ec;
}
.closing {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
  padding: 120px 7vw;
}
.closing h2 {
  font:
    700 clamp(2.5rem, 5vw, 5rem) / 0.96 Georgia,
    serif;
}
.closing p {
  color: #506169;
}
.closing img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.act {
  padding: 110px 7vw;
  background: var(--yellow);
}
.act h2 {
  margin: 0 0 20px;
  font:
    700 clamp(3.2rem, 7vw, 7rem) / 0.9 Georgia,
    serif;
}
.act a {
  color: var(--ink);
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 7vw;
  background: #092a45;
  color: #d9e7ef;
}
footer img {
  width: 160px;
  height: auto;
}
footer span {
  align-self: center;
}
@media (max-width: 800px) {
  header {
    padding: 17px 15px;
    gap: 14px;
  }
  .brand img {
    width: 150px;
  }
  header nav {
    display: none;
  }
  .lang {
    margin-left: auto;
    font-size: 0.85rem;
  }
  .menu {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    padding: 8px 10px;
  }
  .mobile-nav.is-open {
    display: flex;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 18px 15px;
    background: #004b7f;
  }
  .mobile-nav a {
    color: #fff;
    padding: 8px 0;
  }
  .hero-copy {
    padding: 16vh 15px 10vh;
  }
  .hero h1 {
    font-size: clamp(4rem, 19vw, 7rem);
  }
  .hero-image {
    background: url("../../assets/images/tcp-live/tcp-kids.jpg") center/cover;
  }
  .chapter {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 75px 15px;
  }
  .chapter-rail {
    border: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .chapter-rail button {
    min-width: 0;
    padding: 12px 8px;
    background: var(--cream);
  }
  .chapter-copy h2 {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }
  .chapter-photo img {
    height: 330px;
  }
  .impact,
  .closing,
  .act {
    padding: 80px 15px;
  }
  .impact-grid,
  .closing {
    grid-template-columns: 1fr;
  }
  .closing img {
    height: 330px;
  }
  footer {
    display: block;
    padding: 25px 15px;
  }
  footer img {
    margin-bottom: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
