/* =========================================================================
   BIGGG T — main.css
   Site-wide styles, shared across all pages.
   Order: reset > variables > typography > layout > header > buttons >
          cards > forms > footer > utilities > media queries
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. RESET & BOX-SIZING
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input {
  font: inherit;
}

/* -------------------------------------------------------------------------
   2. ROOT VARIABLES
   ------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg: #000000;
  --color-bg-elevated: #0a0a0a;   /* cards, footer */
  --color-text: #ffffff;
  --color-accent: #c8102e;        /* cracked-glass red from the book cover */
  --color-accent-bright: #e23a2e; /* hover / active red */
  --color-muted: #a1a1aa;
  --color-border: #27272a;

  /* Fonts */
  --font-heading: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;

  /* Spacing scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Effects */
  --radius: 4px;
  --transition: 0.18s ease;
}

/* -------------------------------------------------------------------------
   3. BASE TYPOGRAPHY
   ------------------------------------------------------------------------- */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400; /* Anton is a single-weight display face */
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.02em;
}

p {
  color: var(--color-text);
}

strong {
  font-weight: 700;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-accent-bright);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--spacing-md);
}

.section {
  padding-block: var(--spacing-lg);
}

/* Small red kicker label used above headings across the site */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-accent);
}

.eyebrow.centered {
  justify-content: center;
}

.text-muted {
  color: var(--color-muted);
}

.accent {
  color: var(--color-accent);
}

/* -------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: color var(--transition);
}

.nav-logo:hover {
  color: var(--color-accent-bright);
}

/* Header logo as an image (footer keeps the text logo). */
.nav-logo--img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.nav-logo--img img {
  height: 46px;
  width: auto;
  transition: opacity var(--transition);
}

.nav-logo--img:hover img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.nav-toggle .bar {
  position: relative;
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  transition: background var(--transition);
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition);
}

.nav-toggle .bar::before { top: -8px; }
.nav-toggle .bar::after  { top: 8px; }

/* Open state: X icon + colored bars */
.nav-toggle[aria-expanded="true"] .bar {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .bar::before {
  transform: translateY(8px) rotate(45deg);
  background: var(--color-accent);
}
.nav-toggle[aria-expanded="true"] .bar::after {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--color-accent);
}

/* -------------------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  line-height: 1;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition),
    border-color var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-bright);
  border-color: var(--color-accent-bright);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* -------------------------------------------------------------------------
   7. CARDS
   ------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--spacing-md);
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.card:hover {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.4),
    0 12px 40px -12px rgba(200, 16, 46, 0.55);
  transform: translateY(-4px);
}

.card-icon {
  width: 46px;
  height: 46px;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.card .btn {
  align-self: flex-start;
}

/* -------------------------------------------------------------------------
   8. FORMS
   ------------------------------------------------------------------------- */
.signup-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 540px;
  margin-inline: auto;
  margin-top: var(--spacing-md);
}

.signup-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  padding: 1rem 1.1rem;
  transition: border-color var(--transition);
}

.signup-form input[type="email"]::placeholder {
  color: var(--color-muted);
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Wrapper for the MailerLite embed so we can constrain and center it */
.ml-embed-wrap {
  max-width: 540px;
  margin-inline: auto;
  margin-top: var(--spacing-md);
}

.form-confirmation {
  margin-top: var(--spacing-md);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--color-accent);
}

/* -------------------------------------------------------------------------
   9. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-accent);
  padding-block: var(--spacing-lg) var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

/* Footer logo as an image, smaller than the header treatment. */
.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 0.85rem;
  transition: opacity var(--transition);
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-brand .tagline {
  color: var(--color-muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer-brand .copyright {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--color-text);
  font-size: 0.98rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  transition: border-color var(--transition), color var(--transition),
    transform var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* -------------------------------------------------------------------------
   10. PAGE-SPECIFIC SECTIONS (homepage)
   ------------------------------------------------------------------------- */

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.hero h1 {
  /* Sized to break into two lines on desktop (>=1024px) and keep the
     sub-headline + CTAs above the fold. Three lines is fine on mobile.
     max-width is in em so the characters-per-line stay consistent as the
     clamped font-size scales; ~14em breaks cleanly after "...YOUR HEAD,". */
  max-width: 14em;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
}

.hero .hero-sub {
  /* Longer sub-headline: widen the measure, trim the size and leading a
     touch, and use a tighter top margin so the whole hero stays within
     100vh on desktop with the tagline, headline, and both CTAs visible. */
  max-width: 62ch;
  color: var(--color-muted);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.6;
  margin-top: var(--spacing-sm);
}

.hero .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* Animated scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  color: var(--color-muted);
  animation: bounce 1.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 26px;
  height: 26px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* Intro / who is Biggg T */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.intro-photo img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.intro-copy h2 {
  margin-bottom: var(--spacing-md);
}

.intro-copy p + p {
  margin-top: var(--spacing-sm);
}

.intro-copy p {
  color: var(--color-muted);
}

.intro-copy p:first-of-type {
  color: var(--color-text);
}

/* Section heading block (centered) */
.section-head {
  text-align: center;
  max-width: 40ch;
  margin-inline: auto;
}

/* Email signup band */
.signup-band {
  border-block: 1px solid rgba(200, 16, 46, 0.45);
  text-align: center;
}

.signup-band .signup-sub {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--color-muted);
  margin-top: var(--spacing-sm);
}

/* About preview */
.about-preview {
  border-top: 1px solid var(--color-border);
}

.about-preview .about-copy {
  max-width: 60ch;
}

.about-preview p {
  color: var(--color-muted);
}

.about-preview p + p {
  margin-top: var(--spacing-sm);
}

.about-preview .btn {
  margin-top: var(--spacing-md);
}

/* -------------------------------------------------------------------------
   11. UTILITY CLASSES
   ------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.no-scroll {
  overflow: hidden;
}

/* -------------------------------------------------------------------------
   12. MEDIA QUERIES
   ------------------------------------------------------------------------- */

/* Mobile nav overlay (below 768px) */
@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
    z-index: 110;
  }

  .nav-logo--img img {
    height: 38px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-md);
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 105;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
  }
}

/* Tablet and up (768px+) */
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid {
    grid-template-columns: 0.85fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--spacing-md);
  }
}

/* Desktop and up (1024px+) */
@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
  }

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================================
   BOOK PAGE (book.html)
   Extends the shared design system above. No variables redefined.
   ========================================================================= */

/* ---- Section 2: hero with cover + buy buttons ---- */
.book-hero {
  padding-block: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.book-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.book-cover {
  max-width: 300px;
  margin-inline: auto;
}

.book-cover img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 55px -20px rgba(0, 0, 0, 0.85),
    0 0 0 1px var(--color-border);
}

.book-hero h1 {
  /* Scoped down from the global display h1 so the title reads well beside
     the cover instead of overpowering the column. */
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-top: var(--spacing-xs);
}

.book-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.4;
  color: var(--color-text);
  margin-top: var(--spacing-sm);
}

.book-author {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-top: 0.65rem;
}

.book-pitch {
  color: var(--color-text);
  margin-top: var(--spacing-md);
  max-width: 56ch;
}

/* Buy buttons: vertical stack, each with a small format/price note. */
.buy-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  max-width: 420px;
}

.buy-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.buy-note {
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

/* Pending formats: shown, styled inactive, no navigation. */
.btn-pending {
  background: var(--color-border);
  border-color: var(--color-border);
  color: var(--color-muted);
  cursor: not-allowed;
}

.btn-pending:hover {
  background: var(--color-border);
  border-color: var(--color-border);
  color: var(--color-muted);
  transform: none;
}

.buy-footnote {
  margin-top: var(--spacing-md);
  max-width: 46ch;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ---- Section 3: back-cover copy, constrained reading width ---- */
.prose {
  max-width: 700px;
  margin-inline: auto;
}

.prose .eyebrow,
.prose h2 {
  text-align: center;
}

.prose h2 {
  margin-bottom: var(--spacing-md);
}

.prose p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-top: var(--spacing-md);
}

.prose p:first-of-type {
  margin-top: 0;
}

.book-evict {
  text-align: center;
  color: var(--color-accent);
  margin-top: var(--spacing-lg);
}

/* ---- Section 5: reviews placeholder ---- */
.reviews {
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.reviews .section-head {
  max-width: 46ch;
}

.reviews .reviews-sub {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--color-muted);
  margin-top: var(--spacing-sm);
}

.reviews .btn {
  margin-top: var(--spacing-lg);
}

/* Placeholder for future review cards. Add .review-card blocks inside. */
.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* ---- Book page: tablet and up ---- */
@media (min-width: 768px) {
  .book-hero-grid {
    grid-template-columns: 360px 1fr;
    gap: var(--spacing-xl);
    align-items: center;
  }

  .book-cover {
    max-width: 360px;
    margin-inline: 0;
  }

  .reviews-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Book page: desktop and up ---- */
@media (min-width: 1024px) {
  .book-cover {
    max-width: 400px;
  }
}

/* =========================================================================
   COACHING PAGE (coaching.html)
   Extends the shared design system above. No variables redefined.
   ========================================================================= */

/* ---- Shared helpers used across this page ---- */

/* Comfortable reading column for long-form sections. */
.measure {
  max-width: 68ch;
}

/* Plain body copy. Scoped off classed paragraphs (.lead, .price, .statement,
   and friends) so each of those can own its color and spacing outright
   instead of fighting a type-selector specificity war with !important. */
.measure > p:not([class]) {
  color: var(--color-muted);
  margin-top: var(--spacing-md);
}

/* First paragraph after a heading carries full contrast. */
.measure > p.lead {
  color: var(--color-text);
  font-size: 1.05rem;
  margin-top: var(--spacing-md);
}

/* Mid-section sub-heading, body face rather than Anton so it reads as a
   step down from the h2 without competing with it. */
.subhead {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.35;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-text);
  margin-top: var(--spacing-lg);
}

/* Section-ending line: full contrast, slightly larger. */
.closing-note {
  color: var(--color-text);
  font-size: 1.05rem;
  margin-top: var(--spacing-md);
}

/* Thin top border to separate a section from the one above it. */
.section--divided {
  border-top: 1px solid var(--color-border);
}

/* Decorative accent rule below the hero CTA. */
.accent-rule {
  width: 120px;
  height: 3px;
  margin-top: var(--spacing-lg);
  background: linear-gradient(90deg, var(--color-accent), rgba(200, 16, 46, 0));
}

/* ---- Section 2: hero ----
   Shared by the coaching page (.coach-hero) and the interior pages that came
   after it (.page-hero). Same treatment under both names so the coaching page
   markup did not have to change when the pattern was generalized. */
.coach-hero,
.page-hero {
  padding-block: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.coach-hero h1,
.page-hero h1 {
  max-width: 22em;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
}

.coach-hero-sub,
.page-hero-sub {
  max-width: 60ch;
  color: var(--color-text);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  margin-top: var(--spacing-md);
}

.coach-hero .btn-row,
.page-hero .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* ---- Section 3: who this is for ---- */
.fit-list {
  margin-top: var(--spacing-md);
}

.fit-list li {
  position: relative;
  padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.fit-list li:first-child {
  border-top: 1px solid var(--color-border);
}

/* Red tick standing in for a bullet. */
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--spacing-sm) + 0.62em);
  width: 14px;
  height: 2px;
  background: var(--color-accent);
}

/* ---- Section 4: how it works ---- */
.facts-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
}

.facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.facts-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 0.28rem;
  color: var(--color-accent);
}

/* ---- Section 5: what makes this different ---- */
.insight-list {
  counter-reset: insight;
  display: grid;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.insight-list li {
  counter-increment: insight;
  position: relative;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 4.25rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
}

.insight-list li::before {
  content: counter(insight);
  position: absolute;
  left: var(--spacing-md);
  top: calc(var(--spacing-md) - 0.35rem);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-accent);
}

/* ---- Section 6: the investment ---- */
.price {
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-size: clamp(2.25rem, 6vw, 4rem);
  color: var(--color-text);
}

.price-figure {
  color: var(--color-accent);
}

.price-terms {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--spacing-sm);
}

/* Payment options for the Bear Hug. */
.pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--spacing-md);
}

.pay-options li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.pay-label {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-accent);
}

.pay-detail {
  color: var(--color-text);
}

/* Red-bordered "not for" block. */
.callout {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  background: rgba(200, 16, 46, 0.06);
}

.callout h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}

.callout ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.callout li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text);
}

.callout li::before {
  content: "\00d7";
  position: absolute;
  left: 0;
  top: -0.05em;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-accent);
}

/* Closing lines: larger than body copy, full contrast. */
.statement {
  color: var(--color-text);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.5;
  margin-top: var(--spacing-md);
}

/* ---- Section 7: The Corner (second program) ----
   Given its own treatment so it reads as a distinct offering rather than a
   continuation of the Bear Hug: red rules top and bottom, a slightly raised
   background, and a red spine down the left of the content column. */
.corner-band {
  background: #0d0d10;
  border-block: 2px solid var(--color-accent);
}

.corner-inner {
  /* Tight inset on phones so the copy keeps its measure inside the container
     padding; widened at the tablet breakpoint below. */
  padding-left: var(--spacing-sm);
  border-left: 3px solid var(--color-accent);
}

/* Includes list: card-like rows with red check marks. */
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: var(--spacing-md);
}

.includes-list li {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 2.85rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--color-text);
}

.includes-list li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.4rem;
  width: 0.5rem;
  height: 0.85rem;
  border: solid var(--color-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* The Corner's price: same family as the Bear Hug figure, set apart with a
   red spine and a tighter scale so the two never read as the same block. */
.price--corner {
  margin-top: var(--spacing-sm);
  padding: 0.5rem 0 0.5rem var(--spacing-sm);
  border-left: 4px solid var(--color-accent);
  font-size: clamp(1.9rem, 5vw, 3.25rem);
}

/* Accent-colored sub-heading, used for "How to start with The Corner:". */
.subhead--accent {
  color: var(--color-accent);
}

/* ---- Section 8: how to start + application form ---- */
.apply-band {
  border-top: 1px solid rgba(200, 16, 46, 0.45);
  background: var(--color-bg-elevated);
  /* Clear the fixed header when the hero CTA jumps to #apply. */
  scroll-margin-top: var(--header-height);
}

.apply-head {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.apply-head p {
  color: var(--color-muted);
  margin-top: var(--spacing-md);
}

/* The form itself. */
.apply-form {
  max-width: 620px;
  margin-inline: auto;
  margin-top: var(--spacing-lg);
}

.apply-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
  border: 0; /* also resets the fieldset variants */
}

.apply-form label,
.apply-form legend {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-text);
}

/* Fieldsets do not participate in the flex layout of their own children in
   every browser, so space the legend manually. */
.apply-form legend {
  margin-bottom: 0.5rem;
  padding: 0;
}

.apply-form .req {
  color: var(--color-accent);
}

.apply-form .opt,
.apply-form .label-note {
  font-weight: 400;
  color: var(--color-muted);
}

/* Long parenthetical asides inside a label read better on their own line. */
.apply-form .label-note {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
}

.field-help {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-muted);
  margin-top: -0.15rem;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.apply-form textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.6;
}

/* White border on focus, per the page's form spec. */
.apply-form input[type="text"]:focus,
.apply-form input[type="email"]:focus,
.apply-form input[type="tel"]:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px #ffffff;
}

.apply-form select {
  /* Native arrow colors vary on dark backgrounds; draw our own. */
  appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px 18px;
}

.apply-form select option {
  background: var(--color-bg);
  color: var(--color-text);
}

/* Radio groups as tappable rows. */
.choice-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition);
}

.choice:hover {
  border-color: var(--color-muted);
}

.choice input[type="radio"] {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--color-accent);
}

.choice:has(input[type="radio"]:checked) {
  border-color: var(--color-accent);
}

.apply-form button[type="submit"] {
  margin-top: var(--spacing-sm);
  padding-block: 1.15rem;
}

.form-consent {
  margin-top: var(--spacing-sm);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-muted);
  text-align: center;
}

/* ---- Section 9: before you apply (no refunds) ----
   The closing statement of the page. Weightier than the sections above it:
   a full-width red rule across the top, a slightly deeper black, and extra
   vertical air so it reads as a deliberate stop rather than another block. */
.terms-band {
  background: #060608;
  border-top: 2px solid var(--color-accent);
  padding-block: var(--spacing-xl);
}

/* Plain accented text link — no button treatment in this section by design. */
.foundation-link {
  margin-top: var(--spacing-md);
}

.foundation-link a {
  color: var(--color-accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 16, 46, 0.5);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.foundation-link a:hover {
  color: var(--color-accent-bright);
  border-bottom-color: var(--color-accent-bright);
}

/* The closing line carries more air than a mid-section .statement. */
.terms-band .statement {
  margin-top: var(--spacing-lg);
}

/* Honeypot wrapper — hidden from people, present for bots. */
.hidden {
  display: none;
}

/* ---- Coaching page: tablet and up ---- */
@media (min-width: 768px) {
  .corner-inner {
    padding-left: var(--spacing-md);
  }

  .apply-form button[type="submit"] {
    width: auto;
    min-width: 320px;
    margin-inline: auto;
    display: flex;
  }
}

/* =========================================================================
   SPEAKING PAGE (speaking.html)
   Almost entirely built from the shared system above — .page-hero, .measure,
   .subhead, .facts-list, .insight-list, .fit-list, and the .apply-band form
   are all reused. Only the pieces below are new.
   ========================================================================= */

/* Keynote subtitle: sits directly under the h2, lighter than a .subhead. */
.keynote-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text);
  margin-top: var(--spacing-sm);
}

/* Bridge-to-coaching button at the foot of the page. */
.bridge-btn {
  margin-top: var(--spacing-lg);
}

/* =========================================================================
   PODCAST PAGE (podcast.html)
   Launch page for The Biggg T Show. Reuses .measure, .subhead, .includes-list
   and the homepage .signup-band; only the hero and platform row are new.
   ========================================================================= */

/* ---- Section 2: hero with show logo ---- */
.show-hero {
  padding-block: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.show-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

/* Logo is the visual anchor of the page: capped on mobile, given room on
   desktop, and lifted off the black with a soft shadow plus a faint red glow
   picked up from the brand accent. */
.show-logo {
  max-width: 400px;
  margin-inline: auto;
}

.show-logo img {
  width: 100%;
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.9))
          drop-shadow(0 0 26px rgba(200, 16, 46, 0.22));
}

.show-hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  margin-top: var(--spacing-xs);
}

.show-hero-sub {
  max-width: 46ch;
  color: var(--color-text);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  margin-top: var(--spacing-md);
}

.show-hero .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* Small reassurance line directly under the CTA. */
.cta-note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* ---- Section 5: where to listen ----
   Badges are static by design until the show is live — no hover or pointer
   cursor, so nothing reads as clickable before the links exist. */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.platform-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  padding: 1.15rem 1rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--color-text);
}

.platform-badge svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.platform-note {
  margin-top: var(--spacing-md);
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* The signup band doubles as the #notify anchor target on this page, so it
   needs to clear the fixed header when the hero CTA jumps to it. */
.signup-band {
  scroll-margin-top: var(--header-height);
}

/* ---- Podcast page: tablet and up ---- */
@media (min-width: 768px) {
  .show-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

  .show-logo {
    max-width: 100%;
    margin-inline: 0;
  }

  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Podcast page: desktop and up ---- */
@media (min-width: 1024px) {
  .show-logo {
    max-width: 500px;
  }
}

/* =========================================================================
   ABOUT PAGE (about.html)
   The personal page. Same system as everywhere else, but the hero is quieter
   than the commercial pages and the reading column carries most of the work.
   ========================================================================= */

/* ---- Section 2: hero ----
   Deliberately understated: no glow, no overlay, no oversized display type.
   It should read as an introduction, not a headline. */
.about-hero {
  padding-block: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-portrait {
  max-width: 300px;
  margin-inline: auto;
}

.about-portrait img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: var(--spacing-xs);
}

/* "Most people call me Biggg T." — sentence case on purpose, so it reads as
   speech rather than as a second headline. */
.about-hero-sub {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  color: var(--color-text);
  margin-top: var(--spacing-sm);
}

.about-hero-copy p {
  max-width: 52ch;
  color: var(--color-text);
}

.about-hero-copy p + p {
  margin-top: var(--spacing-sm);
}

.about-hero-copy .about-hero-sub + p {
  margin-top: var(--spacing-md);
}

/* ---- Section 5: the family portrait ----
   Wider than the 68ch reading column, so it sits directly in the container
   and is capped at 1000px on the largest screens. */
.family-photo {
  max-width: 1000px;
  margin-inline: auto;
  margin-block: var(--spacing-lg);
}

.family-photo img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.9);
}

/* Named sub-sections inside a section ("Maria.", "My kids."). Sized between
   the global h2 and h3 so they carry real headline weight without competing
   with the section's own h2. Anton + uppercase come from the base h3 rule. */
.name-head {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text);
  margin-top: var(--spacing-lg);
}

/* First paragraph after a name heading sits closer than the default. */
.name-head + .lead {
  margin-top: var(--spacing-md);
}

/* The five kids: name in the display face, age underneath. Sized so the
   family reads as a present, concrete thing rather than a bulleted list. */
.kids-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.kids-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: var(--spacing-sm) 0.75rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius);
  text-align: center;
}

.kid-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
}

.kid-age {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

/* ---- Section 8: where to go from here ---- */
.next-band {
  background: var(--color-bg-elevated);
  border-top: 1px solid rgba(200, 16, 46, 0.45);
}

.next-head {
  max-width: 46ch;
  margin-inline: auto;
  text-align: center;
}

.next-head p {
  color: var(--color-muted);
  margin-top: var(--spacing-md);
}

/* Cards here sit on the elevated band, so drop them back to page black to
   keep the same figure/ground relationship they have on the homepage. */
.next-band .card {
  background: var(--color-bg);
}

.next-foot {
  margin-top: var(--spacing-lg);
  text-align: center;
}

.next-foot p {
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

/* =========================================================================
   CONTACT PAGE (contact.html)
   Reuses .page-hero, .measure, .subhead, .fit-list and the .apply-band form.
   The social row below is the only new piece.
   ========================================================================= */

/* Offered as a real alternative to the form, so these are pill buttons with
   visible labels rather than the footer's bare icon squares. */
.social-big {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.social-big a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.5rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--color-text);
  transition: border-color var(--transition), color var(--transition),
    transform var(--transition);
}

.social-big a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.social-big svg {
  width: 26px;
  height: 26px;
}

/* ---- About page: tablet and up ---- */
@media (min-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 320px 1fr;
    gap: var(--spacing-xl);
  }

  .about-portrait {
    max-width: 320px;
    margin-inline: 0;
  }

  .kids-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---- About page: desktop and up ---- */
@media (min-width: 1024px) {
  .about-portrait {
    max-width: 400px;
  }

  .about-hero-grid {
    grid-template-columns: 400px 1fr;
  }
}
