/* =========================================================
   Yeah? What Of It? — Dark Acid Brutalism
   Inspired by the yeah-whatofit preview build
   ========================================================= */

:root {
  /* palette — dark acid */
  --bg:       #0a0a0a;
  --bg-2:     #0d0d0d;
  --surface:  #141414;
  --card:     #1a1a1a;
  --line:     #262626;
  --text:     #ffffff;
  --muted:    #a3a3a3;
  --muted-2:  #6b6b6b;
  --yellow:   #e5ff00;
  --yellow-d: #c8e000;
  --red:      #ff2a00;
  --red-d:    #d62300;

  /* type */
  --f-display: "Anton", "Archivo Black", Impact, system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 0px;
  --shadow-w: 6px 6px 0 var(--text);
  --shadow-y: 6px 6px 0 var(--yellow);
  --shadow-r: 6px 6px 0 var(--red);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: clamp(15.5px, 1vw, 17px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* subtle scanline / film grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .6;
  mix-blend-mode: screen;
  z-index: 0;
}
main, header, footer { position: relative; z-index: 1; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--yellow); color: var(--bg); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--yellow); color: var(--bg);
  padding: 12px 16px; font-weight: 800;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 999; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* mono label utility */
.mono-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  background: var(--yellow);
  color: var(--bg);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -1px;
}
.nav__logo-text {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text);
}
.nav__links {
  display: flex; align-items: center; gap: clamp(12px, 2.2vw, 32px);
}
.nav__links a {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
  transition: color .15s ease;
}
.nav__links a:not(.nav__cta):hover,
.nav__links a:not(.nav__cta):focus-visible { color: var(--yellow); }
.nav__links a[aria-current="page"] { color: var(--yellow); }
.nav__cta {
  background: var(--yellow);
  color: var(--bg);
  padding: 10px 18px;
  border: 2px solid var(--yellow);
  box-shadow: 4px 4px 0 var(--text);
  transition: transform .15s ease, box-shadow .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__cta:hover, .nav__cta:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--text);
  color: var(--bg);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--text);
  width: 44px; height: 44px;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  width: 18px; height: 2px; background: var(--text); display: block;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--pad) 24px;
  gap: 4px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.nav__mobile a:hover { color: var(--yellow); }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__mobile { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(48px, 8vw, 110px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* faint glow */
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(229,255,0,.08), transparent 65%);
  pointer-events: none;
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.85); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow .dot { animation: none; }
}

.hero__title {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(64px, 11.5vw, 180px);
  line-height: .82;
  letter-spacing: -1.5px;
  margin: 0 0 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
}
.hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero__sub strong { color: var(--text); font-weight: 700; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__tags .sep {
  width: 4px; height: 4px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero__art { position: relative; }
.hero__video {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--card);
  border: 2px solid var(--text);
  box-shadow: 10px 10px 0 var(--yellow);
  overflow: hidden;
}
.hero__video iframe,
.hero__video img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
}
.hero__video-overlay {
  position: absolute;
  inset: auto auto 0 0;
  background: var(--bg);
  color: var(--yellow);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  display: flex; align-items: center; gap: 8px;
}
.hero__video-overlay .blink {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.hero__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta .yellow { color: var(--yellow); }

/* TICKER / MARQUEE */
.ticker {
  background: var(--yellow);
  color: var(--bg);
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
  overflow: hidden;
  padding: 18px 0;
}
.ticker__track {
  display: flex; gap: 56px;
  width: max-content;
  animation: scroll 38s linear infinite;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 1px;
  align-items: center;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.ticker__track .star {
  width: 18px; height: 18px;
  background: var(--bg);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* =========================================================
   SECTIONS — shared
   ========================================================= */
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

.section-head { margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .mono-label { display: block; margin-bottom: 16px; }
.section-title {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: .92;
  margin: 0;
  max-width: 18ch;
  letter-spacing: -0.5px;
}
.section-title em {
  font-style: normal;
  color: var(--yellow);
}
.section-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 60ch;
  margin: 18px 0 0;
}

/* =========================================================
   ABOUT THE SHOW (homepage section)
   ========================================================= */
.about-show { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-show__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.about-show__lead {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--text);
  max-width: 38ch;
}
.about-show__lead .hl { background: var(--yellow); color: var(--bg); padding: 0 4px; }
.about-show__lead .hl-r { background: var(--red); color: var(--text); padding: 0 4px; }

.stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px 18px;
}
.stat__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -1px;
}
.stat__label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 8px;
}

/* =========================================================
   LISTEN / EPISODES
   ========================================================= */
.listen { background: var(--bg); }
.player {
  border: 2px solid var(--text);
  padding: 14px;
  box-shadow: 10px 10px 0 var(--red);
  background: var(--card);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.player iframe { display: block; border-radius: 12px; }

.episodes__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.episodes__title {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0;
  letter-spacing: -.5px;
}
.episodes__title em { font-style: normal; color: var(--yellow); }
.episodes {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.episode {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px 22px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.episode:hover {
  transform: translate(-2px, -2px);
  border-color: var(--yellow);
  background: #1f1f1f;
}
.episode__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1;
  color: var(--yellow);
  text-align: left;
  letter-spacing: -1px;
}
.episode__body h4 {
  margin: 0 0 4px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: -0.1px;
  line-height: 1.25;
}
.episode__body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.episode__play {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  font-size: 18px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.episode__play:hover, .episode__play:focus-visible {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
  outline: none;
}
.episodes__more { margin-top: 32px; }

@media (max-width: 600px) {
  .episode { grid-template-columns: 62px 1fr; gap: 14px; padding: 16px; }
  .episode__num { font-size: 32px; }
  .episode__play { grid-column: 1 / -1; justify-self: stretch; width: 100%; height: 48px; }
}

/* =========================================================
   SUBSCRIBE EVERYWHERE
   ========================================================= */
.subscribe { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.subscribe__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.plat-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--card);
  border: 2px solid var(--text);
  padding: 24px;
  box-shadow: 6px 6px 0 var(--text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  color: var(--text);
}
.plat-card:hover, .plat-card:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--yellow);
  border-color: var(--yellow);
  outline: none;
}
.plat-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: var(--yellow);
}
.plat-card__label {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
  letter-spacing: -.3px;
}
.plat-card__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: auto;
}
.subscribe__foot {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.subscribe__foot .yellow { color: var(--yellow); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { background: var(--bg); }
.newsletter__inner {
  background: var(--card);
  border: 2px solid var(--yellow);
  box-shadow: 10px 10px 0 var(--red);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.newsletter__title {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .9;
  margin: 12px 0 18px;
  letter-spacing: -.5px;
}
.newsletter__title em { font-style: normal; color: var(--yellow); }
.newsletter__copy {
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 40ch;
}
.newsletter__form { display: grid; gap: 12px; }
.newsletter__row { display: grid; gap: 8px; }
.newsletter__row label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}
.newsletter input {
  font: inherit;
  background: var(--bg);
  border: 2px solid var(--text);
  padding: 14px 16px;
  color: var(--text);
  min-height: 48px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.newsletter input::placeholder { color: var(--muted-2); }
.newsletter input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 4px 4px 0 var(--yellow);
  transform: translate(-2px, -2px);
}
.newsletter__submit {
  background: var(--yellow);
  color: var(--bg);
  border: 2px solid var(--yellow);
  box-shadow: 5px 5px 0 var(--text);
  padding: 16px 22px;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 56px;
}
.newsletter__submit:hover, .newsletter__submit:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--text);
  outline: none;
}
.newsletter__note {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 800px) {
  .newsletter__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA
   ========================================================= */
.cta { background: var(--yellow); color: var(--bg); }
.cta__wrap { text-align: center; }
.cta .mono-label { color: var(--bg); }
.cta__title {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(44px, 7.5vw, 110px);
  line-height: .9;
  margin: 0 0 18px;
  letter-spacing: -1px;
  color: var(--bg);
}
.cta__title em {
  font-style: normal;
  background: var(--bg);
  color: var(--yellow);
  padding: 0 .15em;
  display: inline-block;
}
.cta__sub {
  max-width: 56ch;
  margin: 0 auto 32px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--bg);
  opacity: .85;
}
.cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  border: 2px solid var(--text);
  background: transparent;
  color: var(--text);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  min-height: 52px;
  text-decoration: none;
  position: relative;
}
.btn:hover, .btn:focus-visible {
  transform: translate(-3px, -3px);
  outline: none;
}
.btn--primary {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
  box-shadow: var(--shadow-w);
}
.btn--primary:hover, .btn--primary:focus-visible {
  box-shadow: 9px 9px 0 var(--text);
}
.btn--ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--text); color: var(--bg); }
.btn--red { background: var(--red); color: var(--text); border-color: var(--red); box-shadow: 6px 6px 0 var(--text); }
.btn--red:hover, .btn--red:focus-visible { box-shadow: 9px 9px 0 var(--text); }
.btn--lg { padding: 18px 30px; font-size: 22px; }

/* light bg (e.g., on .cta yellow) */
.cta .btn { color: var(--bg); border-color: var(--bg); }
.cta .btn--primary { background: var(--bg); color: var(--yellow); border-color: var(--bg); box-shadow: 6px 6px 0 var(--text); }
.cta .btn--ghost:hover { background: var(--bg); color: var(--yellow); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer__wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand .footer__logo {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(32px, 3.5vw, 44px);
  display: block;
  letter-spacing: -.5px;
}
.footer__brand .footer__logo em { color: var(--yellow); font-style: normal; }
.footer__brand p { margin: 10px 0 0; color: var(--muted); font-size: 14px; max-width: 36ch; }
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin: 0 0 14px;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.footer__col a {
  font-size: 14px;
  color: var(--text);
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--yellow); }
.footer__legal {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 32px;
}

@media (max-width: 800px) {
  .footer__wrap { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer__wrap { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   HERO RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
}
@media (max-width: 700px) {
  .about-show__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT / BLOKES PAGE
   ========================================================= */
.page-hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(56px, 11vw, 160px);
  line-height: .88;
  margin: 14px 0 18px;
  letter-spacing: -1.5px;
}
.page-hero h1 em { font-style: normal; color: var(--yellow); }
.page-hero p {
  max-width: 60ch;
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--muted);
}

.blokes { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.blokes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.bloke {
  background: var(--card);
  border: 2px solid var(--text);
  padding: 28px;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.bloke:nth-child(1) { box-shadow: 8px 8px 0 var(--yellow); }
.bloke:nth-child(2) { box-shadow: 8px 8px 0 var(--red); }
.bloke:nth-child(3) { box-shadow: 8px 8px 0 var(--text); }
.bloke:hover {
  transform: translate(-3px, -3px);
}
.bloke:nth-child(1):hover { box-shadow: 12px 12px 0 var(--yellow); }
.bloke:nth-child(2):hover { box-shadow: 12px 12px 0 var(--red); }
.bloke:nth-child(3):hover { box-shadow: 12px 12px 0 var(--text); }

.bloke__portrait {
  aspect-ratio: 1/1;
  width: 100%;
  border: 2px solid var(--text);
  display: grid; place-items: center;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(80px, 9vw, 120px);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  letter-spacing: -2px;
}
.bloke:nth-child(1) .bloke__portrait { background: var(--yellow); color: var(--bg); }
.bloke:nth-child(2) .bloke__portrait { background: var(--red); color: var(--text); }
.bloke:nth-child(3) .bloke__portrait { background: var(--text); color: var(--bg); }
.bloke__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(0,0,0,.07) 14px 16px);
  pointer-events: none;
}
.bloke__name {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(30px, 3.2vw, 40px);
  margin: 0 0 6px;
  line-height: 1;
  letter-spacing: -.5px;
}
.bloke__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-block;
  margin-bottom: 14px;
}
.bloke__bio { margin: 0 0 16px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.bloke__quote {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-style: italic;
  font-size: 14.5px;
  color: var(--text);
}

.values { background: var(--bg); border-bottom: 1px solid var(--line); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.value {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  border-left: 3px solid var(--yellow);
}
.value:nth-child(2n) { border-left-color: var(--red); }
.value h3 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: 2px;
}
.value p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.form {
  background: var(--card);
  border: 2px solid var(--text);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 10px 10px 0 var(--yellow);
}
.form__row { display: grid; gap: 8px; margin-bottom: 18px; }
.form label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}
.form label .req { color: var(--red); }
.form input,
.form select,
.form textarea {
  font: inherit;
  background: var(--bg);
  border: 2px solid var(--text);
  padding: 14px 16px;
  color: var(--text);
  width: 100%;
  min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted-2); }
.form textarea { min-height: 160px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 4px 4px 0 var(--yellow);
  transform: translate(-2px, -2px);
}
.form__helper {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted-2);
}
.form__submit {
  width: 100%;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1px;
  background: var(--yellow);
  color: var(--bg);
  border: 2px solid var(--yellow);
  padding: 18px 22px;
  box-shadow: 6px 6px 0 var(--text);
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 56px;
}
.form__submit:hover, .form__submit:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--text);
  outline: none;
}
.form__success {
  display: none;
  background: var(--yellow);
  color: var(--bg);
  border: 2px solid var(--yellow);
  padding: 18px;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: var(--f-mono);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.form.is-sent .form__success { display: block; }

.contact__side { display: grid; gap: 16px; }
.side-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  border-left: 3px solid var(--yellow);
}
.side-card:nth-child(2n) { border-left-color: var(--red); }
.side-card h3 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: 2px;
}
.side-card p { margin: 0 0 6px; color: var(--muted); font-size: 14.5px; }
.side-card a { color: var(--yellow); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.side-card a:hover { color: var(--text); }

@media (max-width: 800px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FOCUS — accessibility
   ========================================================= */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.episode__play:focus-visible,
.plat-card:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
