:root {
  --ink: #111111;
  --paper: #f4efe6;
  --paper-2: #fbf8f2;
  --navy: #164c73;
  --navy-dark: #0c304b;
  --yellow: #ffb51b;
  --muted: #6c6963;
  --line: rgba(17,17,17,.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: .035em;
  font-size: 1.45rem;
}
nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
nav a { text-decoration: none; font-weight: 700; font-size: .95rem; }
nav a:hover, nav a:focus-visible { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(30px, 5vw, 84px);
  padding: 64px 0 58px;
}
.eyebrow, .kicker {
  margin: 0 0 18px;
  font-family: "Courier New", Courier, monospace;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 5px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--yellow);
  transform: translateY(-1px) rotate(-2deg);
}
.hero h1, h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .94;
  letter-spacing: .012em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(3.4rem, 7.2vw, 6.5rem);
  max-width: 10ch;
}
.hero h1 span { color: var(--navy); }
.lede {
  max-width: 650px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  margin: 28px 0 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .045em;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.button:hover, .button:focus-visible { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.button.primary { background: var(--yellow); }
.button.secondary { background: var(--paper-2); }
.tiny-link { font-family: "Courier New", Courier, monospace; font-size: .88rem; margin: 18px 0 0; color: var(--muted); }

.hero-image-wrap {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}
.sunburst {
  position: absolute;
  inset: 8% 4% 4% 4%;
  z-index: -2;
  background:
    linear-gradient(12deg, transparent 0 43%, var(--yellow) 43% 48%, transparent 48% 100%),
    linear-gradient(-9deg, transparent 0 57%, var(--navy) 57% 68%, transparent 68% 100%);
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  z-index: -1;
  top: 8%;
  left: 11%;
  box-shadow: 16px 16px 0 var(--navy);
}
.hero-image {
    width: min(100%, 540px);
    object-fit: contain;
    filter: none !important;
}
.stamp {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .06em;
  transform: rotate(7deg);
}

.strip {
  width: 100%;
  background: var(--paper-2);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.strip img { width: 100%; height: auto; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 86px 0;
}
.two-col {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 7vw, 110px);
}
h2 { font-size: clamp(3rem, 6vw, 5.4rem); }
.copy { font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 720px; }
.copy p:first-child { margin-top: 4px; }
.pullquote {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 7px solid var(--yellow);
  font-weight: 900;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.clip-section {
  width: 100%;
  max-width: none;
  background: var(--navy-dark);
  color: white;
  padding-left: max(20px, calc((100vw - var(--max))/2));
  padding-right: max(20px, calc((100vw - var(--max))/2));
  position: relative;
  overflow: hidden;
}
.clip-section::after {
  content: "?";
  position: absolute;
  right: -30px;
  bottom: -150px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 34rem;
  line-height: 1;
  color: rgba(255,255,255,.045);
  transform: rotate(8deg);
}
.clip-inner { max-width: 780px; position: relative; z-index: 1; }
.clip-inner h2 { color: var(--yellow); max-width: 12ch; }
.clip-inner p { font-size: clamp(1.04rem, 1.5vw, 1.25rem); }
.clip-inner a { color: white; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.kicker.light { color: white; }

.watch-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(30px, 6vw, 90px);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 2px solid var(--ink);
}
.social-grid a {
  min-height: 92px;
  padding: 18px 10px 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.social-grid a:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.social-grid a:nth-child(even) { padding-left: 24px; }
.social-grid span { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(1.6rem, 3vw, 2.35rem); text-transform: uppercase; }
.social-grid strong { font-family: "Courier New", Courier, monospace; font-size: .82rem; }
.social-grid a:hover span, .social-grid a:focus-visible span { color: var(--navy); }

.contact-section {
  border-top: 1px solid var(--line);
  text-align: center;
}
.email {
  display: inline-block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1;
  text-decoration-thickness: 5px;
  text-underline-offset: 10px;
  overflow-wrap: anywhere;
}
.email:hover, .email:focus-visible { color: var(--navy); }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 90px;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: "Courier New", Courier, monospace;
  font-size: .88rem;
}
footer a { font-weight: 700; }

@media (max-width: 860px) {
  .site-header { min-height: 74px; }
  nav a:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; min-height: 0; }
  .hero h1 { max-width: 12ch; }
  .hero-image-wrap { min-height: 420px; max-width: 600px; width: 100%; margin: 0 auto; }
  .stamp { right: 5%; width: 96px; height: 96px; }
  .two-col, .watch-section { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
}

@media (max-width: 600px) {
  .site-header, .hero, .section, footer { width: min(calc(100% - 28px), var(--max)); }
  .brand { font-size: 1.2rem; }
  nav { gap: 12px; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.35rem); }
  .hero-image-wrap { min-height: 335px; }
  .hero-image-wrap::before { width: 84%; left: 8%; box-shadow: 10px 10px 0 var(--navy); }
  .stamp { width: 82px; height: 82px; font-size: .85rem; }
  .strip img { width: auto; max-width: none; height: 132px; object-fit: cover; object-position: center; }
  h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .social-grid { grid-template-columns: 1fr; }
  .social-grid a:nth-child(odd), .social-grid a:nth-child(even) { border-right: 0; padding-left: 0; padding-right: 0; }
  .email { font-size: clamp(2.1rem, 11vw, 3.4rem); }
  footer { flex-direction: column; justify-content: center; align-items: flex-start; padding: 25px 0; }
}
