/* ════════════════════════════════════════════════════════════
   TOASTED SOCIAL — DESIGN SYSTEM
   Shared styles across all pages. Page-specific CSS lives
   in <style> blocks within each HTML file.
   ════════════════════════════════════════════════════════════ */

:root {
  --cream: #e8dcc4;
  --cream-dirty: #d8c9ab;
  --cream-light: #efe5cf;
  --bone: #f0e6d2;
  --ink: #0a0908;
  --ink-soft: #2a2520;
  --red: #c8281f;
  --red-dark: #8e1a14;

  --display: "Bebas Neue", "Impact", sans-serif;
  --chunky: "Bowlby One SC", "Impact", sans-serif;
  --marker: "Permanent Marker", cursive;
  --typewriter: "Special Elite", "Courier New", monospace;
  --body: "DM Sans", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Smudgy paper background tint */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(139,90,20,0.04) 0%, transparent 40%),
    radial-gradient(circle at 88% 70%, rgba(0,0,0,0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(139,90,20,0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ════════ HALFTONE TEXTURES ════════ */
/* Apply to any section to get the newsprint dot pattern */
.halftone-bg {
  position: relative;
}
.halftone-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10, 9, 8, 0.13) 1px, transparent 1.4px);
  background-size: 5px 5px;
  pointer-events: none;
  z-index: 1;
}
.halftone-bg > * { position: relative; z-index: 2; }

/* ════════ NAV ════════ */
nav {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 28px;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--red);
}
.nav-inner {
  max-width: 1500px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.nav-mark {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-mark .red { color: var(--red); }
.nav-logo {
  display: block;
  height: 44px;
  line-height: 0;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(2px 2px 0 var(--red));
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--cream);
  padding: 9px 18px;
  border: 2px solid var(--red);
  transition: all 0.15s;
}
.nav-cta:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.hamburger {
  display: none;
  background: none; border: none;
  color: var(--cream);
  font-size: 22px; padding: 6px;
}

/* ════════ MARGIN FURNITURE (typewriter corner marks) ════════ */
.margin-mark {
  position: absolute;
  font-family: var(--typewriter);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 8;
  line-height: 1.4;
}
.margin-mark .red { color: var(--red); }
.mark-tl { top: 22px; left: 28px; }
.mark-tr { top: 22px; right: 28px; text-align: right; }
.mark-bl { bottom: 22px; left: 28px; }
.mark-br { bottom: 22px; right: 28px; text-align: right; }
.mark-vert {
  position: absolute;
  right: 14px; top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--typewriter);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 8;
  white-space: nowrap;
}
.margin-mark.on-dark, .mark-vert.on-dark { color: var(--cream); }
.margin-mark.on-dark .red, .mark-vert.on-dark .red { color: var(--red); }

/* ════════ TYPE TREATMENTS ════════ */
.eyebrow {
  font-family: var(--typewriter);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.marker-text {
  font-family: var(--marker);
  color: var(--red);
  transform: rotate(-1.5deg);
  display: inline-block;
}
.section-num {
  font-family: var(--typewriter);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ════════ HALFTONED PHOTO TREATMENT ════════
   For videos and images that need the printed-on-newsprint look */
.print-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.print-photo img,
.print-photo video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.35) brightness(0.78);
  mix-blend-mode: multiply;
  opacity: 0.92;
  display: block;
}
.print-photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--cream) 1.4px, transparent 1.6px);
  background-size: 5px 5px;
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
  z-index: 3;
}
.print-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--red);
  mix-blend-mode: multiply;
  opacity: 0.08;
  pointer-events: none;
  z-index: 2;
}
.print-photo .photo-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--red);
  color: var(--cream);
  padding: 9px 14px;
  font-family: var(--typewriter);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  z-index: 6;
  box-shadow: 3px 3px 0 var(--ink);
}

/* ════════ BUTTONS (stamp style) ════════ */
.btn-stamp {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 3px solid var(--ink);
  transition: all 0.15s;
  cursor: pointer;
}
.btn-stamp:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(-1deg) scale(1.04);
}
.btn-stamp.alt {
  background: var(--red);
  border-color: var(--red);
}
.btn-stamp.alt:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-stamp.big {
  font-size: 22px;
  padding: 22px 40px;
}
.btn-stamp.outline {
  background: transparent;
  color: var(--ink);
}
.btn-stamp.outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ════════ STICKER BURST ($750 starburst) ════════ */
.sticker-burst {
  background: var(--red);
  color: var(--cream);
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--chunky);
  text-align: center;
  border: 3px solid var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
  clip-path: polygon(
    50% 0%, 60% 12%, 75% 5%, 78% 20%, 95% 22%,
    88% 38%, 100% 50%, 88% 62%, 95% 78%, 78% 80%,
    75% 95%, 60% 88%, 50% 100%, 40% 88%, 25% 95%,
    22% 80%, 5% 78%, 12% 62%, 0% 50%, 12% 38%,
    5% 22%, 22% 20%, 25% 5%, 40% 12%
  );
}
.sticker-burst .num {
  font-size: 30px;
  line-height: 0.95;
}
.sticker-burst .lbl {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-top: 2px;
  text-transform: uppercase;
}

/* ════════ MARQUEE RULE STRIP ════════ */
.rule-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.rule-strip::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232, 220, 196, 0.1) 1px, transparent 1.4px);
  background-size: 5px 5px;
  pointer-events: none;
}
.rule-content {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scroll-strip 32s linear infinite;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
}
.rule-content span {
  display: inline-flex;
  align-items: center;
  gap: 80px;
}
.rule-content .red { color: var(--red); }
@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════ PULL QUOTE ════════ */
.pull-quote {
  margin: 26px 0;
  padding: 18px 0 18px 22px;
  border-left: 4px solid var(--red);
  font-family: var(--marker);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  max-width: 480px;
}
.pull-quote .red { color: var(--red); }

/* ════════ SPONSORS - naked logos on cream with hierarchy ════════ */
.sponsors-section {
  position: relative;
  padding: 40px 28px 50px;
  background: var(--cream);
  text-align: center;
  border-top: 3px solid var(--ink);
}
.sponsors-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10, 9, 8, 0.1) 1px, transparent 1.4px);
  background-size: 5px 5px;
  pointer-events: none;
}
.sponsors-section > * { position: relative; z-index: 2; }
.sponsors-eyebrow {
  font-family: var(--typewriter);
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
  opacity: 0.7;
}
/* Main sponsor - bigger, centered above */
.sponsor-main {
  display: inline-block;
  height: 360px;
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.95;
}
.sponsor-main:hover { opacity: 1; transform: translateY(-3px); }
.sponsor-main img {
  height: 100%;
  width: auto;
  display: block;
}
/* Secondary row of partners */
.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: -40px;
  padding: 0 20px;
}
.sponsor-row a {
  display: inline-block;
  height: 230px;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.9;
}
.sponsor-row a:hover { transform: translateY(-2px); opacity: 1; }
.sponsor-row img {
  height: 100%;
  width: auto;
  display: block;
}

/* Sound partner (Signal House) — entertainment page */
.sound-partner {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px dashed rgba(10, 9, 8, 0.3);
  text-align: center;
}
.sound-partner .label {
  font-family: var(--typewriter);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 18px;
}
.sound-partner a {
  display: inline-block;
  height: 80px;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0.85;
}
.sound-partner a:hover { opacity: 1; transform: translateY(-2px); }
.sound-partner img {
  height: 100%;
  width: auto;
}

@media (max-width: 900px) {
  .sponsors-section { padding: 30px 20px 40px; }
  .sponsor-main { height: 220px; }
  .sponsor-row { margin-top: -25px; padding: 0 10px; }
  .sponsor-row a { height: 140px; }
}

/* ════════ CONTACT STRIP (Don't Miss the Drop) ════════ */
.contact-strip {
  background: var(--red);
  color: var(--cream);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  border-top: 3px solid var(--ink);
}
.contact-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10, 9, 8, 0.15) 1px, transparent 1.4px);
  background-size: 5px 5px;
  pointer-events: none;
}
.contact-strip > * { position: relative; z-index: 2; }
.contact-strip .eyebrow {
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 14px;
  letter-spacing: 0.36em;
}
.contact-strip h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 4px 4px 0 var(--ink);
}
.contact-strip p {
  font-family: var(--body);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.contact-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 44px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  transition: all 0.15s;
}
.contact-cta:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-3px);
}

/* ════════ FOOTER (colophon style) ════════ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 28px 30px;
  position: relative;
  border-top: 5px solid var(--red);
}
footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232, 220, 196, 0.07) 1px, transparent 1.4px);
  background-size: 5px 5px;
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.colophon {
  font-family: var(--typewriter);
  font-size: 13px;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.7);
}
.colophon .mark {
  font-family: var(--chunky);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 12px;
  text-transform: none;
  display: block;
}
.colophon .mark .red { color: var(--red); }
.colophon .red { color: var(--red); }
.footer-col h5 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-col a {
  color: rgba(232, 220, 196, 0.8);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px dashed rgba(232, 220, 196, 0.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--typewriter);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.5);
  position: relative;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 8px 0;
    gap: 0;
    border-bottom: 3px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 18px 26px;
    font-size: 17px;
    width: 100%;
    border-bottom: 1px solid rgba(232, 220, 196, 0.1);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin: 8px 20px;
    text-align: center;
  }
  .hamburger {
    display: flex;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
  }
  .mark-vert { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
