/*
Theme Name: Brush & Tell
Theme URI: https://getbrushandtell.com
Author: Brush & Tell
Author URI: https://getbrushandtell.com
Description: A lightweight, Gutenberg-first WordPress theme for the Brush & Tell timed interview show.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brush-and-tell
Tags: custom-logo, custom-menu, featured-images, block-styles, wide-blocks, responsive-layout, accessibility-ready
*/

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/GeistMono-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bt-black: #0b0b0d;
  --bt-black-2: #151518;
  --bt-ivory: #f5f2e8;
  --bt-paper: #fbfaf5;
  --bt-cyan: #00e5ff;
  --bt-orange: #ff6a00;
  --bt-silver: #b8bcc0;
  --bt-muted: #606267;
  --bt-line: rgba(11, 11, 13, 0.2);
  --bt-shadow: 0 18px 50px rgba(11, 11, 13, 0.14);
  --bt-shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bt-paper);
  color: var(--bt-black);
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--bt-cyan); color: var(--bt-black); }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  top: 10px;
  left: 10px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  background: #fff;
  color: #000;
  font-weight: 800;
}
.shell, .wp-block-group__inner-container > .shell {
  width: min(var(--bt-shell), calc(100% - 48px));
  margin-inline: auto;
}
.site-main { min-height: 50vh; }
.section { padding-block: 105px; }
.alignwide { width: min(var(--bt-shell), calc(100% - 48px)); max-width: none; margin-inline: auto; }
.alignfull { width: 100%; max-width: none; margin-inline: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 86px;
  display: flex;
  align-items: center;
  background: rgba(251, 250, 245, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bt-line);
}
.admin-bar .site-header { top: 32px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo { width: 66px; height: 66px; display: flex; flex: 0 0 auto; }
.site-logo img, .site-logo .custom-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }
.site-navigation { display: flex; align-items: center; gap: 34px; }
.primary-menu, .footer-menu, .social-menu { list-style: none; padding: 0; margin: 0; }
.primary-menu { display: flex; align-items: center; gap: 30px; }
.primary-menu a { position: relative; font-size: 14px; font-weight: 800; }
.primary-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 3px;
  background: var(--bt-orange);
  transition: right 0.2s ease;
}
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after,
.primary-menu .current_page_parent > a::after { right: 0; }
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 6px auto; background: var(--bt-black); }

/* Buttons and small typography */
.bt-button, .wp-block-button__link, input[type="submit"], .form-submit .submit {
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--bt-black);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--bt-orange);
  color: var(--bt-black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bt-button:hover, .wp-block-button__link:hover, input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 5px 6px 0 var(--bt-black);
}
.bt-button-small { min-height: 43px; padding-inline: 19px; background: var(--bt-black); color: var(--bt-ivory); }
.bt-button-dark, .wp-block-button.bt-button-dark .wp-block-button__link { background: var(--bt-black); color: var(--bt-ivory); }
.bt-button-ivory, .wp-block-button.bt-button-ivory .wp-block-button__link { background: var(--bt-ivory); color: var(--bt-black); }
.bt-button-outline, .wp-block-button.bt-button-outline .wp-block-button__link { border-color: rgba(255,255,255,0.75); background: transparent; color: #fff; }
.bt-button-outline:hover, .wp-block-button.bt-button-outline .wp-block-button__link:hover { background: #fff; color: var(--bt-black); box-shadow: 5px 6px 0 var(--bt-orange); }
.bt-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.bt-text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bt-text-link:hover { color: #d95500; }
.bt-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bt-eyebrow::before { content: ""; width: 31px; height: 2px; background: var(--bt-orange); }
.bt-eyebrow-light { color: var(--bt-ivory); }

/* Homepage hero */
.bt-hero {
  position: relative;
  overflow: hidden;
  background: var(--bt-black);
  color: #fff;
}
.bt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 6px 6px;
}
.bt-hero-layout {
  position: relative;
  min-height: 695px;
  padding-block: 80px 100px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 75px;
  align-items: center;
}
.bt-display, .bt-page-hero h1, .bt-about-hero h1, .bt-sponsor-hero h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.066em;
  font-weight: 950;
  text-transform: uppercase;
}
.bt-display em, .bt-page-hero h1 em, .bt-about-hero h1 em, .bt-sponsor-hero h1 em,
.bt-section-title em {
  color: var(--bt-orange);
  font-family: Georgia, serif;
  font-weight: 500;
  text-transform: none;
}
.bt-lede { max-width: 620px; margin: 28px 0 31px; color: rgba(255,255,255,0.73); font-size: 18px; line-height: 1.7; }
.bt-host-line { display: block; margin-top: 24px; color: rgba(255,255,255,0.5); }
.bt-host-line strong { color: #fff; }
.bt-hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.bt-logo-frame {
  position: absolute;
  width: min(470px, 88%);
  aspect-ratio: 1;
  overflow: hidden;
  background: #050506;
  border: 1px solid #303034;
  box-shadow: 18px 18px 0 var(--bt-cyan);
  transform: rotate(-2deg);
}
.bt-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.bt-timer {
  position: absolute;
  z-index: 3;
  top: 8%;
  right: -1%;
  min-width: 155px;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  background: var(--bt-black);
  color: var(--bt-orange);
  border: 2px solid var(--bt-cyan);
  box-shadow: 6px 6px 0 var(--bt-orange);
  transform: rotate(3deg);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.08em;
}
.bt-timer i { margin-inline: 4px; color: var(--bt-ivory); font-style: normal; animation: bt-blink 1s steps(1) infinite; }
.bt-spill {
  position: absolute;
  z-index: 3;
  left: -5%;
  bottom: 7%;
  padding: 16px 20px;
  background: var(--bt-orange);
  color: var(--bt-black);
  border: 2px solid var(--bt-ivory);
  box-shadow: 7px 7px 0 var(--bt-ivory);
  transform: rotate(-4deg);
}
.bt-spill small { display: block; margin-bottom: 5px; font-size: 9px; font-weight: 900; letter-spacing: 0.14em; }
.bt-spill strong { font-size: 27px; line-height: 0.85; letter-spacing: -0.04em; }
@keyframes bt-blink { 50% { opacity: 0.2; } }
.bt-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 14px 0;
  background: var(--bt-orange);
  color: var(--bt-black);
  border-block: 2px solid var(--bt-black);
  transform: rotate(-1deg) scale(1.01);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
}
.bt-ticker-list { display: flex; align-items: center; justify-content: center; gap: 34px; white-space: nowrap; }
.bt-ticker-list span { position: relative; }
.bt-ticker-list span + span::before { content: "✦"; position: absolute; right: calc(100% + 14px); }
.bt-ticker-cyan { background: var(--bt-cyan); transform: none; }

/* Reusable content sections */
.bt-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.bt-section-heading-centered { justify-content: center; text-align: center; }
.bt-section-heading-centered .bt-eyebrow { justify-content: center; }
.bt-section-title {
  margin: 0;
  font-size: clamp(41px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -0.058em;
  font-weight: 950;
  text-transform: uppercase;
}
.bt-section-heading > p { max-width: 370px; margin: 0; color: var(--bt-muted); line-height: 1.7; }
.bt-format { background: var(--bt-black); color: #fff; }
.bt-format-layout { min-height: 680px; padding-block: 90px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 95px; align-items: center; }
.bt-format-art {
  position: relative;
  height: 470px;
  overflow: hidden;
  background: var(--bt-orange);
  border: 3px solid #fff;
  box-shadow: 14px 14px 0 var(--bt-cyan);
  transform: rotate(-3deg);
}
.bt-format-art > span { position: absolute; left: 20px; top: -95px; color: var(--bt-black); font-family: Georgia, serif; font-size: 350px; line-height: 1; }
.bt-format-bars { position: absolute; inset: 155px 48px 80px; display: flex; align-items: center; gap: 13px; }
.bt-format-bars i { flex: 1; height: 35%; background: var(--bt-black); border-radius: 20px; }
.bt-format-bars i:nth-child(2) { height: 70%; }
.bt-format-bars i:nth-child(3) { height: 100%; }
.bt-format-bars i:nth-child(4) { height: 58%; }
.bt-format-bars i:nth-child(5) { height: 25%; }
.bt-format-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--bt-cyan);
  border: 2px solid var(--bt-black);
  color: var(--bt-black);
  font-size: 17px;
  font-weight: 900;
  line-height: 0.9;
  transform: rotate(10deg);
}
.bt-format-copy > p:not(.bt-eyebrow) { color: rgba(255,255,255,0.68); font-size: 17px; line-height: 1.75; }
.bt-path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 27px; }
.bt-path { position: relative; min-height: 385px; padding: 40px; border: 2px solid var(--bt-black); display: flex; flex-direction: column; align-items: flex-start; }
.bt-path-cyan { background: var(--bt-cyan); }
.bt-path-orange { background: var(--bt-orange); }
.bt-path-number { position: absolute; right: 31px; top: 29px; font-size: 10px; font-weight: 900; }
.bt-path-icon { width: 70px; height: 70px; display: grid; place-items: center; border: 2px solid var(--bt-black); border-radius: 50%; background: var(--bt-paper); box-shadow: 5px 5px 0 var(--bt-black); font-size: 27px; font-weight: 900; }
.bt-path h3 { max-width: 500px; margin: 39px 0 12px; font-size: 31px; line-height: 1.06; letter-spacing: -0.045em; }
.bt-path p { max-width: 500px; margin: 0 0 28px; line-height: 1.65; }
.bt-path .bt-text-link { margin-top: auto; }
.bt-signup { padding-block: 80px; background: var(--bt-black-2); color: #fff; }
.bt-signup-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.bt-signup h2 { margin: 0; font-size: clamp(40px,5vw,63px); line-height: 1; letter-spacing: -0.055em; text-transform: uppercase; }
.bt-newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.bt-newsletter-form input[type="email"] { min-width: 0; height: 56px; padding-inline: 20px; border: 1px solid rgba(255,255,255,0.35); border-radius: 30px; background: transparent; color: #fff; outline: none; }
.bt-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.bt-newsletter-form input[type="email"]:focus { border-color: var(--bt-cyan); box-shadow: 0 0 0 3px rgba(0,229,255,0.18); }

/* Episode cards and archives */
.episode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.episode-card { min-width: 0; }
.episode-art {
  position: relative;
  display: block;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 2px solid var(--bt-black);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.episode-art:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: 9px 10px 0 var(--bt-black); }
.episode-art.bt-orange { background: var(--bt-orange); }
.episode-art.bt-cyan { background: var(--bt-cyan); }
.episode-art.bt-ivory { background: var(--bt-ivory); }
.episode-art img { width: 100%; height: 100%; object-fit: cover; }
.episode-art-label { position: absolute; top: 17px; left: 17px; z-index: 2; font-size: 10px; font-weight: 900; letter-spacing: 0.15em; }
.episode-art-brand { position: absolute; left: 18px; bottom: 15px; z-index: 2; font-size: clamp(27px,3vw,42px); line-height: 0.72; letter-spacing: -0.075em; font-weight: 950; }
.episode-art-brand em { color: var(--bt-orange); font-family: Georgia, serif; }
.episode-play { position: absolute; right: 17px; bottom: 17px; z-index: 3; width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: var(--bt-black); color: #fff; font-size: 13px; }
.episode-copy { padding-top: 21px; }
.episode-meta { display: flex; gap: 17px; margin: 0; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.11em; }
.episode-meta span + span::before { content: "•"; margin-right: 17px; color: var(--bt-orange); }
.episode-copy h3 { margin: 13px 0 6px; font-size: 23px; line-height: 1.13; letter-spacing: -0.035em; }
.episode-copy > strong { font-size: 13px; }
.episode-copy > p { color: var(--bt-muted); font-size: 14px; line-height: 1.65; }
.episode-copy footer { margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--bt-line); display: flex; align-items: center; justify-content: space-between; }
.episode-copy time { color: var(--bt-muted); font-size: 10px; }
.bt-page-hero { border-bottom: 2px solid var(--bt-black); }
.bt-page-hero-orange { background: var(--bt-orange); }
.bt-page-hero-cyan { background: var(--bt-cyan); }
.bt-page-hero > .shell { min-height: 440px; padding-block: 80px; display: flex; flex-direction: column; justify-content: center; }
.bt-page-hero p:not(.bt-eyebrow) { max-width: 620px; margin: 25px 0 0; font-size: 18px; line-height: 1.65; }
.bt-archive { padding-top: 60px; }
.bt-archive-tools { display: flex; justify-content: space-between; gap: 25px; padding-bottom: 23px; border-bottom: 1px solid var(--bt-line); }
.bt-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.bt-filter { min-height: 40px; padding: 0 17px; border: 1px solid var(--bt-line); border-radius: 30px; background: transparent; font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; }
.bt-filter:hover, .bt-filter.is-active { background: var(--bt-black); color: #fff; }
.bt-search { min-width: 270px; height: 44px; padding-inline: 15px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--bt-line); border-radius: 30px; background: #fff; }
.bt-search input { width: 100%; border: 0; outline: 0; background: transparent; }
.bt-search button { border: 0; background: transparent; cursor: pointer; font-weight: 900; }
.bt-result-count { margin: 20px 0 30px; color: var(--bt-muted); font-size: 11px; font-weight: 800; }
.pagination { margin-top: 55px; display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers { min-width: 42px; height: 42px; padding: 0 12px; display: grid; place-items: center; border: 1px solid var(--bt-line); border-radius: 50px; font-weight: 800; }
.pagination .current, .pagination a:hover { background: var(--bt-black); color: #fff; }

/* Single episodes */
.bt-episode-hero { padding-block: 78px; border-bottom: 2px solid var(--bt-black); }
.bt-episode-hero.bt-orange { background: var(--bt-orange); }
.bt-episode-hero.bt-cyan { background: var(--bt-cyan); }
.bt-episode-hero.bt-ivory { background: var(--bt-ivory); }
.bt-episode-hero-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 85px; align-items: center; }
.bt-back { display: inline-block; margin-bottom: 42px; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.bt-episode-hero h1 { margin: 18px 0; font-size: clamp(48px,6vw,77px); line-height: 0.98; letter-spacing: -0.06em; }
.bt-episode-hero h3 { margin: 0; font-size: 18px; }
.bt-episode-description { max-width: 650px; line-height: 1.7; }
.bt-episode-cover { position: relative; aspect-ratio: 0.84; padding: 29px; display: flex; flex-direction: column; justify-content: center; border: 3px solid var(--bt-black); box-shadow: 13px 13px 0 var(--bt-black); transform: rotate(2deg); overflow: hidden; }
.bt-episode-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bt-episode-cover-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(0,0,0,0.72)); }
.bt-episode-cover-title { position: relative; z-index: 2; color: #fff; font-size: clamp(47px,6vw,76px); line-height: 0.77; font-weight: 950; letter-spacing: -0.09em; }
.bt-episode-cover-guest, .bt-episode-cover-number { position: absolute; z-index: 2; bottom: 29px; color: #fff; font-weight: 900; }
.bt-episode-cover-guest { left: 29px; }
.bt-episode-cover-number { right: 29px; }
.bt-episode-notes { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 95px; align-items: start; }
.bt-episode-body { color: var(--bt-muted); font-size: 17px; line-height: 1.8; }
.bt-episode-media { margin: 35px 0; }
.bt-episode-media iframe { width: 100%; aspect-ratio: 16/9; height: auto; border: 0; }
.bt-episode-sidebar { display: flex; flex-direction: column; gap: 18px; }
.bt-side-card { padding: 27px; display: flex; flex-direction: column; align-items: flex-start; gap: 11px; background: var(--bt-ivory); border: 1px solid var(--bt-line); }
.bt-side-card > b { margin-top: 14px; color: var(--bt-orange); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.bt-side-card > b:first-child { margin-top: 0; }
.bt-side-card-dark { background: var(--bt-black); color: #fff; }
.bt-platform-links { display: flex; flex-wrap: wrap; gap: 10px; }

/* Interior Gutenberg pages */
.bt-content-page > *:not(.alignfull):not(.alignwide) { width: min(780px, calc(100% - 48px)); margin-inline: auto; }
.bt-content-page > .alignwide { width: min(var(--bt-shell), calc(100% - 48px)); }
.bt-content-page > .alignfull { width: 100%; }
.bt-content-page p, .bt-content-page li { line-height: 1.75; }
.bt-content-page h2 { margin-top: 1.6em; font-size: clamp(34px,5vw,56px); line-height: 1; letter-spacing: -0.045em; }
.bt-content-page h3 { margin-top: 1.5em; font-size: 25px; }
.bt-content-page blockquote { margin-block: 34px; padding: 23px 0 23px 27px; border-left: 4px solid var(--bt-orange); font-family: Georgia, serif; font-size: 25px; }
.bt-about-hero, .bt-sponsor-hero { background: var(--bt-black); color: #fff; }
.bt-about-hero-layout { min-height: 530px; padding-block: 85px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 100px; align-items: end; }
.bt-about-hero-copy { padding-left: 30px; border-left: 3px solid var(--bt-orange); color: rgba(255,255,255,0.7); font-family: Georgia,serif; font-size: 25px; line-height: 1.5; }
.bt-story { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 85px; align-items: center; }
.bt-host-photo { position: relative; aspect-ratio: 0.8; overflow: hidden; display: grid; place-items: center; background: var(--bt-cyan); border: 2px solid var(--bt-black); box-shadow: 13px 13px 0 var(--bt-orange); }
.bt-host-photo img { width: 100%; height: 100%; object-fit: cover; }
.bt-host-placeholder { color: rgba(11,11,13,0.55); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.bt-values { padding-block: 95px; background: var(--bt-black-2); color: #fff; }
.bt-values-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,0.2); }
.bt-value { padding: 37px 34px 0 0; }
.bt-value + .bt-value { padding-left: 34px; border-left: 1px solid rgba(255,255,255,0.2); }
.bt-value > span { color: var(--bt-orange); font-size: 11px; font-weight: 900; }
.bt-value h3 { margin: 42px 0 9px; font-size: 27px; text-transform: uppercase; }
.bt-value p { color: rgba(255,255,255,0.62); line-height: 1.7; }
.bt-application { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 90px; align-items: start; }
.bt-application > aside { position: sticky; top: 125px; }
.bt-application h2 { margin: 0; font-size: 47px; line-height: 1.02; letter-spacing: -0.058em; text-transform: uppercase; }
.bt-application ol { list-style: none; padding: 0; margin: 40px 0; counter-reset: item; }
.bt-application ol li { display: grid; grid-template-columns: 43px 1fr; gap: 14px; padding: 21px 0; border-top: 1px solid var(--bt-line); counter-increment: item; }
.bt-application ol li::before { content: "0" counter(item); color: var(--bt-orange); font-size: 11px; font-weight: 900; }
.bt-application ol li:last-child { border-bottom: 1px solid var(--bt-line); }
.bt-reality { margin-top: 34px; padding: 22px; background: var(--bt-cyan); border: 2px solid var(--bt-black); box-shadow: 6px 6px 0 var(--bt-black); }
.bt-form-panel { padding: 41px; background: var(--bt-ivory); border: 1px solid var(--bt-line); box-shadow: var(--bt-shadow); }
.bt-form-kicker { margin: 0 0 29px; padding-bottom: 19px; border-bottom: 1px solid var(--bt-line); color: var(--bt-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }

/* Native forms */
.bt-form { display: flex; flex-direction: column; gap: 21px; }
.bt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.bt-form label { display: flex; flex-direction: column; gap: 8px; font-size: 12px; font-weight: 800; }
.bt-form input, .bt-form textarea, .bt-form select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(11,11,13,0.26);
  border-radius: 4px;
  background: var(--bt-paper);
  outline: 0;
  color: var(--bt-black);
  font-size: 14px;
  font-weight: 450;
}
.bt-form textarea { resize: vertical; line-height: 1.5; }
.bt-form input:focus, .bt-form textarea:focus, .bt-form select:focus { border-color: var(--bt-orange); box-shadow: 0 0 0 3px rgba(255,106,0,0.15); }
.bt-form-note { text-align: center; color: var(--bt-muted); font-size: 10px; }
.bt-form-message { margin-bottom: 22px; padding: 18px; border: 2px solid var(--bt-black); font-weight: 700; }
.bt-form-success { background: var(--bt-cyan); }
.bt-form-error { background: #ffd8d2; }
.bt-honeypot { position: absolute !important; left: -9999px !important; }

/* Sponsor sections */
.bt-sponsor-hero .shell { min-height: 640px; padding-block: 90px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.bt-sponsor-hero h1 { max-width: 1050px; font-size: clamp(52px,7vw,92px); }
.bt-sponsor-hero p:not(.bt-eyebrow) { max-width: 680px; color: rgba(255,255,255,0.68); font-size: 19px; line-height: 1.65; }
.bt-packages { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bt-package { position: relative; min-height: 450px; padding: 33px; display: flex; flex-direction: column; border: 2px solid var(--bt-black); background: var(--bt-paper); }
.bt-package-featured { background: var(--bt-cyan); box-shadow: 9px 9px 0 var(--bt-black); transform: translateY(-9px); }
.bt-package h3 { margin: 28px 0 10px; font-size: 27px; text-transform: uppercase; letter-spacing: -0.04em; }
.bt-package p { color: var(--bt-muted); line-height: 1.65; }
.bt-package ul { list-style: none; padding: 19px 0; margin: 10px 0 25px; border-block: 1px solid var(--bt-line); }
.bt-package li { position: relative; padding: 7px 0 7px 22px; font-size: 13px; }
.bt-package li::before { content: "✓"; position: absolute; left: 0; color: #008da0; font-weight: 900; }
.bt-metrics { padding-block: 85px; background: var(--bt-black); color: #fff; }
.bt-metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid rgba(255,255,255,0.2); }
.bt-metric { padding: 35px 23px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); font-size: 11px; }
.bt-metric:last-child { border-right: 0; }
.bt-metric strong { color: var(--bt-orange); font-size: clamp(44px,5vw,68px); letter-spacing: -0.06em; }

/* Footer */
.site-footer { padding: 68px 0 25px; background: #050506; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 70px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-brand img { width: 110px; height: 110px; object-fit: contain; border-radius: 10px; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,0.55); }
.footer-heading { margin: 6px 0 10px; color: var(--bt-orange); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-menu, .social-menu { display: flex; flex-direction: column; gap: 11px; }
.footer-menu a, .social-menu a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer-menu a:hover, .social-menu a:hover { color: #fff; }
.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.13); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.35); font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Generic pages and WordPress elements */
.bt-simple-hero { padding-block: 88px; background: var(--bt-orange); border-bottom: 2px solid var(--bt-black); }
.bt-simple-hero h1 { max-width: 900px; margin: 0; font-size: clamp(48px,7vw,86px); line-height: 0.95; letter-spacing: -0.06em; text-transform: uppercase; }
.bt-page-body { padding-block: 80px 110px; }
.bt-page-body > *:first-child { margin-top: 0; }
.bt-page-body a:not(.wp-block-button__link) { text-decoration: underline; text-decoration-color: var(--bt-orange); text-underline-offset: 4px; }
.wp-caption, .gallery-caption { color: var(--bt-muted); font-size: 13px; }
.sticky { outline: 2px solid var(--bt-orange); }
.bypostauthor { display: block; }
.error-404 { padding-block: 120px; text-align: center; }
.error-404 h1 { font-size: clamp(65px,12vw,150px); margin: 0; }

@media (max-width: 980px) {
  .bt-hero-layout { grid-template-columns: 1fr; }
  .bt-hero-copy { max-width: 750px; }
  .bt-hero-visual { min-height: 560px; }
  .episode-grid { grid-template-columns: repeat(2,1fr); }
  .bt-format-layout { gap: 55px; }
  .bt-application { gap: 50px; }
  .bt-packages { grid-template-columns: 1fr; }
  .bt-package { min-height: auto; }
  .bt-package-featured { transform: none; }
  .bt-metrics-grid { grid-template-columns: repeat(2,1fr); }
  .bt-about-hero-layout, .bt-story { gap: 50px; }
  .bt-episode-hero-layout, .bt-episode-notes { gap: 55px; }
}

@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

@media (max-width: 760px) {
  .shell, .alignwide, .bt-content-page > *:not(.alignfull):not(.alignwide),
  .bt-content-page > .alignwide { width: min(100% - 34px, var(--bt-shell)); }
  .section { padding-block: 72px; }
  .site-header { height: 72px; }
  .site-logo { width: 55px; height: 55px; }
  .menu-toggle { display: block; }
  .site-navigation {
    position: fixed;
    inset: 72px 0 auto;
    padding: 22px 17px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    background: var(--bt-paper);
    border-bottom: 2px solid var(--bt-black);
  }
  .admin-bar .site-navigation { inset: 118px 0 auto; }
  .site-navigation.is-open { display: flex; }
  .primary-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-menu a { display: block; padding: 15px 5px; border-bottom: 1px solid var(--bt-line); font-size: 17px; }
  .primary-menu a::after { display: none; }
  .bt-hero-layout { min-height: 0; padding: 60px 0 80px; gap: 42px; }
  .bt-display, .bt-page-hero h1, .bt-about-hero h1, .bt-sponsor-hero h1 { font-size: clamp(45px,14vw,65px); }
  .bt-hero .bt-button { width: 100%; }
  .bt-hero-visual { min-height: 440px; }
  .bt-logo-frame { width: min(355px,84%); box-shadow: 12px 13px 0 var(--bt-cyan); }
  .bt-timer { right: 0; min-width: 130px; font-size: 29px; }
  .bt-spill { left: 0; }
  .bt-ticker { padding: 11px 12px; transform: none; font-size: 10px; line-height: 1.2; }
  .bt-ticker-list { flex-wrap: wrap; gap: 9px 28px; white-space: normal; }
  .bt-ticker-list span { white-space: nowrap; }
  .bt-ticker-list span + span::before { right: calc(100% + 10px); }
  .bt-section-heading { align-items: flex-start; flex-direction: column; }
  .bt-section-heading-centered { align-items: center; }
  .bt-section-title { font-size: 41px; }
  .episode-grid { grid-template-columns: 1fr; gap: 50px; }
  .episode-art-brand { font-size: 40px; }
  .bt-format-layout { grid-template-columns: 1fr; gap: 65px; padding-block: 72px; }
  .bt-format-art { height: 370px; }
  .bt-path-grid { grid-template-columns: 1fr; }
  .bt-path { min-height: 345px; padding: 29px; }
  .bt-signup-layout { grid-template-columns: 1fr; gap: 35px; }
  .bt-newsletter-form { grid-template-columns: 1fr; }
  .bt-page-hero > .shell { min-height: 375px; }
  .bt-archive-tools { flex-direction: column; }
  .bt-search { width: 100%; min-width: 0; }
  .bt-application { grid-template-columns: 1fr; }
  .bt-application > aside { position: static; }
  .bt-form-panel { padding: 27px 20px; }
  .bt-form-row { grid-template-columns: 1fr; }
  .bt-sponsor-hero .shell { min-height: 570px; padding-block: 70px; }
  .bt-metrics-grid { grid-template-columns: 1fr 1fr; }
  .bt-about-hero-layout { min-height: 500px; grid-template-columns: 1fr; align-content: center; gap: 42px; }
  .bt-about-hero-copy { font-size: 20px; }
  .bt-story { grid-template-columns: 1fr; }
  .bt-host-photo { width: calc(100% - 13px); }
  .bt-values-grid { grid-template-columns: 1fr; }
  .bt-value { padding: 29px 0; }
  .bt-value + .bt-value { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,0.2); }
  .bt-episode-hero-layout, .bt-episode-notes { grid-template-columns: 1fr; }
  .bt-episode-hero h1 { font-size: 47px; }
  .bt-episode-cover { width: calc(100% - 13px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 420px) {
  .bt-display, .bt-page-hero h1, .bt-about-hero h1, .bt-sponsor-hero h1 { font-size: 43px; }
  .bt-hero-visual { min-height: 390px; }
  .bt-timer { top: 5%; font-size: 25px; }
  .bt-spill strong { font-size: 23px; }
  .episode-copy footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .bt-metrics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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