/* =============================================================
   FOUL TERRITORY — stylesheet
   Palette pulled from the logo: deep navy, antique gold, press red,
   aged paper, ink black. Modern chrome, flyer-DNA accents.
   ============================================================= */

:root {
  --navy: #0e1e49;
  --navy-deep: #0a1635;
  --navy-soft: #1a2b58;
  --gold: #c89a3a;
  --gold-bright: #e8b84c;
  --gold-dim: #9c7a2a;
  --red: #b02d28;
  --red-dark: #8a1f1a;
  --paper: #f0e6d1;
  --paper-deep: #e5d6b4;
  --ink: #1c1a16;
  --bg: #faf7f2;
  --bg-alt: #f4efe5;
  --muted: #6d6558;
  --muted-soft: #a39b8c;
  --rule: #d9cfb8;

  --f-display: "Playfair Display", Georgia, serif;
  --f-body: "Libre Baskerville", Georgia, serif;
  --f-ui: "Oswald", "Arial Narrow", sans-serif;

  --maxw: 1200px;
  --shadow-sm: 0 1px 2px rgba(14, 30, 73, 0.08), 0 2px 6px rgba(14, 30, 73, 0.04);
  --shadow-md: 0 4px 12px rgba(14, 30, 73, 0.12), 0 12px 32px rgba(14, 30, 73, 0.08);
  --shadow-lg: 0 8px 24px rgba(14, 30, 73, 0.18), 0 24px 60px rgba(14, 30, 73, 0.12);
}

/* -------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }

/* Newsprint texture — subtle grain used on paper sections */
.paper-bg {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(28,26,22,0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(28,26,22,0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 90%, rgba(28,26,22,0.025) 1px, transparent 1px);
  background-size: 13px 13px, 17px 17px, 23px 23px;
}

/* -------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------- */
.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--gold);
}
.nav-brand img { height: 44px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.nav-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .brand-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
}
.nav-brand .brand-tag {
  font-family: var(--f-ui);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bfb090;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5dcc4;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.nav-featured {
  color: var(--gold-bright);
  font-weight: 600;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-bright);
}

/* -------------------------------------------------------------
   Kicker label — the newsprint-y section tag (§, ¶ etc.)
   ------------------------------------------------------------- */
.kicker {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

/* -------------------------------------------------------------
   Hero (home)
   ------------------------------------------------------------- */
.hero {
  background: var(--navy);
  color: var(--bg);
  padding: 64px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(232,184,76,0.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(176,45,40,0.08), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.hero .kicker {
  color: var(--gold-bright);
}
.hero .kicker::before { background: var(--gold-bright); }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 16px 0 10px;
  color: #f5ecd2;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.hero-sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: #d8cbae;
  max-width: 640px;
  margin: 0;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--f-ui);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #bfb090;
}
.hero-meta span strong {
  color: var(--gold-bright);
  font-weight: 500;
}

/* deckle / newsprint edge below hero */
.deckle {
  height: 18px;
  background:
    linear-gradient(var(--navy) 50%, transparent 50%),
    repeating-linear-gradient(90deg, var(--paper) 0 8px, var(--paper-deep) 8px 16px);
  background-size: 100% 18px, 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
.deckle::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--gold);
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
}

/* -------------------------------------------------------------
   Latest section — two-card grid
   ------------------------------------------------------------- */
.latest {
  padding: 72px 24px 96px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.latest-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.latest-head h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  margin: 10px 0 0;
  color: var(--ink);
}
.latest-head .hash {
  font-family: var(--f-ui);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.card .card-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
}
.card .card-head .kicker { color: var(--navy); }
.card .card-head .kicker::before { background: var(--navy); }
.card .card-head .tag {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.flyer-card .flyer-preview {
  cursor: zoom-in;
  background: var(--paper);
  padding: 28px;
  display: flex;
  justify-content: center;
  position: relative;
}
.flyer-card .flyer-preview img {
  max-height: 520px;
  width: auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.flyer-card .flyer-preview:hover img { transform: scale(1.015); }
.flyer-card .flyer-preview::after {
  content: "CLICK TO ENLARGE";
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 6px 10px;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 500;
}

.flyer-card .card-foot,
.episode-card .card-foot {
  padding: 20px 22px 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.episode-card .episode-body {
  padding: 28px 26px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.episode-card .ep-num {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.episode-card h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--ink);
}
.episode-card .ep-sub {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 22px;
  line-height: 1.5;
}
.episode-card .ep-blurb {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.65;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.episode-card .ep-meta {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  gap: 18px;
  font-family: var(--f-ui);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  border-top: 1px dashed var(--rule);
}

.episode-card.coming-soon .episode-body {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.episode-card.coming-soon .cs-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 44px;
  color: var(--navy);
  margin: 8px 0;
}
.episode-card.coming-soon .cs-sub {
  color: var(--muted);
  font-style: italic;
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--gold-bright);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--gold-bright); }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn[disabled],
.btn.disabled {
  background: #e5e0d4;
  border-color: #cfc7b5;
  color: #9a9284;
  cursor: not-allowed;
  pointer-events: none;
}
.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   Archive page
   ------------------------------------------------------------- */
.archive-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.archive-wrap .page-head {
  margin-bottom: 40px;
  border-bottom: 4px double var(--navy);
  padding-bottom: 24px;
}
.archive-wrap .page-head h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 12px 0 6px;
  letter-spacing: -0.01em;
}
.archive-wrap .page-head p {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}

.ep-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s ease;
}
.ep-row:hover { background: var(--bg-alt); }
.ep-row .ep-number {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}
.ep-row .ep-meta-block {
  min-width: 0;
}
.ep-row .ep-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.15;
}
.ep-row .ep-subrow {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--f-ui);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.ep-row .ep-progress {
  color: var(--red);
  font-weight: 500;
}
.ep-row .ep-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ep-row .btn-sm {
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

@media (max-width: 720px) {
  .ep-row {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .ep-row .ep-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* -------------------------------------------------------------
   Merch page
   ------------------------------------------------------------- */
.merch-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.merch-wrap .page-head {
  margin-bottom: 48px;
  text-align: center;
  border-bottom: 4px double var(--navy);
  padding-bottom: 32px;
}
.merch-wrap .page-head .kicker {
  justify-content: center;
}
.merch-wrap .page-head h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 12px 0 6px;
}
.merch-wrap .page-head p {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--muted);
  margin: 6px auto 0;
  font-size: 17px;
  max-width: 600px;
}
.merch-wrap .page-head p.subhead-sub {
  font-size: 15px;
  margin-top: 4px;
}
.merch-wrap .page-head p.subhead-sub-2 {
  font-size: 13px;
  margin-top: 4px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.product {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.product .product-img {
  aspect-ratio: 1 / 1;
  /* Match the cream/parchment of the supplied product photography
     so there is no visible seam between image and card field. */
  background: #f7e9cf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.product .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product:hover .product-img img { transform: scale(1.02); }

/* SVG fallback icons for placeholder slots */
.product .product-img svg {
  width: 58%;
  height: 58%;
  opacity: 0.55;
}

/* "Photography Pending" treatment on placeholder cards */
.product-img-placeholder {
  flex-direction: column;
  gap: 14px;
}
.pending-label {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 12px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.6);
}

.product .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 5px 10px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.product .badge.gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.product-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-body .p-cat {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 2px;
}
.product-body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 21px;
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.product-body .p-desc {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 6px 0 14px;
  flex: 1;
}

.product-body .p-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.product-body .p-price {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.product-body .p-footer .btn {
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* -------------------------------------------------------------
   Modal (flyer enlarge)
   ------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 53, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 32px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modal.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}
.modal img {
  max-width: 100%;
  max-height: 90vh;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 48px;
  height: 48px;
  font-size: 24px;
  font-family: var(--f-ui);
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--gold); color: var(--navy-deep); }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: #bfb090;
  padding: 40px 24px 24px;
  border-top: 4px solid var(--gold);
  margin-top: auto;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-tag {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 20px;
  margin: 0;
}
.footer-line {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8d8168;
}
.footer-line em {
  font-style: normal;
  color: var(--gold);
}

/* -------------------------------------------------------------
   Page entrance animation — staggered
   ------------------------------------------------------------- */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 0.55s ease forwards;
}
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.18s; }
.stagger > *:nth-child(3) { animation-delay: 0.30s; }
.stagger > *:nth-child(4) { animation-delay: 0.40s; }
.stagger > *:nth-child(5) { animation-delay: 0.50s; }
.stagger > *:nth-child(6) { animation-delay: 0.58s; }

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .stagger > * { opacity: 1; transform: none; animation: none; }
  * { transition: none !important; }
}

/* -------------------------------------------------------------
   Flex layout for sticky footer
   ------------------------------------------------------------- */
html, body { min-height: 100%; }
body { display: flex; flex-direction: column; }
main { flex: 1; }

/* =============================================================
   MOBILE + CROSS-BROWSER REFINEMENTS
   Added after initial build — fixes mobile nav overflow, touch
   targets, and iOS/Safari quirks.
   ============================================================= */

/* iOS Safari: honor safe areas on notched devices (doesn't hurt others) */
.site-header { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
.site-footer { padding-left: calc(24px + env(safe-area-inset-left)); padding-right: calc(24px + env(safe-area-inset-right)); }

/* Nav becomes a tighter two-row layout on phones so 3 links always fit */
@media (max-width: 640px) {
  .nav {
    padding: 10px 16px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .nav-brand { gap: 10px; }
  .nav-brand img { height: 38px; }
  .nav-brand .brand-name { font-size: 18px; }
  .nav-brand .brand-tag { display: none; } /* tagline lives in the footer on mobile */
  .nav-links {
    gap: 22px;
    width: 100%;
    justify-content: center;
    padding-top: 2px;
  }
  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 8px 0; /* bigger tap surface */
  }
}

/* Extra tightness for the smallest phones */
@media (max-width: 360px) {
  .nav-links { gap: 16px; }
  .nav-brand img { height: 34px; }
  .nav-brand .brand-name { font-size: 16px; }
}

/* Mobile hero padding / meta spacing */
@media (max-width: 640px) {
  .hero { padding: 44px 20px 52px; }
  .latest { padding: 48px 20px 64px; }
  .archive-wrap,
  .merch-wrap { padding: 44px 20px 64px; }
  .hero-meta { gap: 14px 20px; font-size: 11px; }
  .latest-head { align-items: flex-start; }
  .latest-head .hash { display: none; }
}

/* Touch targets — enforce min 44px tap height on coarse pointers (phones/tablets) */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; padding: 10px 14px; font-size: 11px; }
  /* Disable hover transforms on touch devices so tapping doesn't leave lifted state */
  .card:hover,
  .product:hover { transform: none; }
  .flyer-card .flyer-preview:hover img { transform: none; }
}

/* Archive action buttons wrap cleaner on phones */
@media (max-width: 480px) {
  .ep-row .ep-actions { gap: 6px; }
  .ep-row .btn-sm { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .ep-row .ep-number { font-size: 30px; }
}

/* Merch grid on tight phones — single column at ~360px */
@media (max-width: 400px) {
  .merch-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* Modal sizing on phones: keep close button reachable with thumb */
@media (max-width: 640px) {
  .modal { padding: 16px; }
  .modal-close {
    width: 44px;
    height: 44px;
    top: 12px;
    right: 12px;
  }
  .modal img { max-height: 84vh; }
}

/* iOS Safari: prevent iOS's automatic text-size adjustment (which blows up some font sizes) */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Long-press / callout behavior — let links work normally, don't show iOS "Copy" popup on the FT logo */
.nav-brand { -webkit-touch-callout: none; }

/* Ensure no accidental horizontal scroll anywhere */
html, body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}

/* =============================================================
   HOME PAGE — V2 (logo-forward + hosts)
   Added for the pivoted home. Earlier ".latest" etc. still exist
   in the stylesheet but are simply unused by the new index.html.
   ============================================================= */

/* Hero — logo-forward variant */
.hero-logo {
  padding: 72px 24px 64px;
  text-align: center;
}
.hero-logo .hero-inner { text-align: center; max-width: 820px; }

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.hero-logo-wrap::before {
  /* stadium-lights glow behind the logo */
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(232,184,76,0.18) 0%, rgba(232,184,76,0.06) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-logo-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.45)) drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

.hero-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--gold-bright);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.hero-subhead {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.5vw, 18px);
  color: #d8cbae;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-subhead strong { color: #f5ecd2; font-weight: 700; }

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ghost button variant for dark backgrounds */
.btn-ghost-light {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-ghost-light:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* --- About / promotional section --------------------------------------- */
.about-show {
  padding: 72px 24px 64px;
  background: var(--bg);
  position: relative;
}
.about-show::before {
  /* faint paper texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(28,26,22,0.025) 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(28,26,22,0.02) 1px, transparent 1px);
  background-size: 18px 18px, 22px 22px;
  pointer-events: none;
}
.about-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-head {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  margin: 14px 0 32px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.about-head em {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}

.about-body p {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 20px;
}
.about-body strong { color: var(--navy-deep); }
.about-meta {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 28px !important;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.about-pullquote {
  position: relative;
  margin: 36px 0 36px 0;
  padding: 28px 32px 20px 52px;
  background: var(--paper);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.about-pullquote .pq-mark {
  position: absolute;
  left: 14px;
  top: 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 96px;
  color: var(--gold);
  line-height: 1;
}
.about-pullquote .pq-mark-close {
  left: auto;
  right: 14px;
  top: auto;
  bottom: -22px;
}
.about-pullquote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 12px;
}
.about-pullquote .pq-attrib {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Hosts section ---------------------------------------------------- */
.hosts {
  background: var(--navy);
  padding: 80px 24px 96px;
  color: var(--bg);
  position: relative;
}
.hosts::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(232,184,76,0.07), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(176,45,40,0.05), transparent 60%);
  pointer-events: none;
}
.hosts-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.hosts-head {
  text-align: center;
  margin-bottom: 48px;
}
.hosts-head .kicker {
  color: var(--gold-bright);
  justify-content: center;
}
.hosts-head .kicker::before { background: var(--gold-bright); }
.hosts-head h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  margin: 12px 0 0;
  color: #f5ecd2;
  letter-spacing: -0.01em;
}

.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) { .host-grid { grid-template-columns: 1fr; gap: 28px; } }

.host-card {
  background: linear-gradient(180deg, #132656 0%, #0a1635 100%);
  border: 1px solid rgba(232, 184, 76, 0.28);
  padding: 32px 32px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.host-card::before {
  /* corner flourish */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
}

.host-portrait {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.host-avatar {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));
}

.host-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(232, 184, 76, 0.25);
  margin-bottom: 22px;
}
.host-initial {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.85;
  color: var(--gold-bright);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 48px;
  text-align: center;
}
.host-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-bright);
  background: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}
.host-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.host-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 30px);
  color: #f5ecd2;
  margin: 0 0 4px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.host-role {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.host-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 184, 76, 0.25);
  background: rgba(10, 22, 53, 0.5);
}
.stat-tile {
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(232, 184, 76, 0.18);
}
.stat-tile:last-child { border-right: none; }
.stat-val {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--gold-bright);
  line-height: 1;
}
.stat-val sup {
  font-size: 0.55em;
  vertical-align: super;
}
.stat-lbl {
  display: block;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bfb090;
  margin-top: 6px;
  line-height: 1.35;
}

.host-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.host-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(232, 184, 76, 0.15);
  font-family: var(--f-body);
  font-size: 14px;
}
.host-facts li:last-child { border-bottom: none; }
.host-facts li span {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a8e70;
  flex-shrink: 0;
}
.host-facts li b {
  color: #f0e6d1;
  font-weight: 700;
  text-align: right;
  font-family: var(--f-body);
  font-size: 14px;
}

.host-bio {
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: #d8cbae;
  margin: 0 0 14px;
}
.host-bio em { color: var(--gold-bright); font-style: italic; }

.host-quote {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(232, 184, 76, 0.08);
  border-left: 3px solid var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: #f5ecd2;
  line-height: 1.5;
}

/* Mobile refinements for hosts */
@media (max-width: 640px) {
  .about-show { padding: 48px 20px 44px; }
  .hosts { padding: 56px 16px 68px; }
  .host-card { padding: 24px 20px 28px; }
  .host-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-tile { padding: 12px 4px; }
  .stat-val { font-size: 26px; }
  .stat-lbl { font-size: 9px; letter-spacing: 0.14em; }
  .host-name-row { gap: 12px; }
  .host-initial { font-size: 48px; min-width: 36px; }
  .host-bubble { width: 44px; height: 44px; }
  .about-pullquote { padding: 24px 20px 16px 40px; }
  .about-pullquote .pq-mark { font-size: 72px; left: 10px; }
}
