/* ============================================================
   THE LAST LAYER — style.css
   Premium Podcast Website
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --dark-brown:   #3b241d;
  --warm-rose:    #b95925;
  --light-blush:  #f5e3df;
  --soft-beige:   #efe2dc;
  --white:        #ffffff;
  --muted:        #7c6761;
  --rose-dark:    #b57070;
  --rose-deeper:  #a05e5e;
  --color1:  #b95925;
  --card-shadow:  0 8px 32px rgba(59,36,29,.10);
  --hover-shadow: 0 16px 48px rgba(59,36,29,.18);
  --radius:       20px;
  --radius-sm:    12px;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--light-blush);
  color: var(--dark-brown);
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5 { font-family: var(--serif); color: var(--dark-brown); }

.serif        { font-family: var(--serif); }
.text-muted-warm { color: var(--muted); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
  padding: 0;
}

#mainNav.scrolled {
  background: rgba(246,236,232,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(59,36,29,.10);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.nav-logo { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; }
.nav-logo img {
  height: 100px;
  filter: invert();
}
#mainNav.scrolled .nav-logo img {
  height: 100px;
  filter: unset;
}
.logo-main {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
  transition: color .3s;
}
.logo-subtitle {
  font-family: var(--sans);
  font-size: .65rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  font-weight: 300;
  margin-top: 2px;
  transition: color .3s;
}
.logo-mic {
  font-size: 1.6rem;
  color: var(--white);
  margin-top: 2px;
  transition: color .3s;
}

#mainNav.scrolled .logo-main   { color: var(--dark-brown); }
#mainNav.scrolled .logo-subtitle{ color: var(--muted); }
#mainNav.scrolled .logo-mic    { color: var(--warm-rose); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--warm-rose);
  border-radius: 2px;
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

#mainNav.scrolled .nav-links a { color: var(--muted); }
#mainNav.scrolled .nav-links a:hover,
#mainNav.scrolled .nav-links a.active { color: var(--dark-brown); }

/* Social Icons */
.nav-socials {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-socials a {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  transition: color .3s, transform .3s;
  text-decoration: none;
}
.nav-socials a:hover { color: var(--white); transform: scale(1.2); }
#mainNav.scrolled .nav-socials a { color: var(--muted); }
#mainNav.scrolled .nav-socials a:hover { color: var(--warm-rose); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  font-size: 1.5rem;
  transition: color .3s;
}
#mainNav.scrolled .hamburger { color: var(--dark-brown); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
  padding: 40px 24px;
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu-close {
  position: absolute;
  top: 22px; right: 28px;
  background: none; border: none;
  color: var(--white); font-size: 1.8rem;
  cursor: pointer; transition: color .3s;
}
.mobile-menu-close:hover { color: var(--warm-rose); }

.mobile-nav-links { list-style: none; text-align: center; padding: 0; margin: 0; }
.mobile-nav-links li { margin: 14px 0; }
.mobile-nav-links a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .3s;
}
.mobile-nav-links a:hover { color: var(--warm-rose); }

.mobile-socials {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}
.mobile-socials a {
  font-size: 1.4rem;
  color: rgba(255,255,255,.65);
  transition: color .3s, transform .3s;
  text-decoration: none;
}
.mobile-socials a:hover { color: var(--warm-rose); transform: scale(1.2); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #2a1710 0%, #3b241d 35%, #5c3228 65%, #7a4438 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    url('http://localhost/wp/thelastlayer/thelastlayer/wp-content/uploads/2026/05/banner.png') center/cover no-repeat;
  /* opacity: .45; */
  /* mix-blend-mode: luminosity; */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(30,14,8,.85) 0%, rgba(30,14,8,.55) 55%, rgba(30,14,8,.15) 100%); */
  background: linear-gradient(to bottom, rgba(30,14,8,.85) 0%, rgba(30, 14, 8, 0) 55%, rgba(30, 14, 8, 0) 100%);
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px 180px;
  /* max-width: 900px; */
}
@media screen and (min-width:1320px) {
  .hero-content {
  padding: 80px 110px 80px;
}
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: .01em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero p {
  font-size: .95rem;
  color: rgba(255,255,255,.80);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 340px;
}

/* Hero Buttons */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .3s ease;
  cursor: pointer;
}
.btn-hero-primary {
  background: var(--color1);
  color: var(--white);
  border-color: transparent;
}
.btn-hero-primary:hover {
  background: var(--warm-rose);
  border-color: var(--warm-rose);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,135,135,.45);
}
.btn-hero-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-pad { padding: 90px 0; }
.section-tag {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-rose);
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
}

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MEET THE HOST SECTION
   ============================================================ */
.host-section {
  background: var(--light-blush);
  overflow: hidden;
}

.host-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  aspect-ratio: 4/5;
}
.host-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.host-img-wrap:hover img { transform: scale(1.04); }

.host-info { position: relative; }

.host-name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
  margin-bottom: 16px;
}

.host-bio {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 550px;
}

.host-socials { display: flex; gap: 14px; margin-bottom: 28px; }
.host-social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--warm-rose);
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-rose);
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
}
.host-social-btn:hover {
  background: var(--warm-rose);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,135,135,.4);
}

.btn-primary-warm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color1);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.btn-primary-warm:hover {
  background: var(--warm-rose);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,135,135,.4);
}

/* Decorative mic watermark */
.mic-watermark {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: var(--warm-rose);
  opacity: .07;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* ============================================================
   LATEST EPISODES
   ============================================================ */
.episodes-section { background: var(--light-blush); }

.episodes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.episodes-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-rose);
}
.view-all {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm-rose);
  text-decoration: none;
  transition: color .3s;
}
.view-all:hover { color: var(--dark-brown); }

/* Episode Card */
.ep-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
}
.ep-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.ep-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.ep-card:hover .ep-thumb img { transform: scale(1.07); }

.ep-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(59,36,29,.70);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.ep-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .7rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 6px;
}

.ep-body {
  padding: 18px 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ep-text { flex: 1; }
.ep-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 6px;
  line-height: 1.3;
}
.ep-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
}

.ep-play {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--warm-rose);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  margin-top: 2px;
}
.ep-play:hover {
  background: var(--dark-brown);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(59,36,29,.3);
  color: var(--white);
}

/* ============================================================
   PLATFORM SECTION
   ============================================================ */
.platforms-section { background: var(--soft-beige); padding: 70px 0; }

.platform-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-rose);
  margin-bottom: 20px;
}

.platform-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--card-shadow);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: var(--dark-brown);
}
.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
  color: var(--dark-brown);
}
.platform-card span {
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
}
.platform-icon { font-size: 1.6rem; }
.icon-yt    { color: #FF0000; }
.icon-sp    { color: #1DB954; }
.icon-ap    { color: #9b5de5; }
.icon-am    { color: #00A8E0; }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, #b95925 0%, #ba5c29 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.newsletter-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}
.newsletter-heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.newsletter-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.80);
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(59,36,29,.18);
}
.newsletter-input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--dark-brown);
  background: var(--white);
}
.newsletter-input::placeholder { color: #b0908a; }

.btn-subscribe {
  background: var(--dark-brown);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}
.btn-subscribe:hover { background: #2a1710; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark-brown);
  padding: 72px 0 0;
  color: rgba(255,255,255,.65);
}

.footer-logo-main { color: var(--white); }
.footer-logo-subtitle { color: rgba(255,255,255,.5); }
.footer-logo-mic { color: var(--warm-rose); }

.footer-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-top: 12px;
  /* max-width: 220px; */
}

.footer-heading {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}
.footer-links a:hover { color: var(--warm-rose); }

.footer-socials { display: flex; gap: 14px; }
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
}
.footer-social-btn:hover {
  border-color: var(--warm-rose);
  color: var(--warm-rose);
  transform: translateY(-2px);
}

.footer-contact a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}
.footer-contact a:hover { color: var(--warm-rose); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  margin-top: 30px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .navbar-inner { padding: 10px 28px; }
  .nav-links, .nav-socials { display: none; }
  .hamburger { display: block; }

  .hero-content { padding: 140px 28px 70px; }
  .section-pad { padding: 70px 0; }
  .host-img-wrap { aspect-ratio: 3/2; margin-bottom: 36px; }
  .mic-watermark { font-size: 130px; right: -10px; }
}

@media (max-width: 767px) {
  .hero-content { padding: 130px 20px 60px; max-width: 100%; }
  .hero h1 { font-size: 2rem; }
  .hero p { max-width: 100%; }

  .host-name { font-size: 2.4rem; }

  .episodes-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  .newsletter-left { margin-bottom: 28px; }
  .newsletter-form { border-radius: 14px; flex-direction: column; }
  .newsletter-input { border-radius: 12px 12px 0 0; }
  .btn-subscribe { border-radius: 0 0 12px 12px; text-align: center; }

  .footer-desc { max-width: 100%; }
  .mic-watermark { display: none; }
}

@media (max-width: 480px) {
  .navbar-inner { padding: 14px 20px; }
  .logo-main { font-size: 1.3rem; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 1.75rem; }
  .btn-hero { padding: 11px 20px; font-size: .7rem; }
  .platform-card { padding: 16px 18px; }
  .section-pad { padding: 56px 0; }
}



/* ============================================================
   THE LAST LAYER — inner.css
   "Content Updating Soon" inner page styles
   ============================================================ */

/* ── Inner-page navbar: always scrolled state by default ── */
#mainNav.inner-nav {
  /* background: rgba(246,236,232,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(59,36,29,.10); */
}
#mainNav.inner-nav .logo-main   { color: var(--dark-brown); }
#mainNav.inner-nav .logo-subtitle{ color: var(--muted); }
#mainNav.inner-nav .logo-mic    { color: var(--warm-rose); }
/* #mainNav.inner-nav .nav-links a { color: var(--muted); } */
/* #mainNav.inner-nav .nav-links a:hover,
#mainNav.inner-nav .nav-links a.active { color: var(--dark-brown); } */
/* #mainNav.inner-nav .nav-socials a { color: var(--muted); }
#mainNav.inner-nav .nav-socials a:hover { color: var(--warm-rose); } */
/* #mainNav.inner-nav .hamburger { color: var(--dark-brown); } */

/* ============================================================
   INNER HERO
   ============================================================ */
.inner-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* background: linear-gradient(140deg, #2a1710 0%, #3b241d 40%, #5c3228 70%, #7a4438 100%); */
  background: linear-gradient(
  140deg,
  /* #4a1f0d 0%, */
  #7a3515 35%,
  #b95925 70%,
  #d97a45 100%
);
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,135,135,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(122,68,56,.35) 0%, transparent 60%); */
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom,
    rgba(30,14,8,.55) 0%,
    rgba(30,14,8,.30) 60%,
    rgba(30,14,8,.65) 100%
  ); */
}

/* Floating decorative mic watermark */
.inner-hero-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 280px);
  color: rgba(255,255,255,.045);
  pointer-events: none;
  line-height: 1;
  animation: floatDeco 6s ease-in-out infinite;
}

@keyframes floatDeco {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50%       { transform: translateY(calc(-50% - 16px)) rotate(-6deg); }
}

/* Pulse rings */
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(201,135,135,.18);
  animation: pulseRing 5s ease-out infinite;
  pointer-events: none;
}
.pulse-ring.r1 { width: 220px; height: 220px; right: 10%; top: 25%; animation-delay: 0s; }
.pulse-ring.r2 { width: 360px; height: 360px; right: 5%;  top: 10%; animation-delay: 1.2s; }
.pulse-ring.r3 { width: 500px; height: 500px; right: 1%;  top: 0%;  animation-delay: 2.4s; }

@keyframes pulseRing {
  0%   { opacity: .6; transform: scale(.9); }
  70%  { opacity: 0;  transform: scale(1.1); }
  100% { opacity: 0;  transform: scale(1.1); }
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 80px;
}

.inner-brand-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--light-blush);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.inner-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .7s .35s forwards;
}
.inner-hero-title em {
  font-style: italic;
  color: var(--soft-beige);
}

.inner-hero-sub {
  font-size: clamp(.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 0 28px;
  opacity: 0;
  animation: fadeUp .7s .5s forwards;
}

/* Breadcrumb */
.inner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0; margin: 0;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  opacity: 0;
  animation: fadeUp .7s .65s forwards;
}
.inner-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .3s;
}
.inner-breadcrumb a:hover { color: var(--light-blush); }
.inner-breadcrumb .active { color: var(--light-blush); }
.inner-breadcrumb i { font-size: .6rem; }

/* ============================================================
   MAIN GLASS CARD
   ============================================================ */
.inner-card-section {
  background: var(--light-blush);
  padding: 80px 0 60px;
}

.inner-glass-card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 28px;
  padding: 56px 52px;
  text-align: center;
  box-shadow:
    0 4px 24px rgba(59,36,29,.08),
    0 24px 80px rgba(201,135,135,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .4s ease, box-shadow .4s ease;
}
.inner-glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 32px rgba(59,36,29,.10),
    0 32px 100px rgba(201,135,135,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* Icon */
.card-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--warm-rose) 0%, var(--rose-deeper) 100%);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 28px;
  box-shadow: 0 8px 28px rgba(201,135,135,.45);
}
.icon-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(201,135,135,.3);
  animation: iconPulse 2.8s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1);   opacity: .7; }
  50%       { transform: scale(1.1); opacity: 0; }
}

.card-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 14px;
  line-height: 1.2;
}

.card-body-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.82;
  max-width: 440px;
  margin: 0 auto 28px;
}

/* Divider */
.card-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 28px;
  max-width: 260px;
}
.card-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,135,135,.4), transparent);
}
.card-divider i {
  color: var(--warm-rose);
  font-size: .9rem;
  opacity: .7;
}

/* Progress */
.card-progress { margin: 0 auto; max-width: 360px; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.progress-pct { color: var(--warm-rose); }

.progress-track {
  height: 6px;
  background: rgba(201,135,135,.18);
  border-radius: 50px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--warm-rose), var(--rose-deeper));
  border-radius: 50px;
  width: 0;
  transition: width 1.6s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background: var(--soft-beige);
  padding: 80px 0;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 6px 28px rgba(59,36,29,.08);
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-rose), var(--rose-deeper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(59,36,29,.13); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--light-blush);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--warm-rose);
  transition: background .3s, color .3s;
}
.feature-card:hover .feature-icon {
  background: var(--warm-rose);
  color: var(--white);
}

.feature-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 10px;
}
.feature-text {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   ANIMATIONS  (shared keyframe used by inner page)
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .inner-hero-deco { display: none; }
  .pulse-ring      { display: none; }
  .inner-glass-card { padding: 44px 36px; }
}

@media (max-width: 767px) {
  .inner-hero { min-height: 56vh; }
  .inner-hero-content { padding: 120px 20px 60px; }
  .inner-glass-card { padding: 36px 24px; }
  .card-divider { max-width: 200px; }
  .features-section { padding: 60px 0; }
  .feature-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .inner-hero-title { font-size: 2.1rem; }
  .inner-glass-card { padding: 30px 20px; }
}

/* host css */
/* ============================================================
   HOST INNER PAGE
============================================================ */
/* ============================================================
   HOST PROFILE INNER SECTION
============================================================ */

.host-profile-section {
  background: var(--light-blush);
  position: relative;
  overflow: hidden;
}

.host-profile-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(185, 89, 37, 0.08);
  border-radius: 50%;
  filter: blur(20px);
}

.host-profile-content {
  position: relative;
  z-index: 2;
}

.host-profile-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.12;
  color: var(--dark-brown);
  margin-bottom: 24px;
  font-weight: 700;
}

.host-profile-title em {
  color: var(--color1);
  font-style: italic;
}

.host-profile-text {
  font-size: .95rem;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 620px;
}

.host-detail-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(59,36,29,.18);
}

.host-detail-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .5s ease;
}

.host-detail-image-wrap:hover img {
  transform: scale(1.04);
}

.host-image-glow {
  position: absolute;
  inset: auto -20% -20% auto;
  width: 260px;
  height: 260px;
  background: rgba(185,89,37,.22);
  filter: blur(80px);
  z-index: 0;
}

.dark-outline-btn {
  background: transparent;
  border: 1.5px solid rgba(59,36,29,.18);
  color: var(--dark-brown);
}

.dark-outline-btn:hover {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991px) {

  .host-profile-title {
    font-size: 2.8rem;
  }

  .host-detail-image-wrap {
    max-width: 500px;
    margin: auto;
  }

}

@media (max-width: 767px) {

  .host-profile-title {
    font-size: 2.2rem;
  }

  .host-profile-text {
    font-size: .9rem;
    line-height: 1.85;
  }

  .host-meta-wrap {
    gap: 12px;
  }

  .host-meta-item {
    width: 100%;
    justify-content: center;
  }

}

@media (max-width: 480px) {

  .host-profile-title {
    font-size: 1.9rem;
  }

}
.host-inner-hero {
  min-height: 90vh;
}

.host-detail-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.host-detail-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.host-image-glow {
  position: absolute;
  inset: auto -30% -30% auto;
  width: 260px;
  height: 260px;
  background: rgba(201,135,135,.35);
  filter: blur(80px);
}

.host-meta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.host-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(57, 19, 0, 0.16);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.host-long-bio {
  color: var(--muted);
  line-height: 2;
  font-size: .95rem;
}

.host-stats-section {
  padding: 70px 0;
  background: var(--soft-beige);
}

.host-stat-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: .35s ease;
}

.host-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.host-stat-card h3 {
  font-size: 2.5rem;
  color: var(--warm-rose);
  margin-bottom: 10px;
}

.host-stat-card p {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

.host-quote-section {
  padding: 90px 0;
  background: var(--light-blush);
}

.host-quote-card {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 70px 40px;
  border-radius: 28px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px);
  box-shadow: var(--card-shadow);
}

.quote-icon {
  font-size: 3rem;
  color: var(--warm-rose);
  margin-bottom: 20px;
}

.host-quote-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  line-height: 1.4;
  color: var(--dark-brown);
  margin-bottom: 24px;
}

.host-quote-card span {
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
}
/* ============================================================
   HOSTS LISTING PAGE
============================================================ */

.hosts-listing-section {
  background: var(--light-blush);
  position: relative;
  overflow: hidden;
}

.hosts-section-text {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.9;
  font-size: .95rem;
}

.section-title em {
  color: var(--color1);
  font-style: italic;
}

/* ============================================================
   HOST CARD
============================================================ */

.host-list-card {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all .4s ease;
  height: 100%;
  position: relative;
}

.host-list-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

/* Image */
.host-list-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.host-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.host-list-card:hover .host-list-image img {
  transform: scale(1.08);
}

/* Overlay */
.host-list-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.05)
  );
  opacity: 0;
  transition: .4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
}

.host-list-card:hover .host-list-overlay {
  opacity: 1;
}

/* View Button */
.host-view-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: .3s ease;
}

.host-view-btn:hover {
  background: var(--color1);
  color: var(--white);
  transform: rotate(45deg);
}

/* Content */
.host-list-content {
  padding: 28px 24px;
}

.host-role {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color1);
  margin-bottom: 10px;
}

.host-list-name {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--dark-brown);
  margin-bottom: 14px;
  line-height: 1.1;
}

.host-list-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: .84rem;
  margin-bottom: 22px;
}

/* Socials */
.host-list-socials {
  display: flex;
  gap: 12px;
}

.host-list-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-brown);
  text-decoration: none;
  transition: .3s ease;
}

.host-list-socials a:hover {
  background: var(--color1);
  color: var(--white);
  transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991px) {

  .host-list-name {
    font-size: 1.8rem;
  }

}

@media (max-width: 767px) {

  .hosts-section-text {
    font-size: .9rem;
  }

  .host-list-content {
    padding: 24px 20px;
  }

}

@media (max-width: 480px) {

  .host-list-name {
    font-size: 1.6rem;
  }

}
/* ============================================================
   HOST VIDEO SECTION
============================================================ */

.host-video-section {
  background: var(--soft-beige);
  position: relative;
  overflow: hidden;
}

/* Wrapper */
.host-video-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(59,36,29,.18);
}

/* Thumbnail */
.host-video-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.host-video-wrapper:hover img {
  transform: scale(1.04);
}

/* Overlay */
.host-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.15)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play Button */
.video-play-btn {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(18px);
  color: var(--white);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s ease;
  cursor: pointer;
  position: relative;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  animation: playPulse 2s infinite;
}

@keyframes playPulse {

  0% {
    transform: scale(.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }

}

.video-play-btn:hover {
  transform: scale(1.08);
  background: var(--color1);
}

/* Meta */
.host-video-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.host-video-meta span {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   VIDEO MODAL
============================================================ */

.video-modal .modal-dialog {
  max-width: 1200px;
}

.video-modal .modal-content {
  background: #000;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* Close Button */
.video-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: none;
  color: var(--white);
  z-index: 10;
  transition: .3s ease;
}

.video-close-btn:hover {
  background: var(--color1);
  transform: rotate(90deg);
}

/* Dynamic Video */
#dynamicVideoContainer iframe,
#dynamicVideoContainer video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991px) {

  .host-video-wrapper img {
    height: 500px;
  }

}

@media (max-width: 767px) {

  .host-video-wrapper img {
    height: 380px;
  }

  .video-play-btn {
    width: 90px;
    height: 90px;
    font-size: 2.4rem;
  }

}

@media (max-width: 480px) {

  .host-video-wrapper img {
    height: 300px;
  }

  .host-video-meta {
    left: 16px;
    bottom: 16px;
  }

  .host-video-meta span {
    font-size: .65rem;
    padding: 8px 14px;
  }

}
/* Video Thumbnail */
.video-thumbnail {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform .6s ease;
}

.host-video-wrapper:hover .video-thumbnail {
  transform: scale(1.04);
}

/* ============================================================
   FEATURED EPISODE
============================================================ */

.featured-episode-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.featured-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.video-thumbnail {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.featured-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-title {
  font-family: var(--serif);
  font-size: clamp(2rem,4vw,3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.featured-desc {
  color: var(--muted);
  line-height: 1.9;
  font-size: .95rem;
}

.episode-meta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.episode-meta-item {
  background: var(--soft-beige);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   FILTERS
============================================================ */

.episodes-filter-section {
  padding-bottom: 20px;
}

.episodes-filter-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.episodes-filter-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.episode-filter-btn {
  border: none;
  background: var(--white);
  border-radius: 50px;
  padding: 12px 22px;
  white-space: nowrap;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: .3s ease;
}

.episode-filter-btn.active,
.episode-filter-btn:hover {
  background: var(--color1);
  color: var(--white);
}

.episodes-search-box {
  background: var(--white);
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.episodes-search-box input {
  border: none;
  outline: none;
  background: transparent;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px){

  .featured-episode-card {
    padding: 24px;
  }

  .video-thumbnail {
    height: 380px;
  }

}

@media(max-width:767px){

  .featured-title {
    font-size: 2.2rem;
  }

  .video-thumbnail {
    height: 280px;
  }

}

/* ============================================================
   ABOUT PAGE
============================================================ */

.about-content-section {
  background: var(--light-blush);
  position: relative;
}

.about-text {
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 20px;
  font-size: .95rem;
}

.about-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(59,36,29,.18);
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-glow {
  position: absolute;
  inset: auto -20% -20% auto;
  width: 240px;
  height: 240px;
  background: rgba(185,89,37,.18);
  filter: blur(80px);
}

/* ============================================================
   ABOUT FEATURES
============================================================ */

.about-features-section {
  padding: 20px 0 90px;
}

.about-feature-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: .4s ease;
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.about-feature-card h3 {
  font-family: var(--serif);
  margin: 20px 0 14px;
  font-size: 2rem;
}

.about-feature-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================================
   WHO SECTION
============================================================ */

.who-card {
  background: var(--white);
  border-radius: 24px;
  padding: 50px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: .35s ease;
  height: 100%;
}

.who-card:hover {
  transform: translateY(-8px);
}

.who-card i {
  font-size: 2.8rem;
  color: var(--color1);
  margin-bottom: 22px;
}

.who-card h4 {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.3;
}

/* ============================================================
   QUOTE SECTION
============================================================ */

.about-quote-section {
  padding: 90px 0;
  background: var(--soft-beige);
}

.about-quote-card {
  max-width: 900px;
  margin: auto;
  text-align: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 70px 40px;
  box-shadow: var(--card-shadow);
}

.about-quote-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.8rem);
  line-height: 1.45;
  margin-bottom: 24px;
}

.about-quote-card p {
  color: var(--muted);
  font-size: .95rem;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:767px){

  .about-feature-card,
  .about-quote-card,
  .who-card {
    padding: 32px 24px;
  }

}

/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-page-section {
  background: var(--light-blush);
  position: relative;
  overflow: hidden;
}

.contact-page-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(185,89,37,.08);
  border-radius: 50%;
  filter: blur(20px);
}

/* ============================================================
   CONTENT
============================================================ */

.contact-text {
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 20px;
  font-size: .95rem;
}

/* ============================================================
   INFO CARDS
============================================================ */

.contact-info-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(185,89,37,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color1);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-info-card a,
.contact-info-card p {
  font-size: 1rem;
  color: var(--dark-brown);
  text-decoration: none;
  margin: 0;
}

/* ============================================================
   SOCIALS
============================================================ */

.contact-socials {
  display: flex;
  gap: 14px;
}

.contact-social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-brown);
  text-decoration: none;
  transition: .3s ease;
  box-shadow: var(--card-shadow);
}

.contact-social-btn:hover {
  background: var(--color1);
  color: var(--white);
  transform: translateY(-4px);
}

/* ============================================================
   FORM CARD
============================================================ */

.contact-form-card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  padding: 42px;
  box-shadow: var(--card-shadow);
}

/* ============================================================
   FORM
============================================================ */

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--dark-brown);
}

.custom-input {
  border: none;
  background: rgba(239,226,220,.55);
  border-radius: 18px;
  padding: 16px 20px;
  font-size: .95rem;
  color: var(--dark-brown);
  box-shadow: none !important;
}

.custom-input:focus {
  background: rgba(239,226,220,.85);
}

.custom-textarea {
  resize: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px){

  .contact-form-card {
    padding: 32px;
  }

}

@media(max-width:767px){

  .contact-form-card {
    padding: 24px;
  }

  .contact-info-card {
    padding: 18px;
  }

}
/* ============================================================
   HOST VIDEOS GRID
============================================================ */

.host-video-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: .4s ease;
  height: 100%;
}

.host-video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

/* Thumbnail */
.host-video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.host-video-card:hover .video-thumbnail {
  transform: scale(1.06);
}

/* Overlay */
.host-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Duration */
.video-duration {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Content */
.host-video-content {
  padding: 24px;
}

.video-category {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color1);
  margin-bottom: 12px;
}

.host-video-title {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.host-video-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: .88rem;
}

/* ============================================================
   EPISODES PAGE
============================================================ */

.episodes-grid-section {
  background: var(--light-blush);
  position: relative;
}

/* ============================================================
   EPISODE CARD
============================================================ */

.episode-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: .4s ease;
  height: 100%;
}

.episode-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

/* ============================================================
   THUMBNAIL
============================================================ */

.episode-thumb {
  position: relative;
  overflow: hidden;
}

.episode-thumb img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s ease;
}

.episode-card:hover .episode-thumb img {
  transform: scale(1.06);
}

/* ============================================================
   OVERLAY
============================================================ */

.episode-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.58),
    rgba(0,0,0,.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   PLAY BUTTON
============================================================ */

.episode-play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: .35s ease;
  text-decoration: none;
}

.episode-play-btn:hover {
  background: var(--color1);
  transform: scale(1.08);
  color: var(--white);
}

/* ============================================================
   DURATION
============================================================ */

.episode-duration {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================================
   CONTENT
============================================================ */

.episode-card-content {
  padding: 28px;
}

.episode-category {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color1);
}

.episode-title {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.episode-title a {
  color: var(--dark-brown);
  text-decoration: none;
}

.episode-guest {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 16px;
}

.episode-desc {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.episode-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color1);
  font-weight: 500;
  transition: .3s ease;
}

.episode-link:hover {
  gap: 14px;
  color: var(--dark-brown);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px){

  .episode-thumb img {
    height: 280px;
  }

}

@media(max-width:767px){

  .episode-card-content {
    padding: 24px;
  }

  .episode-title {
    font-size: 1.8rem;
  }

}


/* ============================================================
   EMPTY EPISODES STATE
============================================================ */

.episodes-empty-state {
  padding: 50px 30px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border-radius: 34px;
  box-shadow: var(--card-shadow);
/*   max-width: 850px; */
  margin: auto;
}

.empty-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: rgba(185,89,37,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color1);
}

.empty-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.empty-text {
  max-width: 620px;
  margin: auto;
  color: var(--muted);
  line-height: 2;
  font-size: 1rem;
}

/* ============================================================
   SINGLE EPISODE PAGE
============================================================ */

.single-episode-hero{
  position:relative;
  background:var(--light-blush);
  overflow:hidden;
}

.single-episode-card{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(18px);
  border-radius:40px;
  padding:50px;
  box-shadow:var(--card-shadow);
}

/* ============================================================
   VIDEO
============================================================ */

.episode-video-wrap{
  position:relative;
  overflow:hidden;
  border-radius:32px;
}

.episode-video-wrap img,
.video-thumbnail{
  width:100%;
  height:350px;
  object-fit:cover;
  display:block;
}

.episode-video-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.08)
  );
  display:flex;
  align-items:center;
  justify-content:center;
}

.episode-duration{
  position:absolute;
  bottom:22px;
  right:22px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(12px);
  color:#fff;
  padding:10px 16px;
  border-radius:50px;
  font-size:.75rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* ============================================================
   CONTENT
============================================================ */

.episode-content-wrap{
  padding-left:20px;
}

.inner-episode-title{
  font-size:clamp(2.6rem,2.7vw,4rem);
  line-height:1.05;
  margin:18px 0 24px;
}

.episode-guest{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  color:var(--muted);
  font-size:1rem;
}

.episode-short-desc{
  color:var(--muted);
  line-height:2;
  font-size:1rem;
}

/* ============================================================
   DESCRIPTION
============================================================ */

.episode-description-section{
  background:#fff;
}

.episode-description-content{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(18px);
  border-radius:34px;
  padding:60px;
  box-shadow:var(--card-shadow);
}

.episode-description-text{
  margin-top:30px;
  color:var(--muted);
  line-height:2.1;
  font-size:1.02rem;
}

.episode-description-text p{
  margin-bottom:24px;
}

/* ============================================================
   HIGHLIGHTS
============================================================ */

.episode-highlights-section{
  padding-block:80px;
  background:var(--light-blush);
}

.highlight-card{
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(16px);
  border-radius:30px;
  padding:40px;
  text-align:center;
  height:100%;
  transition:.4s ease;
  box-shadow:var(--card-shadow);
}

.highlight-card:hover{
  transform:translateY(-10px);
}

.highlight-icon{
  width:90px;
  height:90px;
  margin:0 auto 28px;
  border-radius:50%;
  background:rgba(185,89,37,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--color1);
  font-size:2rem;
}

.highlight-card h3{
  margin-bottom:16px;
  font-size:1.6rem;
}

.highlight-card p{
  color:var(--muted);
  line-height:1.9;
}

/* ============================================================
   PLATFORMS
============================================================ */

.listen-platforms-section{
  background:#fff;
}

.platform-card{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(18px);
  border-radius:28px;
  padding:40px 30px;
  text-align:center;
  text-decoration:none;
  display:block;
  transition:.35s ease;
  color:var(--dark-brown);
  box-shadow:var(--card-shadow);
}

.platform-card:hover{
  transform:translateY(-8px);
  color:var(--color1);
}

.platform-card i{
  font-size:3rem;
  margin-bottom:18px;
  display:block;
}

.platform-card h4{
  margin:0;
  font-size:1.2rem;
}

/* ============================================================
   RELATED EPISODES
============================================================ */

.related-episodes-section{
  background:var(--light-blush);
}

.episode-time{
  position:absolute;
  bottom:18px;
  right:18px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  color:#fff;
  padding:8px 14px;
  border-radius:50px;
  font-size:.7rem;
}

/* ============================================================
   VIDEO MODAL
============================================================ */

.video-modal .modal-content{
  background:#000;
  border:none;
  border-radius:30px;
  overflow:hidden;
}

.video-close-btn{
  position:absolute;
  top:20px;
  right:20px;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff;
  z-index:10;
  backdrop-filter:blur(10px);
}

.video-close-btn:hover{
  background:var(--color1);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:991px){

  .single-episode-card{
    padding:30px;
  }

  .episode-content-wrap{
    padding-left:0;
  }

  .episode-video-wrap img,
  .video-thumbnail{
    height:450px;
  }

}

@media(max-width:767px){

  .single-episode-card{
    border-radius:28px;
    padding:22px;
  }

  .episode-video-wrap{
    border-radius:24px;
  }

  .episode-video-wrap img,
  .video-thumbnail{
    height:320px;
  }

  .episode-description-content{
    padding:35px 24px;
    border-radius:26px;
  }

  .highlight-card{
    padding:30px;
  }

}
.ep-title a {
  color: #000;
  text-decoration: navajowhite;
  font-size: 20px;
}
.btn-hero.btn-hero-primary.video-play-btn {
  width: auto;
  height: auto;
  border-radius: 50px;
  border: none;
  backdrop-filter: blur(18px);
  font-size: 14px;
  background: var(--color1);
  color: var(--white);
  border-color: transparent;
}
.newsletter-form > div {
  width: 100%;
}
.newsletter-form > div form p {
  margin-bottom: 0;
display:flex;
}
.newsletter-form > div form p > * {
  width: 100%;
height: 50px !important;
}
.newsletter-form > div form p > button {
  max-width:140px;
display: block;
}