/* =====================================================
   THE DISCOVERED LEAF — styles.css (STABLE MASTER)
   Build: STABLE RESTORE (single-authority)
   Notes:
   - NO renames, matches your HTML exactly.
   - Fixes: separator seam, spacing rhythm, mobile menu duplication,
            follow layout flip, follow form alignment, legal+footer
            staying inside same visual veil.
===================================================== */

/* =====================================================
   1) RESET & NORMALIZATION
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100%;
}

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

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

a { color: inherit; }

button,
input {
  font-family: inherit;
}

button {
  border: 0;
  background: none;
}

/* =====================================================
   2) ROOT VARIABLES
===================================================== */

:root {
  --bg-main: #0b0a0a;
  --bg-veil: rgba(0, 0, 0, 0.55);
  --bg-panel: rgba(0, 0, 0, 0.45);

  --gold-main: #c9a45c;
  --gold-soft: #e6c87a;
  --gold-bright: #ffd98a;

  --text-main: rgba(255, 255, 255, 0.88);
  --text-soft: rgba(255, 255, 255, 0.72);

  --border-gold: rgba(201, 164, 92, 0.35);
  --border-soft: rgba(201, 164, 92, 0.22);

  --font-main: "Georgia", serif;

  --max-width: 1440px;
  --inner-width: 1320px;

  /* Rhythm knobs */
  --section-pad-top: 92px;
  --section-pad-bottom: 132px;
  --veil-pad: 60px;
  --title-gap: 50px;
  --grid-gap: 48px;
}

/* =====================================================
   3) BASE PAGE
===================================================== */

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  background-image: url("/images/site-background-texture.png");
  background-repeat: repeat;
  background-position: top left;
  color: var(--text-main);
  line-height: 1.6;
}

/* Prevent random overflow shifts on mobile */
body {
  overflow-x: hidden;
}

/* =====================================================
   4) HEADER (LOCKED)
===================================================== */

.site-header {
  position: relative;
  height: 140px;
  background: #000;
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 100;
  overflow: visible;
}

/* Gold seam at bottom of header */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    110deg,
    #3a2a12,
    #7a5a1a,
    #c9a45c,
    #ffd98a,
    #c9a45c,
    #7a5a1a,
    #3a2a12
  );
  z-index: 98;
}

/* =====================================================
   5) LOGO (DO NOT TOUCH — YOUR POSITIONING)
===================================================== */

.logo-link {
  position: absolute;
  left: 40px;
  bottom: -50px; /* YOUR VALUE */
  z-index: 101;
}

.site-logo {
  position: relative;
  height: 190px;
  width: auto;
  cursor: pointer;
}

/* =====================================================
   6) DESKTOP NAV
===================================================== */

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav a {
  color: var(--gold-main);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--gold-soft);
}

/* =====================================================
   7) MOBILE HAMBURGER
===================================================== */

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  cursor: pointer;
}

.menu-bars {
  width: 20px;
  height: 2px;
  background: var(--gold-main);
  position: relative;
  margin: auto;
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--gold-main);
  left: 0;
}

.menu-bars::before { top: -6px; }
.menu-bars::after  { top:  6px; }

/* =====================================================
   8) MOBILE MENU (HARD-LOCKED)
===================================================== */

.mobile-menu {
  display: none;
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.96);
  border-top: 1px solid var(--border-soft);
  z-index: 99;
}

.mobile-menu.open { display: block; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 10px;
}

.mobile-nav a {
  color: var(--gold-main);
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
}

.mobile-nav a:hover {
  background: rgba(201,164,92,0.12);
}

/* =========================================
   MOBILE + TABLET MENU CONTROL (FIXED)
========================================= */

/* Default: hide mobile menu */
.mobile-menu {
  display: none;
}

/* Open state controlled by JS */
.mobile-menu.open {
  display: block;
}

/* Desktop only (true desktop screens) */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

/* =====================================================
   9) HERO
===================================================== */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop/tablet CTA overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   10) BUTTON SYSTEM
===================================================== */

.btn-gold {
  padding: 14px 34px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-soft);
  border: 1px solid var(--border-gold);
  background: rgba(0,0,0,0.45);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold:hover {
  background: rgba(201,164,92,0.15);
  border-color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(255,217,138,0.25);
}

/* IMPORTANT: prevent veil-block default button spacing from messing with Follow row */
.veil-block .btn-gold {
  margin-top: 28px;
}

/* BUT: in Follow row, button must have zero top-margin */
.follow-row .btn-gold {
  margin-top: 0 !important;
}

/* =====================================================
   11) MOBILE CTA (LOCKED ABOVE SEPARATOR)
===================================================== */

.mobile-cta-anchor { display: none; }

/* =====================================================
   12) HERO → CONTENT SEPARATOR (LOCKED)
===================================================== */

.section-separator {
  position: relative;
  width: 100%;
  height: 28px;
  margin-top: -14px; /* seam lock */
  z-index: 4;
}

.section-separator::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    110deg,
    #3a2a12,
    #7a5a1a,
    #c9a45c,
    #ffd98a,
    #c9a45c,
    #7a5a1a,
    #3a2a12
  );
  background-size: 200% 100%;
  border-radius: 100px;
  animation: goldShimmer 7s ease-in-out infinite;
}

.section-separator::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 34px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,200,120,0.14),
    rgba(255,200,120,0.06),
    transparent 70%
  );
  pointer-events: none;
}

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =====================================================
   13) CONTENT SECTIONS / VEIL (SINGLE VEIL SYSTEM)
===================================================== */

.content-section {
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}

.content-section#about {
  padding-top: 5px;
}

/* The veil container */
.content-overlay {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--veil-pad);
  background: var(--bg-veil);
  border: 1px solid var(--border-soft);
}

/* =====================================================
   14) SECTION TITLES
===================================================== */

.section-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--gold-soft);
  margin-bottom: var(--title-gap);
}

.section-title .ornament {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-main), transparent);
  margin: 0 14px;
  vertical-align: middle;
}

/* =====================================================
   15) BODY TEXT
===================================================== */

.section-text p {
  max-width: 980px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
}
.section-text p {
  max-width: 980px;
  margin: 0 auto 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-main);
}
/* =========================================
   SEARCH PAGE — INTRO (CENTERED INVOCATION)
========================================= */

.search-intro {
  max-width: 760px;
  margin: 0 auto 52px;
}

.search-intro p {
  font-size: 17px;
  line-height: 1.7;
}

/* Muted helper (you used text-muted in HTML) */
.text-muted {
  color: var(--text-soft);
}

/* =====================================================
   16) VEIL GRID
===================================================== */

.veil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  max-width: var(--inner-width);
  margin: 0 auto;
}

/* breathing room under grids so buttons don’t crash into next section title */
.veil-grid + .section-title {
  margin-top: 90px;
}

.veil-block {
  text-align: center;
  color: var(--text-main);
}

.gold-frame {
  padding: 1px;
  border: 1px solid var(--border-gold);
  background: var(--bg-panel);
  margin-bottom: 26px;
}

.gold-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.veil-block h3 {
  color: var(--gold-soft);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.veil-block p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 14px;
  color: var(--text-main);
}

/* =====================================================
   17) REVIEW GRID (your HTML uses review-grid)
===================================================== */

.review-grid .veil-block.text-left {
  text-align: left;
}

/* Keep image framed nicely */
.review-grid .gold-frame img {
  max-height: 420px;
}

/* =====================================================
   18) SUBMISSIONS SECTION (centered text already in HTML)
===================================================== */

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

/* =====================================================
   19) FOLLOW THE JOURNEY (HOME) — IMAGE LEFT, TEXT RIGHT
===================================================== */

/* The grid itself */
.follow-grid {
  align-items: start;
}

/* Flip layout: image left, text right */
.follow-grid .follow-image { order: 1; }
.follow-grid .follow-copy  { order: 2; }

/* Make sure follow-copy is left aligned, not centered */
.follow-copy {
  text-align: left;
}

/* Keep paragraph width nice */
.follow-copy p {
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
}

.follow-note {
  margin-top: 18px;
  color: var(--text-soft);
  font-style: italic;
}

.follow-form {
  margin-top: 26px;
}

/* Form row alignment (LOCKED) */
.follow-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.follow-row input[type="email"] {
  flex: 1 1 auto;
  min-width: 240px;
  height: 46px;
  padding: 0 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  font-size: 15px;
  outline: none;
}

.follow-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.55);
}

.follow-row input[type="email"]:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(201,164,92,0.12);
}

.follow-row button.btn-gold {
  height: 46px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

/* privacy line */
.follow-privacy {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 13px;
}

/* map image tuning */
.map-frame img {
  max-height: 220px;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: contrast(1.05) saturate(0.92);
}

.follow-image { align-self: start; }

/* screen reader only label */
.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;
}

/* =====================================================
   20) LEGAL & AGE DISCLAIMER (INSIDE SAME VEIL)
   IMPORTANT: This is placed INSIDE .content-overlay in your HTML,
              so we style it as a continuation (no new veil).
===================================================== */

.legal-disclaimer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.legal-title {
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--gold-soft);
  margin-bottom: 28px;
}

.legal-disclaimer p {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

.legal-disclaimer strong {
  color: var(--text-main);
  font-weight: 600;
}

.legal-note {
  margin-top: 26px;
  font-style: italic;
  color: var(--text-main);
}

/* =====================================================
   21) FOOTER — VISUALLY CONTINUES THE SAME VEIL
   Your footer is OUTSIDE the content-overlay in HTML,
   but we make it LOOK like the same veil.
===================================================== */

.site-footer {
  /* SAME VEIL AS CONTENT ABOVE */
  background: var(--bg-veil);
  border-top: none;

  /* This creates space BELOW the floating logo */
  padding: 120px 20px 32px;

  text-align: center;
  color: var(--text-soft);

  max-width: var(--max-width);
  margin: 0 auto;
}

/* center the footer content */
.footer-logo {
  margin: 0 auto 4px;
  margin-top: -30px;
}

.footer-logo img {
  width: 325px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.95;
}

/* nav */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;

  margin-top: 0;
  margin-bottom: 16px;

  line-height: 1;
  
}

.footer-nav a {
  color: var(--gold-main);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

/* contact */
.footer-contact {
  font-size: 13px;
  margin: 8px 0;
  color: var(--text-soft);
}

.footer-contact a {
  color: var(--gold-soft);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* legal line */
.footer-legal {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.85;
}

/* copyright */
.footer-copy {
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.75;
}

/* =====================================================
   22) OPTIONAL UTILITIES (SAFE)
===================================================== */

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

/* Keep your spacing utilities sane (no 140px surprises) */
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-80 { margin-top: 80px; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }

/* =====================================================
   23) RESPONSIVE
===================================================== */

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

  /* when stacked, stop big gaps between sections */
  .veil-grid + .section-title {
    margin-top: 70px;
  }
}

/* =========================================
   TABLET PORTRAIT FIX (iPad)
   FINAL OVERRIDE
========================================= */

@media (max-width: 1024px) and (orientation: portrait) {
  .site-nav {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* header */
  .site-header {
    height: 90px;
    padding: 0 16px;
  }

  .logo-link {
    left: 16px;
    bottom: -10px;
  }

  .site-logo {
    height: 84px;
  }

  /* swap nav systems */
  .site-nav { display: none; }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu { top: 90px; }

  /* hero CTA logic: desktop overlay off, mobile anchor on */
  .hero-overlay { display: none; }

  .mobile-cta-anchor {
    display: flex;
    justify-content: center;
    margin-top: -58px;
    position: relative;
    z-index: 6;
    transform: translateY(6px);
  }

  /* seam lock on mobile */
  .section-separator {
    margin-top: -6px;
  }

  /* veil padding */
  .content-overlay {
    padding: 36px 20px;
  }

  /* titles */
  .section-title {
    font-size: 22px;
  }

  .section-title .ornament {
    display: none;
  }

  /* review section reorder: image first */
  .review-grid {
    display: flex;
    flex-direction: column;
  }

  .review-grid .veil-block:last-child {
    order: -1;
    margin-bottom: 26px;
  }

  /* follow form stacks */
  .follow-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .follow-row input[type="email"] {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .map-frame img {
    max-height: 170px;
  }

  /* footer */
  .site-footer {
    padding: 50px 16px 45px;
  }

  .footer-logo img {
    width: 200px;
  }

  .footer-nav {
    gap: 18px;
  }
}

/* =====================================================
   24) SECTION RHYTHM — SAFE, CONTROLLED
   If you want more space site-wide, change ONLY these:
   --section-pad-top, --section-pad-bottom, --veil-pad, --title-gap
===================================================== */

/* Extra breathing room between major blocks inside veil */
.veil-grid {
  margin-bottom: 36px;
}

/* Give Follow a touch more air (ONLY Follow area) */
.follow-grid {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* =====================================================
   END — SINGLE AUTHORITY FILE
===================================================== */

/* =========================================
   REMOVE SEPARATOR BEFORE FOOTER (FINAL FIX)
========================================= */

/* Kill the separator that appears above the footer */
.content-section:last-of-type + .site-footer::before,
.site-footer::before {
  display: none !important;
}

/* Ensure no stray separator spacing leaks into footer */
.site-footer {
  margin-top: 0;
}
/* =========================================
   FINAL FIX — REMOVE EXTRA VEIL SPACE
   (Last section before footer)
========================================= */

.content-section:last-of-type {
  padding-bottom: 0;
}

/* =========================================
   VEIL-TO-VEIL GAP TIGHTENING (SAFE)
   Pulls second veil closer to the first
========================================= */

/* Any content section that follows another */
.content-section + .content-section {
  padding-top: 8px;
}
/* =========================================
   VEIL-TO-VEIL GAP — FINAL CONTROL
   Tightens space BETWEEN consecutive veils
========================================= */

.content-section + .content-section {
  padding-top: 6px;          /* top of second veil */
}

.content-section:not(:last-of-type) {
  padding-bottom: 12px;       /* bottom of first veil */
}
/* =========================================
   SEPARATOR → FIRST VEIL GAP (FINAL TUNE)
========================================= */

.section-separator + .content-section {
  padding-top: 1px;
}
/* =========================================
   SEPARATOR → FIRST VEIL HARD OVERLAP (FINAL)
   Forces veil to touch gold line
========================================= */

.section-separator + .content-section {
  padding-top: 0 !important;
}

.section-separator + .content-section .content-overlay {
  margin-top: -28px;
}


/* ===============================
   VOICES — NAME POSITION TUNE
=============================== */

.voice-name {
  margin-left: 36px;   /* ONLY the name shifts */
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 34px;
  letter-spacing: 2px;
}



/* ===============================
   VOICES — ROLE ALIGNMENT FIX
   (DOES NOT AFFECT NAME OR BIO)
================================ */

.voice-role {
  margin-left: 0px;            /* kill any accidental indent */
  max-width: 980px;          /* SAME as bio */
  margin-right: auto;
  margin-bottom: 26px;

  color: var(--text-soft);
  font-style: italic;
  font-size: 17px;
}

/* ===============================
   SUBMISSIONS FORM (CLEAN)
================================ */

.submission-form {
  max-width: 720px;
  margin: 50px auto 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-field label {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-soft);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(201,164,92,0.12);
}

.form-note {
  margin: 26px 0;
  font-size: 14px;
  color: var(--text-soft);
}
/* ===============================
   SUBMISSION FORM — READABILITY
=============================== */

.submission-form label {
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.submission-form input,
.submission-form textarea {
  font-size: 17px;
  line-height: 1.5;
}

.submission-form textarea {
  min-height: 140px;
}
/* ===============================
   SUBMISSIONS FORM — FINAL FIX
=============================== */

.submission-form {
  max-width: 820px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* Labels */
.submission-form label {
  display: block;
  font-size: 18px;
  color: var(--gold-soft);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* Inputs + textarea */
.submission-form input,
.submission-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  font-family: var(--font-main);
  color: var(--text-main);

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-soft);
  border-radius: 2px;

  outline: none;
}

/* Textarea sizing */
.submission-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Focus state */
.submission-form input:focus,
.submission-form textarea:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 2px rgba(201, 164, 92, 0.18);
}

/* Submit button spacing */
.submission-form button {
  margin-top: 30px;
  align-self: flex-start;
}

/* Mobile tightening */
@media (max-width: 768px) {
  .submission-form {
    margin-top: 40px;
  }

  .submission-form label {
    font-size: 17px;
  }

  .submission-form input,
  .submission-form textarea {
    font-size: 16px;
  }
}
/* =========================
   PODCAST LANDING PAGE
========================= */

.episode-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.episode-header h3 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.episode-date {
  font-style: italic;
  opacity: 0.8;
}

.episode-description {
  max-width: 720px;
  margin: 28px 0 40px;
}

.cigar-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 40px 0;
}

.cigar-fundy img {
  max-height: 540px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.cigar-mediterra img {
  max-height: 470px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.episode-cigars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 40px 0;
}

.cigar-info h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.episode-player {
  margin-top: 32px;
}

.play-button {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: default;
  opacity: 0.7;
}

/* MOBILE */

@media (max-width: 768px) {
  .cigar-pair,
  .episode-cigars {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cigar-fundy img {
    max-height: 460px;
  }

  .cigar-mediterra img {
    max-height: 400px;
  }
}
/* =========================
   PODCAST CIGAR CLOSING VISUAL
========================= */

.episode-cigars-visual {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cigar-visual img {
  display: block;
  width: auto;
  max-height: 260px;
  opacity: 0.95;
}

.cigar-visual.mediterra img {
  max-height: 280px;
}

.cigar-visual.fundy img {
  max-height: 240px;
}

/* Mobile */

@media (max-width: 768px) {
  .episode-cigars-visual {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .cigar-visual img {
    max-height: 240px;
  }
}
/* =========================
   PODCAST EPISODE CIGARS
========================= */

.episode-audio-placeholder {
  margin: 32px 0 48px;
  padding: 12px 20px;
  display: inline-block;
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.episode-cigars {
  display: flex;
  gap: 80px;
  margin-top: 40px;
}

.cigar-block {
  flex: 1;
}

.cigar-block h3 {
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.cigar-block p {
  margin: 2px 0;
}

.cigar-image {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.cigar-image img {
  max-height: 260px;
  width: auto;
  display: block;
}

/* Mobile */

@media (max-width: 900px) {
  .episode-cigars {
    flex-direction: column;
    gap: 56px;
  }

  .cigar-image img {
  height: 500px;
  width: auto;
  display: block;
}
}
/* =========================
   PODCAST IMAGE HARD LOCK
   (Final authority)
========================= */

.episode-cigars .cigar-image img,
.episode-cigars-visual img {
  height: 500px;
  max-height: none;
  width: auto;
  object-fit: contain;
}



.episode-audio-placeholder a {
  text-decoration: none;
}

.episode-audio-placeholder a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.pillar-graphic img {
  max-height: none !important;
  object-fit: contain !important;
}
.score-range {
  color: var(--gold-bright); /* matches your existing gold system */
  font-weight: 700;
  letter-spacing: 0.5px;
}