/*
Theme Name: McAuley Tucker
Theme URI: https://mcauleytucker.com
Author: McAuley Tucker
Description: Full Site Editing block theme for McAuley Tucker — Interviewer, Legacy Strategist, Creative. Pixel-for-pixel identical to the original custom design, fully editable from Appearance → Editor.
Version: 2.9.1
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: mcauley-tucker
Tags: block-theme, full-site-editing, portfolio, podcast, custom-colors, custom-menu, threaded-comments
*/

/* ============================================
   BLOCK-THEME COMPATIBILITY LAYER
   Neutralizes Gutenberg's default wrappers so
   the original class-based styles render exactly
   as they did in the classic PHP templates.
   ============================================ */

/* Reset core group/columns margins that fight our custom sections */
.wp-block-group, .wp-block-columns, .wp-block-column { margin: 0; }

/* Let our .section / .container own full-bleed layout even inside a block */
.wp-site-blocks > main,
.wp-site-blocks .entry-content,
.entry-content > .alignfull { margin: 0; }

/* Core paragraph/heading blocks inherit our typography via elements */
.wp-block-post-content > p:last-child,
.wp-block-post-content > h1:last-child,
.wp-block-post-content > h2:last-child,
.wp-block-post-content > h3:last-child { margin-bottom: 0; }

/* ============================================
   CORE BUTTON BLOCK → .btn STYLE BRIDGE
   When a .btn--primary/--gold/--ghost-light etc.
   class is set on a wp:button, apply the ORIGINAL
   button styles to the <a> inside the wrapper.
   This lets the editor render core buttons visually
   while the front-end matches the original design.
   ============================================ */
/* The outer wrapper div must be invisible — all visual styling is on the <a> inside */
.wp-block-button {
  margin: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 100px !important;
}

/* Base — all button variants share these base styles */
.wp-block-button.btn--primary > .wp-block-button__link,
.wp-block-button.btn--secondary > .wp-block-button__link,
.wp-block-button.btn--ghost > .wp-block-button__link,
.wp-block-button.btn--ghost-light > .wp-block-button__link,
.wp-block-button.btn--gold > .wp-block-button__link,
.wp-block-button.btn--link > .wp-block-button__link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  line-height: 1.2;
}

/* Primary (accent red) */
.wp-block-button.btn--primary > .wp-block-button__link {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}
.wp-block-button.btn--primary > .wp-block-button__link:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-light);
  transform: translateY(-1px);
}

/* Gold */
.wp-block-button.btn--gold > .wp-block-button__link {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
}
.wp-block-button.btn--gold > .wp-block-button__link:hover {
  background-color: #b89540;
  color: var(--color-text-dark);
  transform: translateY(-1px);
}

/* Ghost (dark outline) */
.wp-block-button.btn--ghost > .wp-block-button__link {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 2px solid rgba(26, 26, 26, 0.2);
}
.wp-block-button.btn--ghost > .wp-block-button__link:hover {
  background-color: var(--color-text-dark);
  color: var(--color-text-light);
  border-color: var(--color-text-dark);
}

/* Ghost light (light outline on dark bg) */
.wp-block-button.btn--ghost-light > .wp-block-button__link {
  background-color: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(250, 250, 247, 0.4);
}
.wp-block-button.btn--ghost-light > .wp-block-button__link:hover {
  background-color: rgba(250, 250, 247, 0.1);
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

/* Secondary */
.wp-block-button.btn--secondary > .wp-block-button__link {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.wp-block-button.btn--secondary > .wp-block-button__link:hover {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

/* Link style (text-only with arrow) */
.wp-block-button.btn--link > .wp-block-button__link {
  background: transparent;
  color: var(--color-accent);
  padding: 8px 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-accent);
  border-radius: 0;
}
.wp-block-button.btn--link > .wp-block-button__link:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* Core group block should be transparent to our .section / .container styles */
.wp-block-group.section,
.wp-block-group.container { background: none; }
.wp-block-group.section { padding: 120px 0; }
/* Use the same variables as the standalone .container class — !important so WP layout classes can't override */
.wp-block-group.container {
  padding-left: var(--section-padding-x) !important;
  padding-right: var(--section-padding-x) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--content-max-width) !important;
}

/* Core columns → mirror our .grid classes */
.wp-block-columns.grid { margin: 0; gap: var(--grid-gap, 40px); }
.wp-block-column { flex-grow: 1; }

/* Core heading block — avoid default margin stacking inside our patterns */
.wp-block-heading { margin-top: 0; }

/* Original .btn styles still apply when author uses a plain <a> link */
.wp-block-button .btn { display: inline-block; }

/* Core navigation inside the site header — match our nav-menu look */
.site-header .wp-block-navigation { gap: 32px; }
.site-header .wp-block-navigation__container { gap: 32px; }
.site-header .wp-block-navigation-item__content {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text-primary);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.site-header .wp-block-navigation-item__content:hover { color: var(--color-accent); }
.site-header--transparent .wp-block-navigation-item__content { color: var(--color-text-light); }
.site-header--transparent .wp-block-navigation-item__content:hover { color: #fff; }

/* Admin bar offset — keep header below the WP admin bar when logged in */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ══════════════════════════════════════════════════════════
   HEADER / FOOTER NATIVE BLOCK BRIDGE CSS
   (added when converting header.html + footer.html from
   wp:html to native Gutenberg blocks)
   ══════════════════════════════════════════════════════════ */

/* Site logo rendered as a wp:paragraph inside the header */
p.site-logo { margin: 0; line-height: 1; }
p.site-logo a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}
p.site-logo a:hover { color: var(--color-text-primary); text-decoration: none; }
.site-header--transparent p.site-logo a { color: var(--color-text-light); }
.site-header--transparent p.site-logo a:hover { color: rgba(250,250,247,0.85); }
.site-footer p.site-logo a { color: var(--color-text-light); }
.site-footer p.site-logo a:hover { color: rgba(250,250,247,0.85); }

/* Book-a-Call CTA button in the header */
.wp-block-button.nav-cta { margin-left: 8px; }
.wp-block-button.nav-cta > .wp-block-button__link {
  font-size: 13px !important;
  padding: 10px 24px !important;
}

/* Mobile nav — wp:navigation block bridge */
.mobile-nav .wp-block-navigation { width: 100%; }
.mobile-nav .wp-block-navigation__container {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav .wp-block-navigation-item__content {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 12px 0;
}
.mobile-nav .wp-block-navigation-item__content:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* Footer — column wrapper replaces .footer-inner on the native columns block */
.footer-columns-wrap {
  max-width: var(--content-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--section-padding-x) !important;
  padding-right: var(--section-padding-x) !important;
}
.footer-columns-wrap > .wp-block-columns {
  gap: 60px !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .footer-columns-wrap > .wp-block-columns { gap: 40px !important; }
}

/* Footer tagline (separate class avoids conflict with .footer-brand p) */
.footer-tagline {
  color: rgba(250, 250, 247, 0.6);
  font-size: 15px;
  margin-top: 12px;
  max-width: 320px;
}

/* Footer links / social-links — paragraphs have no margin */
.footer-links p,
.social-links p { margin: 0; }

/* Mobile sticky CTA — wp:button bridge */
@media (max-width: 767px) {
  .mobile-sticky-cta .wp-block-button { width: 100%; }
  .mobile-sticky-cta .wp-block-button__link {
    display: block !important;
    width: 100%;
    font-size: 13px !important;
    padding: 14px 24px !important;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
   BUTTON OVERRIDE SHIELD
   theme.json "elements.button" is intentionally neutralised
   (background:transparent / padding:0) so WordPress does NOT
   generate competing accent-colour rules for .wp-element-button.
   The rules below are the single source of truth for every button
   variant. !important is used only to guard against any residual
   WP global-style injection that arrives after style.css.
   ══════════════════════════════════════════════════════════ */

/* Kill browser focus ring on all custom buttons; enforce pill shape + smooth transitions */
.wp-block-button.btn--primary > .wp-block-button__link,
.wp-block-button.btn--secondary > .wp-block-button__link,
.wp-block-button.btn--ghost > .wp-block-button__link,
.wp-block-button.btn--ghost-light > .wp-block-button__link,
.wp-block-button.btn--gold > .wp-block-button__link,
.wp-block-button.btn--link > .wp-block-button__link {
  outline: none !important;
  border-radius: 100px !important;
  transition: all 0.3s ease !important;
}

/* Primary — accent red */
.wp-block-button.btn--primary > .wp-block-button__link {
  background-color: var(--color-accent) !important;
  color: var(--color-text-light) !important;
  border: none !important;
}
.wp-block-button.btn--primary > .wp-block-button__link:hover {
  background-color: var(--color-accent-hover) !important;
  color: var(--color-text-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(139, 35, 50, 0.35) !important;
}

/* Secondary — accent outline */
.wp-block-button.btn--secondary > .wp-block-button__link {
  background-color: transparent !important;
  color: var(--color-accent) !important;
  border: 2px solid var(--color-accent) !important;
}
.wp-block-button.btn--secondary > .wp-block-button__link:hover {
  background-color: var(--color-accent) !important;
  color: var(--color-text-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(139, 35, 50, 0.3) !important;
}

/* Ghost — dark outline on light background */
.wp-block-button.btn--ghost > .wp-block-button__link {
  background-color: transparent !important;
  color: var(--color-text-dark) !important;
  border: 2px solid rgba(26,26,26,0.2) !important;
}
.wp-block-button.btn--ghost > .wp-block-button__link:hover {
  background-color: var(--color-text-dark) !important;
  color: var(--color-text-light) !important;
  border-color: var(--color-text-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
}

/* Ghost light — light outline on dark background */
.wp-block-button.btn--ghost-light > .wp-block-button__link {
  background-color: transparent !important;
  color: var(--color-text-light) !important;
  border: 2px solid rgba(250,250,247,0.4) !important;
}
.wp-block-button.btn--ghost-light > .wp-block-button__link:hover {
  background-color: rgba(250,250,247,0.12) !important;
  border-color: rgba(250,250,247,0.8) !important;
  color: var(--color-text-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Gold */
.wp-block-button.btn--gold > .wp-block-button__link {
  background-color: var(--color-gold) !important;
  color: #1A1A1A !important;
  border: none !important;
}
.wp-block-button.btn--gold > .wp-block-button__link:hover {
  background-color: #b89540 !important;
  color: #1A1A1A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4) !important;
}

/* ══════════════════════════════════════════════════════════
   EQUAL-HEIGHT CARDS
   Makes all columns inside .grid--3 and .grid--2 stretch to
   the same height so card boxes align at the bottom edge.
   All !important guards against WP inline/global style overrides.
   ══════════════════════════════════════════════════════════ */
.wp-block-columns.grid--3,
.wp-block-columns.grid--2 {
  align-items: stretch !important;
}

.wp-block-columns.grid--3 > .wp-block-column,
.wp-block-columns.grid--2 > .wp-block-column {
  display: flex !important;
  flex-direction: column !important;
}

/* The direct child group (card) fills the full column height */
.wp-block-columns.grid--3 > .wp-block-column > .wp-block-group,
.wp-block-columns.grid--2 > .wp-block-column > .wp-block-group {
  flex: 1 1 auto !important;
  /* Also make it a flex column so inner content can use flex layout */
  display: flex !important;
  flex-direction: column !important;
}

/* ══════════════════════════════════════════════════════════
   HEADER LOGO POSITION FIX
   The .header-inner max-width container is declared in the
   original stylesheet. This bridge rule ensures the
   Gutenberg-generated flex wrapper does not override it.
   ══════════════════════════════════════════════════════════ */
.site-header .wp-block-group.header-inner {
  max-width: var(--content-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--section-padding-x) !important;
  padding-right: var(--section-padding-x) !important;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================
   ORIGINAL THEME STYLESHEET (unchanged below)
   ============================================ */

/* ============================================
   MCAULEYTUCKER.COM — GLOBAL STYLESHEET
   ============================================ */

/* ---------- CSS RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: #1A1A1A !important;
  background-color: #FAFAF7 !important;
  overflow-x: hidden;
}

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

a {
  color: #8B2332;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #6E1B28;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Colors */
  --color-bg-light: #FAFAF7;
  --color-bg-dark: #0D0D0D;
  --color-bg-warm: #F2EDE4;
  --color-text-primary: #1A1A1A;
  --color-text-dark: #1A1A1A;   /* alias — used in button ghost styles */
  --color-text-light: #FAFAF7;
  --color-text-secondary: #6B6B6B;
  --color-accent: #8B2332;
  --color-accent-hover: #6E1B28;
  --color-gold: #C9A84C;
  --color-border-light: rgba(250, 250, 247, 0.1);
  --color-border-dark: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-quote: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-padding-y: 100px;
  --section-padding-x: 40px;
  --content-max-width: 1140px;
  --content-narrow: 780px;
  --content-medium: 900px;
  --card-padding: 40px;
  --card-radius: 8px;
  --grid-gap: 32px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--color-text-primary);
}

h1 {
  font-size: 52px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 42px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-text-primary);
}

p {
  margin-bottom: 24px;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow--gold {
  color: var(--color-gold);
}

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

blockquote, .testimonial-quote {
  font-family: var(--font-quote);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
}

.meta-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  letter-spacing: 0.3px;
}

.small-text {
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--medium {
  max-width: var(--content-medium);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

/* ---------- SECTION HEADER ---------- */
/* Used in patterns to introduce a section with eyebrow + heading + subcopy */
.section-header {
  margin-bottom: 48px;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

/* Two-column section header: heading left, CTA/link right */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Supporting copy beneath a section heading */
.section-subcopy {
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin-top: 12px;
  margin-bottom: 0;
}

.section--dark {
  background-color: var(--color-bg-dark) !important;
  color: var(--color-text-light) !important;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-light) !important;
}

.section--dark p {
  color: rgba(250, 250, 247, 0.85) !important;
}

.section--warm {
  background-color: var(--color-bg-warm) !important;
}

.section--light {
  background-color: var(--color-bg-light) !important;
}

/* Alias for warm — used in the All Episodes archive section */
.section--cream {
  background-color: var(--color-bg-warm) !important;
}

/* Tight variant — reduced vertical padding (used in platform bars) */
.section--tight {
  padding-top: 48px;
  padding-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ---------- GRID SYSTEM ---------- */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid--2 {
  grid-template-columns: 1fr 1fr;
}

.grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid--60-40 {
  grid-template-columns: 58fr 42fr;
}

.grid--40-60 {
  grid-template-columns: 42fr 58fr;
}

.grid--45-55 {
  grid-template-columns: 45fr 55fr;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 35, 50, 0.35);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 35, 50, 0.3);
}

.btn--ghost-light {
  background-color: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(250, 250, 247, 0.4);
}

.btn--ghost-light:hover {
  background-color: rgba(250, 250, 247, 0.12);
  border-color: rgba(250, 250, 247, 0.8);
  color: var(--color-text-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- CARDS ---------- */
.card {
  background: var(--color-bg-warm);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card--dark {
  background: rgba(250, 250, 247, 0.06);
  border: 1px solid var(--color-border-light);
}

.card--dark h3,
.card--dark h4 {
  color: var(--color-text-light);
}

.card--dark p {
  color: rgba(250, 250, 247, 0.75);
}

/* Light variant — near-white, used on warm/cream section backgrounds */
.card--light {
  background: var(--color-bg-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.card--white {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-dark);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header--transparent {
  background-color: transparent;
  border-bottom: none;
}

.site-header--transparent .nav-link {
  color: var(--color-text-light);
}

.site-header--transparent .site-logo {
  color: var(--color-text-light);
}

.header-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.site-logo:hover {
  text-decoration: none;
  color: var(--color-text-primary);
}

.site-header--transparent .site-logo:hover {
  color: var(--color-text-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text-primary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-link--active {
  color: var(--color-accent);
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
}

.nav-cta {
  font-size: 13px;
  padding: 10px 24px;
  margin-left: 8px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.site-header--transparent .hamburger span {
  background-color: var(--color-text-light);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg-light);
  padding: 40px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav .nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: var(--color-bg-dark) !important;
  padding: 60px 0 40px;
}

.footer-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand p {
  color: rgba(250, 250, 247, 0.6);
  font-size: 15px;
  margin-top: 12px;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(250, 250, 247, 0.6);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-text-light);
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--content-max-width) !important;
  margin: 48px auto 0 !important;
  padding: 32px var(--section-padding-x) 0 !important;
  border-top: 1px solid rgba(250, 250, 247, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(250, 250, 247, 0.35);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: rgba(250, 250, 247, 0.5);
  font-size: 18px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--color-text-light);
  text-decoration: none;
}

/* ---------- GOLD SEPARATOR ---------- */
.gold-separator {
  width: 60px;
  height: 1px;
  background-color: rgba(201, 168, 76, 0.4);
  border: none;
  margin: 48px 0;
}

/* ---------- METRICS BAR ---------- */
.metrics-bar {
  background-color: var(--color-accent);
  padding: 44px 0;
}

.metrics-bar .grid {
  text-align: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.metric-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(250, 250, 247, 0.8);
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.testimonial-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ---------- EPISODE CARD ---------- */
.episode-card {
  background: var(--color-bg-warm);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.episode-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Shown when no Featured Image is set on an episode */
.episode-card__image--placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #111110 0%, #222220 60%, #1a1a18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.episode-card__image--placeholder::after {
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E")
    center/20px no-repeat;
}

.episode-card__content {
  padding: 28px;
}

.episode-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.episode-card__tag--exclusive {
  color: var(--color-gold);
}

.episode-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.episode-card__meta {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ---------- ARTICLE CARD ---------- */
.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border-dark);
  transition: padding-left 0.3s ease;
}

.article-card:hover {
  padding-left: 12px;
  text-decoration: none;
  color: inherit;
}

.article-card__category {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.article-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.article-card__meta {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.article-card__excerpt {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-top: 8px;
  line-height: 1.6;
}

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--color-border-dark);
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn--active {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  border-color: var(--color-accent);
}

/* ---------- GENRE FILTER DROPDOWNS ---------- */
.filter-dropdown {
  position: relative;
}

/* The genre button inside a dropdown gets a slightly tighter layout */
.filter-dropdown .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.filter-dropdown__chevron {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  opacity: 0.45;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.filter-dropdown.is-open .filter-dropdown__chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* The floating panel */
.filter-dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 560px;
  background: #1C1C1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 600;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  pointer-events: none;
}

/* Invisible bridge so cursor moving from button to panel doesn't close it */
.filter-dropdown__panel::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Open state */
.filter-dropdown.is-open .filter-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
  pointer-events: auto;
}

/* Flip panel to the right when it would overflow the viewport left */
.filter-dropdown__panel.flip-left {
  left: auto;
  right: 0;
}

/* Panel heading label */
.filter-dropdown__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.35);
  margin-bottom: 14px;
}

/* Stack of mini cards */
.filter-dropdown__cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Individual mini episode card */
.filter-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.filter-mini-card:hover {
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  color: inherit;
}

.filter-mini-card__img {
  width: 96px;
  height: 54px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
  background: #2E2E2C;
}

.filter-mini-card__img--empty {
  background: #2E2E2C;
}

.filter-mini-card__text {
  flex: 1;
  min-width: 0;
}

.filter-mini-card__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.filter-mini-card__tag--exclusive {
  color: var(--color-gold);
}

.filter-mini-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  color: var(--color-text-light);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-mini-card__meta {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.4);
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer: "View all Genre" link */
.filter-dropdown__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.filter-dropdown__view-all {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--color-accent);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  text-align: left;
}

.filter-dropdown__view-all:hover {
  color: #a02a3a;
}

/* Mobile: hide panels entirely (filter bar has overflow-x:auto which clips absolute panels).
   Genre buttons still work as normal tap-to-filter on mobile — no dropdown needed. */
@media (max-width: 767px) {
  .filter-dropdown__panel {
    display: none !important;
  }

  .filter-dropdown__chevron {
    display: none;
  }
}

/* ---------- PAGE HERO (reusable for inner pages) ---------- */
.page-hero {
  background-color: var(--color-bg-dark);
  padding: 160px 0 80px;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(250, 250, 247, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

/* ---------- SUBSCRIBE BAR ---------- */
.subscribe-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--color-border-dark);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.subscribe-bar a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid #D4D0C8;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: var(--color-text-primary);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139, 35, 50, 0.1);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-notice {
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 15px;
}

.form-notice--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-notice--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ---------- VIDEO EMBED ---------- */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- ARCHIVE DUAL FILTER SYSTEM (My Interviews) ---------- */
.archive-filter-system {
  margin-bottom: 48px;
}

.filter-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.filter-row__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  padding-top: 11px;
  white-space: nowrap;
  min-width: 52px;
  flex-shrink: 0;
}

/* Override default filter-bar bottom margin inside filter rows */
.filter-bar--format,
.filter-bar--category {
  margin-bottom: 0;
  flex: 1;
}

.archive-results {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 4px 0 0;
  min-height: 20px;
  padding-left: 68px; /* align under the buttons, past the label */
}

.archive-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-secondary);
  font-size: 16px;
  margin: 0;
}

/* ---------- EPISODE CARD FORMAT BADGES ---------- */
.episode-card__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* Cancel the per-tag margin since .episode-card__badges handles spacing */
.episode-card__badges .episode-card__tag {
  margin-bottom: 0;
}

.episode-card__format-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid currentColor;
  line-height: 1.4;
}

.episode-card__format-badge--full-episode {
  color: var(--color-text-secondary);
  border-color: var(--color-border-dark);
}

.episode-card__format-badge--press-junket {
  color: #5B8C8A;
  border-color: #5B8C8A;
}

.episode-card__format-badge--exclusive {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ---------- EXCLUSIVE EPISODE CARD (dark variant) ---------- */
.episode-card--exclusive {
  background: #141412;
  border: 1px solid rgba(201, 168, 76, 0.18);
}

.episode-card--exclusive .episode-card__title {
  color: #fafaf7;
}

.episode-card--exclusive .episode-card__meta {
  color: rgba(250, 250, 247, 0.6);
}

.episode-card--exclusive:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

/* ---------- DARK SECTION HEADER ---------- */
.section-header--dark {
  margin-bottom: 48px;
}

/* ---------- ARTICLE CARD WITH IMAGE (Writing CPT) ---------- */
.article-card--image {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--color-bg-warm);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Override plain article-card styles */
  padding: 0;
  border-bottom: none;
}

.article-card--image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding-left: 0;
  text-decoration: none;
  color: inherit;
}

.article-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.article-card__image--placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f2ede4 0%, #e8e3da 100%);
}

.article-card__body {
  padding: 24px;
}

.writing-cpt-grid {
  margin-bottom: 48px;
}

/* ---------- SINGLE WRITING TEMPLATE ---------- */
.article-hero {
  padding: 120px 0 60px;
}

.article-hero .wp-block-post-title {
  color: #fafaf7;
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.article-hero__eyebrow {
  color: var(--color-gold, #C9A84C) !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.article-hero__eyebrow a {
  color: inherit;
  text-decoration: none;
}
.article-hero__eyebrow a:hover {
  text-decoration: underline;
}

.article-hero__meta {
  gap: 20px;
  align-items: center;
}
.article-hero__meta > * {
  margin: 0 !important;
}
.article-hero__meta .wp-block-post-author-name::before {
  content: "·";
  margin-right: 20px;
  color: rgba(250,250,247,0.4);
}

.article-featured-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  display: block;
  background: #F2EDE4;
}

.article-featured-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.article-content {
  padding-top: 60px;
  padding-bottom: 80px;
}

.article-excerpt {
  font-family: var(--font-quote, 'Cormorant Garamond', Georgia, serif) !important;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.article-content .wp-block-post-content {
  font-size: 18px;
  line-height: 1.8;
}

.article-content .wp-block-post-content p {
  margin-bottom: 24px;
}

.article-back-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.article-back-link:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* ---------- MUSIC RELEASE CARD HOVER LIFT ---------- */
.release-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.release-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* ---------- SIGNATURE RELEASE SPOTLIGHT (premium dark feature block) ---------- */
.signature-release {
  margin-top: 16px;
}

.signature-release__cover {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 168, 76, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.signature-release__cover:hover {
  transform: translateY(-4px);
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

.signature-release__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.signature-release__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.signature-release__meta-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* ---------- PREMIUM RELEASE CARDS ---------- */
.release-card--premium {
  background: #fafaf7;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26, 26, 26, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.release-card--premium:hover {
  box-shadow: 0 20px 48px rgba(26, 26, 26, 0.18);
}

.release-card--premium .release-card__cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.release-card--premium .release-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.release-card--premium:hover .release-card__cover img {
  transform: scale(1.04);
}

.release-card__flag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-gold, #c9a84c);
  color: #0d0d0d;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.release-card--premium .release-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.release-card--premium .release-card__year {
  color: var(--color-gold, #c9a84c);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.release-card--premium .release-card__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.release-card--premium .release-card__meta {
  color: var(--color-text-secondary, #6b6b6b);
  font-size: 14px;
  margin: 0;
}

.release-card__excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-primary, #1a1a1a);
  margin: 8px 0 0;
}

.release-card__platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.release-card__platforms > * {
  margin: 0 !important;
}

.release-card__platform a {
  color: var(--color-accent, #8b2332);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.release-card__platform a:hover {
  color: var(--color-accent-hover, #6e1b28);
  text-decoration: underline;
}

.release-card__platform-sep {
  color: rgba(26, 26, 26, 0.3);
  font-size: 14px;
}

/* ---------- PREMIUM COLLABORATOR CARDS ---------- */
.collaborator-grid {
  margin-top: 16px;
}

.collaborator-card {
  background: #fafaf7;
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: 4px;
  padding: 40px 32px 36px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collaborator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.collaborator-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--color-gold, #c9a84c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: 0;
}

.collaborator-card__role {
  color: var(--color-gold, #c9a84c);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.collaborator-card__name {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.collaborator-card__bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0 0 20px;
}

.collaborator-card__credits {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--color-text-secondary, #6b6b6b);
  font-size: 13px;
  font-style: italic;
  width: 100%;
}

/* ---------- LIVE PERFORMANCE SHOWS LIST ---------- */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.show-card {
  background: #fafaf7;
  border-left: 4px solid var(--color-gold, #c9a84c);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.show-card:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.12);
  border-left-color: var(--color-accent, #8b2332);
}

.show-card__date {
  flex: 0 0 auto;
  min-width: 100px;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
}

.show-card__month {
  color: var(--color-gold, #c9a84c);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.show-card__day {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0;
}

.show-card__body {
  flex: 1 1 300px;
  min-width: 0;
}

.show-card__tag {
  color: var(--color-text-secondary, #6b6b6b);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.show-card__venue {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.show-card__city {
  color: var(--color-text-secondary, #6b6b6b);
  font-size: 15px;
  margin: 0 0 10px;
}

.show-card__detail {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-primary, #1a1a1a);
  margin: 0;
}

.show-card__action {
  flex: 0 0 auto;
  margin-left: auto;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199px) {
  :root {
    --section-padding-y: 80px;
    --section-padding-x: 30px;
    --card-padding: 32px;
  }

  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }
}

@media (max-width: 767px) {
  :root {
    --section-padding-y: 60px;
    --section-padding-x: 20px;
    --card-padding: 24px;
    --grid-gap: 20px;
  }

  body { font-size: 16px; }
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--60-40,
  .grid--40-60,
  .grid--45-55 {
    grid-template-columns: 1fr;
  }

  .metrics-bar .grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .metric-number {
    font-size: 32px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Archive filter system — mobile adjustments */
  .filter-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .filter-row__label {
    display: none; /* Labels are descriptive; hide on mobile to save space */
  }

  .archive-results {
    padding-left: 0;
  }

  .filter-bar--format,
  .filter-bar--category {
    flex: unset;
    width: 100%;
  }

  /* Article hero on mobile */
  .article-hero {
    padding: 100px 0 40px;
  }

  .article-featured-image img {
    height: 240px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  .subscribe-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Section header — reduce margin on mobile */
  .section-header,
  .section-header-row {
    margin-bottom: 32px;
  }

  /* Section-header-row stacks vertically on mobile */
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Section subcopy max-width relaxed on mobile */
  .section-subcopy {
    max-width: 100%;
  }

  /* Article cards — reduce padding on small screens */
  .article-card {
    padding: 24px 0;
  }

  .article-card__title {
    font-size: 20px;
  }

  /* Subscribe bar links stretch full-width on mobile */
  .subscribe-bar a {
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
  }

  /* Episode cards title size */
  .episode-card__title {
    font-size: 18px;
  }

  /* Buttons full-width in flex button groups on mobile */
  .wp-block-buttons .wp-block-button {
    width: 100%;
  }
  .wp-block-buttons .wp-block-button__link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Video section reduce bottom padding */
  .video-embed {
    border-radius: 4px;
  }

  /* Signature Release Spotlight — stack on mobile */
  .signature-release {
    flex-direction: column !important;
  }

  .signature-release .wp-block-column {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  .signature-release__meta-row {
    gap: 24px;
  }

  .signature-release h3.wp-block-heading {
    font-size: 32px !important;
  }

  /* Collaborator cards */
  .collaborator-card {
    padding: 32px 24px;
  }

  .collaborator-card__avatar {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  /* Show cards — stack date + body + action on mobile */
  .show-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .show-card__date {
    min-width: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    padding-bottom: 12px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .show-card__month {
    margin-bottom: 0;
  }

  .show-card__day {
    font-size: 22px;
  }

  .show-card__action {
    margin-left: 0;
    width: 100%;
  }

  .show-card__action .wp-block-button__link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Release card premium — smaller padding on mobile */
  .release-card--premium .release-card__body {
    padding: 24px 22px 26px;
  }

  .release-card--premium .release-card__title {
    font-size: 22px;
  }
}

/* ---------- TABLET (1024px) ---------- */
@media (max-width: 1024px) {
  /* Filter dropdown panels are 560px wide — shrink on tablets */
  .filter-dropdown__panel {
    width: calc(100vw - 80px);
    max-width: 480px;
  }

  /* Section padding reduced */
  :root {
    --section-padding-x: 28px;
  }
}

/* ---------- MOBILE STICKY CTA ---------- */
@media (max-width: 767px) {
  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 12px 20px;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--color-border-light);
  }

  .mobile-sticky-cta .btn {
    width: 100%;
    font-size: 13px;
    padding: 14px 24px;
  }

  body {
    padding-bottom: 64px;
  }
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* ---------- ANIMATION (subtle) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
