:root {
  --navy: #0e2e61;
  --navy-deep: #081e42;
  --rust: #c54d28;
  --cream: #fef9ef;
  --cream-2: #f4ead8;
  --ink: #1c2430;
  --muted: #5c6570;
  --line: rgba(14, 46, 97, 0.12);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.5rem 1rem;
  z-index: 20;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 1.5rem 1.1rem;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo {
  display: block;
  height: 96px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.brand-tagline {
  color: #3d4754;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 0.3rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
}

.nav a:hover {
  color: var(--rust);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 18%;
  width: 12px;
  height: 58%;
  background:
    linear-gradient(var(--navy), var(--navy)) top,
    linear-gradient(var(--rust), var(--rust)) center,
    linear-gradient(var(--navy), var(--navy)) bottom;
  background-size: 100% 28%;
  background-repeat: no-repeat;
  transform: skewY(-18deg);
  opacity: 0.9;
}

.eyebrow {
  color: var(--rust);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 1.25rem;
}

h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  max-width: 16ch;
  margin: 0 0 1.4rem;
}

h1 em {
  font-style: normal;
  color: var(--rust);
}

.lede {
  max-width: 38rem;
  font-size: 1.28rem;
  color: var(--ink);
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--navy);
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 2px var(--rust);
  color: var(--rust);
}

.section-kicker {
  color: var(--rust);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin: 0 0 0.6rem;
}

.story,
.what,
.watch,
.about,
.gsh {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.story h2,
.what h2,
.watch h2,
.about h2,
.gsh h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  max-width: 22ch;
  margin: 0 0 1.1rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

blockquote {
  margin: 1.6rem 0 0;
  padding: 0 0 0 1.15rem;
  border-left: 4px solid var(--rust);
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.35;
}

.facts {
  background: var(--navy);
  color: #fff;
  padding: 1.6rem 1.5rem;
  display: grid;
  gap: 1.15rem;
}

.facts .fact-label {
  display: block;
  color: #d7c4b4;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts .fact-value {
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.cards article {
  background: #fff;
  border-top: 4px solid var(--navy);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 1px 0 var(--line);
}

.cards article:nth-child(2) {
  border-top-color: var(--rust);
}

.cards h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.cards p {
  margin: 0;
  color: var(--muted);
}

.watch-intro {
  max-width: 40rem;
  margin: 0 0 1.75rem;
}

.channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.channel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  padding: 1.6rem 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 220px;
}

.channel:hover {
  border-color: var(--navy);
}

.channel-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

.channel strong {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.channel-desc {
  color: var(--muted);
  flex: 1;
}

.channel-cta {
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.8rem;
}

.about {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.headshot {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 2px solid var(--rust);
}

.text-link:hover {
  color: var(--rust);
}

.gsh {
  padding-bottom: 4rem;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.gsh-brand {
  display: inline-block;
  margin: 0.35rem 0 0.9rem;
}

.gsh-logo {
  display: block;
  width: min(280px, 80vw);
  height: auto;
}

.gsh p {
  max-width: 38rem;
}

.site-footer {
  background: var(--navy-deep);
  color: #e8e0d4;
  padding: 2.5rem 1.5rem 2rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #e8a48c;
}

.footer-brand {
  max-width: var(--max);
  margin: 0 auto 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer-brand img {
  height: 48px;
  width: auto;
}

.footer-brand strong {
  display: block;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
}

.footer-brand span {
  color: #c9c2b6;
  font-size: 0.95rem;
}

.footer-links {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-weight: 600;
}

.disclaimer,
.copy {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.92rem;
  color: #b7b0a5;
}

.copy {
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .logo {
    height: 72px;
  }

  .brand-tagline {
    font-size: 0.95rem;
    white-space: normal;
    max-width: 12rem;
  }

  .hero::after {
    display: none;
  }

  .story-grid,
  .cards,
  .channels,
  .about {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 1rem;
    font-size: 0.95rem;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
