
:root {
  --black: #050505;
  --black-2: #111111;
  --gold: #d2a62a;
  --gold-light: #f1cf67;
  --white: #ffffff;
  --off-white: #f3f1eb;
  --gray: #a7a7a7;
  --line: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(5,5,5,.93);
  border-bottom: 1px solid rgba(210,166,42,.35);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 16px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 35%, rgba(210,166,42,.18), transparent 25%),
    linear-gradient(120deg, #050505 0%, #101010 56%, #050505 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(255,255,255,.03) 50%, transparent 50.2%),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 64px;
  opacity: .45;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 90vw);
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding: 70px 0 90px;
}
.hero-logo-wrap { position: relative; }
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(210,166,42,.28);
}
.hero-logo { position: relative; filter: drop-shadow(0 28px 50px rgba(0,0,0,.65)); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .about-copy h2, .contact-section h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(3.4rem, 7.2vw, 7rem); }
.hero h1 span { color: var(--gold); }
.lede {
  max-width: 680px;
  margin: 26px 0 32px;
  color: #d3d3d3;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--black); }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border: 1px solid rgba(255,255,255,.55); }
.button-ghost:hover { background: var(--white); color: var(--black); }
.hero-stripe {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 90px, #fff 90px 105px, var(--black) 105px 195px);
}

.proof-section {
  background: var(--off-white);
  color: var(--black);
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
}
.section-heading { max-width: 900px; margin-bottom: 42px; }
.section-heading h2 { font-size: clamp(2.7rem, 5vw, 5.3rem); }
.section-heading > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: #474747;
  font-size: 1.05rem;
  line-height: 1.7;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}
.proof-card {
  margin: 0;
  background: var(--black);
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 18px 55px rgba(0,0,0,.16);
}
.proof-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.proof-card-large img { aspect-ratio: 1.4/1; }
.proof-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.proof-card figcaption strong { color: var(--gold-light); letter-spacing: .08em; }
.proof-card figcaption span { color: #c5c5c5; text-align: right; }
.status-bar {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #c8c3b8;
  background: #fff;
}
.status-bar div { padding: 22px; border-right: 1px solid #c8c3b8; }
.status-bar div:last-child { border-right: 0; }
.status-kicker {
  display: block;
  margin-bottom: 6px;
  color: #8d6b0d;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .78rem;
}
.status-bar strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.coverage-section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(5,5,5,.88), rgba(5,5,5,.96)),
    url("assets/fox-big-noon-close.jpg") center/cover fixed;
}
.section-heading.light > p:last-child { color: #c8c8c8; }
.coverage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.coverage-cards article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(12,12,12,.82);
}
.number {
  display: block;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 900;
}
.coverage-cards h3 {
  margin: 54px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}
.coverage-cards p { color: #c8c8c8; line-height: 1.65; }

.about-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: clamp(32px, 7vw, 100px);
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
  background: var(--gold);
  color: var(--black);
}
.about-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.07em;
}
.about-copy h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.about-copy .eyebrow { color: #473606; }
.about-copy p:not(.eyebrow) { max-width: 700px; font-size: 1.05rem; line-height: 1.7; }
.five-stars { margin-top: 24px; font-size: 1.5rem; letter-spacing: .35em; }

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: #0b0b0b;
}
.contact-section h2 { font-size: clamp(2.6rem, 4.8vw, 5rem); max-width: 850px; }

footer {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050505;
  color: #9f9f9f;
}
footer img { width: 58px; }
footer div { display: flex; flex-direction: column; }
footer strong { color: white; font-family: "Barlow Condensed", sans-serif; letter-spacing: .08em; }
footer p { justify-self: end; max-width: 600px; text-align: right; font-size: .75rem; line-height: 1.45; }

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    border: 1px solid var(--gold);
    background: transparent;
    color: white;
    padding: 9px 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #080808;
    border-bottom: 1px solid var(--gold);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-cta { border: 0; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-logo { width: min(380px, 76vw); margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .proof-grid, .coverage-cards, .about-section { grid-template-columns: 1fr; }
  .status-bar { grid-template-columns: 1fr; }
  .status-bar div { border-right: 0; border-bottom: 1px solid #c8c3b8; }
  .status-bar div:last-child { border-bottom: 0; }
  .about-mark { font-size: 9rem; }
  .contact-section { flex-direction: column; align-items: flex-start; }
  footer { grid-template-columns: auto 1fr; }
  footer p { grid-column: 1 / -1; justify-self: start; text-align: left; }
}

@media (max-width: 600px) {
  .brand span { display: none; }
  .hero h1 { font-size: 3.6rem; }
  .proof-card figcaption { flex-direction: column; }
  .proof-card figcaption span { text-align: left; }
  .proof-card img, .proof-card-large img { aspect-ratio: 4/3; }
  .coverage-section { background-attachment: scroll; }
}


/* Version 2 hero corrections */
.hero-content {
  grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
  width: min(1320px, 92vw);
}
.hero-copy {
  min-width: 0;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(3.2rem, 5.6vw, 6.2rem);
  line-height: .93;
  overflow-wrap: normal;
}
.hero h1 span {
  display: block;
  max-width: 100%;
}
.hero-logo {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.hero-logo-wrap::before {
  inset: 12%;
}
@media (min-width: 901px) and (max-width: 1180px) {
  .hero h1 { font-size: clamp(3rem, 5.2vw, 4.8rem); }
  .hero-content { grid-template-columns: minmax(280px, 38%) minmax(0, 1fr); }
}
\n\n/* 2023 archive interview */\n.archive-feature-section {\n  display: grid;\n  grid-template-columns: 1.15fr .85fr;\n  align-items: center;\n  gap: clamp(36px, 7vw, 96px);\n  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);\n  background: #f3f1eb;\n  color: #050505;\n  border-top: 8px solid #d2a62a;\n}\n.archive-feature-copy h2 {\n  margin: 0;\n  max-width: 760px;\n  font-family: "Barlow Condensed", sans-serif;\n  font-size: clamp(3rem, 5.2vw, 5.5rem);\n  font-weight: 900;\n  line-height: .95;\n  text-transform: uppercase;\n}\n.archive-feature-copy > p:last-of-type {\n  max-width: 720px;\n  margin: 24px 0;\n  color: #444;\n  font-size: 1.05rem;\n  line-height: 1.7;\n}\n.archive-badges {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 10px;\n}\n.archive-badges span {\n  padding: 9px 12px;\n  border: 1px solid #b99a45;\n  background: #fff;\n  font-family: "Barlow Condensed", sans-serif;\n  font-weight: 800;\n  letter-spacing: .08em;\n  text-transform: uppercase;\n}\n.archive-video-card {\n  width: min(100%, 520px);\n  justify-self: center;\n  padding: 14px;\n  background: #070707;\n  border: 1px solid rgba(210,166,42,.55);\n  box-shadow: 0 20px 60px rgba(0,0,0,.22);\n}\n.archive-video-card video {\n  display: block;\n  width: 100%;\n  aspect-ratio: 16/9;\n  background: #000;\n  object-fit: cover;\n}\n.video-caption {\n  display: flex;\n  flex-direction: column;\n  gap: 5px;\n  margin: 14px 4px 2px;\n  color: #fff;\n}\n.video-caption strong {\n  color: #f1cf67;\n  font-family: "Barlow Condensed", sans-serif;\n  font-size: 1.15rem;\n  letter-spacing: .04em;\n  text-transform: uppercase;\n}\n.video-caption span {\n  color: #aaa;\n  font-size: .8rem;\n}\n@media (max-width: 900px) {\n  .archive-feature-section { grid-template-columns: 1fr; }\n  .archive-video-card { width: min(100%, 560px); justify-self: start; }\n}\n

/* Version 4: compact 2023 archive interview and cleaner presentation */
.archive-video-card-small {
  width: min(100%, 560px);
  justify-self: end;
}
.archive-video-card-small video {
  width: 100%;
  max-height: 315px;
  object-fit: contain;
  background: #000;
}
.archive-badges {
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .archive-video-card-small {
    width: min(100%, 520px);
    justify-self: start;
  }
}
