/* =============================================
   NEW NORTH - GLOBAL STYLES
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap');

@font-face {
  font-family: 'Salted';
  src: url('assets/fonts/Salted.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-cream: #FFF8EB;
  --bg-footer: #D9CFC0;
  --orange: #E05A3A;
  --navy: #1A2B6D;
  --navy-dark: #0E1A4A;
  --text-body: #222222;
  --text-grey: #555555;
  --card-black: #111111;
  --card-blue: #1A2B6D;
  --navy-darker: #0D1635;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-body);
  overflow-x: hidden;
}

/* =============================================
   NAVIGATION
   ============================================= */

#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-cream);
  border-bottom: 1.5px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg,
.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

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

/* Hamburger Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Modal */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background-color: var(--bg-cream);
  flex-direction: column;
  padding: 24px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-bottom: 60px;
  margin-top: 10px;
}

.mobile-links-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-links-wrapper a,
.mobile-menu-subscribe {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1.5px solid rgba(26, 43, 109, 0.15);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  cursor: pointer;
}

.mobile-links-wrapper a:hover,
.mobile-links-wrapper a.active,
.mobile-menu-subscribe:hover {
  color: var(--orange);
}

.mobile-logo-wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.mobile-logo-wrap img {
  height: 40px;
  width: auto;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-cream);
}

.hero-text {
  text-align: center;
  padding: 60px 24px 20px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 20px;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 10px;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  cursor: pointer;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.hero-play-btn:hover {
  transform: scale(1.15);
}

.hero-play-btn svg {
  width: 52px;
  height: 52px;
}

/* Perspective grid lines */
.hero-grid {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.hero-grid svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video-frame {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}

.hero-video-frame img,
.hero-video-frame video {
  width: 100%;
  border-radius: 4px;
  border: 4px solid var(--navy);
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  display: block;
}

/* =============================================
   INTRO SECTION
   ============================================= */

.intro-section {
  padding: 64px 24px 64px;
  background-color: var(--bg-cream);
  text-align: center;
  /* Center-aligned for mobile by default */
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 601px) and (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-bottom: 20px;
  }

  .intro-section {
    padding-top: 20px;
  }
}

.intro-illustration {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  display: block;
}

.intro-section h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.intro-section p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* DESKTOP FIX: Large screen alignment to match photo */
@media (min-width: 769px) {

  .intro-section,
  .episodes-section {
    padding: 80px 48px !important;
    text-align: left !important;
  }

  .hosts-section {
    padding: 80px 48px !important;
    text-align: center;
    /* Keep hosts content centered */
  }

  .intro-container {
    max-width: 100%;
    margin-left: 80px;
    margin-right: 80px;
  }

  .intro-section h2 {
    font-size: 48px;
    color: #111e84;
    max-width: none;
    margin-bottom: 24px;
    margin-left: 0;
  }

  .intro-section p {
    font-size: 26px;
    color: #9b6d61;
    max-width: 1400px;
    margin: 0 0 40px 0;
    line-height: 1.5;
  }

  .intro-social {
    display: flex;
    justify-content: flex-start !important;
    align-items: flex-start;
    gap: 24px;
    margin: 0;
  }

  .intro-social img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    display: block;
  }
}

/* =============================================
   EPISODE CARDS SECTION
   ============================================= */

.episodes-section {
  padding: 60px 24px 80px;
  background-color: #1C19A9;
}

.section-title-orange {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--orange);
  text-align: center;
  margin-bottom: 40px;
}

.episodes-section .section-title-orange {
  color: var(--white);
  text-align: left;
  /* Aligned left for mobile too */
}

.episodes-section .section-title-orange,
.hosts-section .section-title-orange {
  margin-left: 0;
  /* Reset for mobile */
  margin-right: 0;
  text-align: left;
  max-width: none;
}

/* DESKTOP override for margins */
@media (min-width: 769px) {

  .episodes-section .section-title-orange,
  .hosts-section .section-title-orange {
    margin-left: 80px;
  }
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  /* Hide scrollbar */
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Episode Card */
.episode-card {
  flex: 0 0 clamp(320px, 34%, 420px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  padding-left: 32px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease;
}

.episode-card:last-child {
  border-right: none;
}

.episode-card:hover {
  transform: translateY(-4px);
}

.episode-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #222;
  overflow: hidden;
}

/* Coming Soon Overlay */
.episode-coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coming-soon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8 !important;
}

.episode-coming-soon-overlay span {
  position: relative;
  z-index: 6;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 4vw, 24px);
  color: #FFFFFF;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 10px;
}

.episode-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.episode-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease;
}

.episode-card:hover .episode-card-play {
  background: rgba(0, 0, 0, 0.35);
}

.episode-card-play svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.episode-card-play svg polygon {
  fill: var(--navy);
}

.episode-card-black {
  background: var(--card-black);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
  align-self: stretch;
  min-width: 0;
  margin-left: -32px;
  margin-right: 16px;
  margin-top: -24px;
  margin-bottom: -16px;
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.episode-card-black h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.episode-card-duration {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  align-self: flex-end;
}

.episode-card-blue {
  background: var(--orange);
  padding: 36px 18px 24px;
  width: 100%;
  flex-grow: 1;
  position: relative;
  z-index: 9;
}

.episode-card-blue p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.5vw, 13px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Carousel Nav Arrow */
.carousel-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 18px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow.active {
  background: var(--navy);
  color: white;
}

.carousel-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: -8px;
}

.carousel-arrow.next {
  right: -8px;
}

/* =============================================
   HOSTS SECTION
   ============================================= */

.hosts-section {
  padding: 16px 24px 64px;
  text-align: center;
  background-color: var(--bg-cream);
}

.hosts-section .section-title-orange {
  text-align: left;
}

.hosts-illustration-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 32px;
}

.hosts-illustration-wrap img.hosts-illustration {
  width: 100%;
  display: block;
  max-width: none;
}

.trigger {
  position: absolute;
  cursor: pointer;
  background: rgba(255, 0, 0, 0);
  /* transparent triggers setup zone */
  z-index: 10;
}

.trigger.left-sailor {
  left: calc(26.28% - 7%);
  top: calc(30.35% - 7%);
  width: 14%;
  height: 14%;
}

.trigger.right-sailor {
  left: calc(61.98% - 7%);
  top: calc(27.10% - 7%);
  width: 14%;
  height: 14%;
}

.hover-face {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8) translate(-50%, -50%);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9;
}

.hover-face.left-hover {
  left: 26.28%;
  top: 30.35%;
  width: 20%;
  /* adjust size to fit */
}

.hover-face.right-hover {
  left: 61.98%;
  top: 27.10%;
  width: 20%;
}



.trigger.left-sailor:hover~.left-hover {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}

.trigger.right-sailor:hover~.right-hover {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}

.host-intro {
  max-width: 700px;
  margin: 0 auto 40px;
}

.host-intro h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.host-intro h3 span {
  color: var(--orange);
  font-weight: 800;
}

.host-intro p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--text-body);
  line-height: 1.75;
}

/* Host-specific name colors */
.host-intro-vasu h3,
.host-intro-vasu h3 span {
  color: var(--navy);
}

.host-intro-santanu h3,
.host-intro-santanu h3 span {
  color: var(--orange);
}

/* Intro Social Icons */
.intro-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.intro-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.intro-social a:hover {
  transform: scale(1.1);
}

.intro-social img {
  width: 38px;
  height: 38px;
  display: block;
}

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

.quote-section {
  text-align: center;
  padding: 60px 24px 80px;
  background-color: var(--bg-cream);
}

.quote-asterisk {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.quote-asterisk svg,
.quote-asterisk img {
  width: 72px;
  height: auto;
}

.quote-text {
  font-family: 'Salted', cursive;
  font-size: clamp(22px, 3.5vw, 30px);
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 24px;
}

.quote-author {
  font-family: 'Salted', cursive;
  font-size: clamp(14px, 2.2vw, 20px);
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: normal;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background-color: var(--bg-footer);
  padding: 48px 48px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 40px;
}

.footer-logo svg,
.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-desc {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.75;
  max-width: 440px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.08);
}

.footer-social img {
  width: 36px;
  height: 36px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

/* Subscribe Nav Button */
.nav-subscribe-btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 3px 3px 0px #1a1a1a;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-subscribe-btn:hover {
  background: #c94e2f;
  transform: translateY(-1px);
  box-shadow: 4px 4px 0px #1a1a1a;
}

/* Mobile Subscribe Button */
.nav-mobile-menu .mobile-subscribe-btn {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 100px;
  padding: 11px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
  width: 100%;
  letter-spacing: 0.02em;
}

.nav-mobile-menu .mobile-subscribe-btn:hover {
  background: #c94e2f;
}

/* =============================================
   SUBSCRIBE MODAL
   ============================================= */

.subscribe-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 248, 235, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.subscribe-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.subscribe-modal {
  background: #FFF8EB;
  border-radius: 16px;
  padding: 40px 36px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 8px 8px 0px var(--orange), 0 16px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.subscribe-overlay.open .subscribe-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.subscribe-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-grey);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.subscribe-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-body);
}

.subscribe-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.3;
  margin-bottom: 12px;
}

.subscribe-subtitle {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 4px;
}

.subscribe-no-spam {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 24px;
  display: block;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(26, 43, 109, 0.25);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-form input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 43, 109, 0.1);
}

.subscribe-form input::placeholder {
  color: #aaa;
}

.subscribe-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.subscribe-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.subscribe-checkbox-row span {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.4;
}

.subscribe-submit-btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  margin-top: 4px;
}

.subscribe-submit-btn:disabled {
  background: #ccc !important;
  color: #666 !important;
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.subscribe-submit-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

/* Thank-you state */
.subscribe-thankyou {
  display: none;
  text-align: center;
  background: var(--orange);
  border-radius: 12px;
  padding: 36px 24px 32px;
  margin-top: 4px;
}

.subscribe-thankyou.visible {
  display: block;
}

.subscribe-thankyou-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto 20px;
}

.subscribe-thankyou-icon svg {
  width: 28px;
  height: 28px;
}

.subscribe-thankyou h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.subscribe-thankyou p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

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

.page-header {
  padding: 48px 80px 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--orange);
}

.back-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

.page-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--orange);
}

/* Episodes List */
.episodes-list {
  padding: 0 80px;
  max-width: 1100px;
}

.episode-list-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1.5px solid rgba(26, 43, 109, 0.15);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.episode-list-item:hover {
  transform: translateX(4px);
}

.episode-list-item:last-child {
  border-bottom: none;
}

.episode-list-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  background: #222;
}

.episode-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-list-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease;
}

.episode-list-item:hover .episode-list-play {
  background: rgba(0, 0, 0, 0.4);
}

.episode-list-play svg {
  width: 54px;
  height: 54px;
}

.episode-list-info h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--text-body);
  line-height: 1.6;
  display: inline;
  background-color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease, padding 0.25s ease;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0;
}

.episode-list-item:hover .episode-list-info h3 {
  background-color: var(--orange);
  color: #fff;
  padding: 1px 5px;
}

/* Block wrapper so inline h3 has spacing below */
.episode-title-wrap {
  display: block;
  margin-bottom: 14px;
  line-height: 1.6;
}

.episode-list-info p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.episode-duration {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.episode-duration svg {
  width: 20px;
  height: 20px;
}

/* Blogs List - large image on left */
.blog-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1.5px solid rgba(26, 43, 109, 0.15);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.blog-list-item:hover {
  transform: translateX(4px);
}

.blog-list-item:last-child {
  border-bottom: none;
}

.blog-list-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  background: #222;
}

.blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-list-item:hover .blog-list-thumb img {
  transform: scale(1.03);
}

.blog-list-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list-info h3 {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-list-info p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* View More Button */
.view-more-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0 80px;
}

.btn-view-more {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
  padding: 14px 48px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-view-more:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

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

/* About Hero */
.about-hero {
  background: var(--bg-cream);
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  overflow: hidden;
}

.about-page {
  background-color: var(--bg-cream);
}

/* DESKTOP About Hero Overlay (White to Deep Purple) */
@media (min-width: 769px) {
  .about-hero {
    background: transparent;
    padding-top: 140px;
    padding-bottom: 0;
    align-items: center;
  }

  .about-hero-text p {
    color: #EA5D41 !important;
    max-width: 1400px;
  }
}

.about-hero-text {
  max-width: 1100px;
  padding: 0 48px;
  text-align: left;
  margin-bottom: 30px;
  width: 100%;
}

.about-goal-label {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  color: #BFAB84;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-hero-text p {
  color: #EA5D41 !important;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.about-hero-text p.about-cursive {
  font-family: 'Salted', cursive !important;
  font-size: clamp(24px, 3.5vw, 42px) !important;
  color: #1C19A9 !important;
  font-weight: normal !important;
  margin-top: 10px;
}

.about-hero-text p:last-child {
  margin-bottom: 0;
}

.about-hero-img {
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  display: block;
}

.about-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* About Content Text */
.about-main-text {
  background-color: var(--bg-cream);
  padding: 100px 48px 60px;
  max-width: 1300px;
  /* Aligned with header/footer */
  margin: 0 auto;
}

.about-main-text p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 18px;
  color: #1C19A9;
  line-height: 1.45;
  margin-bottom: 48px;
  font-weight: 400;
  text-align: left;
}

.about-main-text p.about-quote {
  font-family: 'Salted', cursive !important;
  font-size: clamp(24px, 2.03vw, 40px) !important;
  /* Exactly 26px at 1280px width */
  color: #1C19A9 !important;
  margin-top: 20px;
  margin-bottom: 0 !important;
  letter-spacing: 0.04em;
  font-weight: normal !important;
  line-height: 1.1 !important;
  text-align: left;
}

/* About Illustration */
.about-illustration-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: var(--bg-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.about-illustration-img {
  width: 100%;
  margin: 0;
  display: block;
}

.about-illustration-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-illustration-text {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #1C19A9;
  padding: 80px 48px;
  text-align: left;
  width: 100%;
}

@media (min-width: 769px) {
  .about-illustration-text {
    text-align: center;
  }
}

/* Contact Section */
/* Final Contact Section at end of About */
.about-contact-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 80px;
}

.rotating-compass {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: block;
}

.contact-text-top {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 8px;
}

.contact-email {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.contact-email:hover {
  opacity: 0.8;
}

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

@media (max-width: 900px) {
  #main-nav {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background-color: var(--bg-footer);
  padding: 0;
  width: 100%;
  display: block;
  /* Ensures vertical stacking of children */
}

.episodes-list {
  max-width: 1300px;
  /* Match page-header max-width */
  margin: 0 auto;
  padding: 24px 48px 100px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 48px 48px;
  display: grid;
  grid-template-columns: auto 1.5fr auto auto;
  gap: 40px;
  align-items: start;
}

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

.footer-desc {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.8;
  max-width: 500px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.footer-social-wrap {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}

.footer-social-wrap a {
  transition: transform 0.2s ease;
}

.footer-social-wrap a:hover {
  transform: scale(1.1);
}

.footer-social-wrap img {
  width: 36px;
  height: 36px;
}

.footer-copyright {
  background: var(--navy);
  padding: 14px 24px;
  text-align: center;
  width: 100%;
  clear: both;
}

.footer-copyright p {
  color: #fff;
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

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

.page-header {
  padding: 60px 48px 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.back-link-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #B29B7D;
  transition: opacity 0.2s ease;
}

.back-link-wrap:hover {
  opacity: 0.8;
}

.back-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #B29B7D;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.back-circle svg {
  width: 14px;
  height: 14px;
  stroke-width: 3px;
}

.back-text {
  font-size: 17px;
  font-weight: 500;
  color: #B29B7D;
}

.breadcrumb-nav {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

.breadcrumb-nav a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

.breadcrumb-nav a:hover {
  opacity: 1;
}

.page-header .page-title,
.blogs-page-title,
.about-title-mobile {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  color: var(--orange);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subscribe-btn {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid #111;
  border-radius: 100px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 4px 4px 0px #111;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.subscribe-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #111;
}

.episodes-mobile-subscribe,
.blogs-mobile-subscribe,
.episode-card-footer-mobile {
  display: none;
}

/* Hide page title on desktop for Episodes and Blogs */
@media (min-width: 769px) {

  .episodes-page .page-header .page-title,
  .blogs-page .page-header .blogs-page-title {
    display: none;
  }
}


/* =============================================
   RESPONSIVE (FOOTER & EPISODES)
   ============================================= */

@media (min-width: 769px) and (max-width: 1200px) {
  .episode-list-item {
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .episode-list-info h3 {
    font-size: 20px !important;
  }

  .episode-list-info p {
    font-size: 14px !important;
  }
}

@media (max-width: 850px) {
  .episodes-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 0 48px 60px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .episode-list-item {
    flex: 0 0 clamp(320px, 45%, 500px);
    scroll-snap-align: start;
    display: flex !important;
    flex-direction: column;
    border: 1.5px solid #111 !important;
    border-radius: 12px;
    padding: 0 !important;
    overflow: hidden;
  }

  .view-more-wrap {
    display: none;
  }
}

@media (max-width: 600px) {

  /* ── Two-column grid: LEFT = logo+desc, RIGHT = nav+icons ── */
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: calc(36 / 412 * 100vw) calc(58 / 412 * 100vw) calc(20 / 412 * 100vw) calc(24 / 412 * 100vw);
    align-items: start;
    aspect-ratio: 412 / 368;
    width: 100%;
  }

  /* Left column: logo sits at top */
  .footer-logo {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .footer-logo img {
    height: auto;
    width: calc(130 / 412 * 100vw);
    max-width: 150px;
    display: block;
  }

  /* Left column: paragraph text flows directly below logo */
  .footer-desc {
    grid-column: 1;
    grid-row: 2;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: calc(12 / 412 * 100vw);
    line-height: 1.65;
    color: var(--text-body);
    width: calc(178 / 412 * 100vw);
    aspect-ratio: 178 / 169;
    max-width: 200px;
    margin-top: calc(10 / 412 * 100vw);
  }

  /* Right column: nav links stacked, right-aligned */
  .footer-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(18 / 412 * 100vw);
    align-self: start;
  }

  .footer-nav a {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: calc(12 / 412 * 100vw);
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;
  }

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

  /* Right column: social icons continue below nav links */
  .footer-social-wrap {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(12 / 412 * 100vw);
    margin-top: calc(18 / 412 * 100vw);
    align-self: start;
  }

  .footer-social-wrap img {
    width: calc(48 / 412 * 100vw);
    height: calc(48 / 412 * 100vw);
    max-width: 58px;
    max-height: 58px;
  }

  /* Copyright bar */
  .footer-copyright {
    padding: calc(12 / 412 * 100vw) calc(24 / 412 * 100vw);
  }

  .footer-copyright p {
    font-size: calc(9 / 412 * 100vw);
    line-height: 1.5;
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* Page Header Mobile Overrides */
  .page-header {
    padding: 32px 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .breadcrumb {
    gap: 10px;
    margin-bottom: 12px;
  }

  .back-circle {
    width: 32px;
    height: 32px;
  }

  .back-circle svg {
    width: 18px;
    height: 18px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }

  .page-header .page-title,
  .blogs-page-title,
  .about-title-mobile {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 800;
    font-size: calc(36 / 412 * 100vw);
    margin-bottom: 24px;
    /* match relative spacing if needed, but keeping 16px or 24px? user last said match episodes which was 16px, but let's check */
    line-height: 1.1;
  }

  .subscribe-btn {
    padding: 10px 28px;
    font-size: 15px;
    box-shadow: 3px 3px 0px #111;
  }

  .episodes-mobile-subscribe,
  .blogs-mobile-subscribe,
  .mobile-subscribe-hero {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    border: 1.5px solid #111;
    border-radius: 100px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;

    /* Responsive size: 131x47 at 412vw */
    width: calc(131 / 412 * 100vw);
    aspect-ratio: 131 / 47;
    font-size: calc(16 / 412 * 100vw);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 5px 5px 0px #111;
    transition: transform 0.1s, box-shadow 0.1s;
    padding: 0;
    /* Aspect ratio handles padding */
  }

  .episodes-mobile-subscribe:active,
  .blogs-mobile-subscribe:active,
  .mobile-subscribe-hero:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #111;
  }

  /* Episode Card Mobile */
  .episodes-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 24px 60px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .episodes-list::-webkit-scrollbar {
    display: none;
  }

  .episode-list-item {
    flex: 0 0 calc(100vw - 48px);
    scroll-snap-align: center;
    display: flex !important;
    /* show hidden items in carousel */
    flex-direction: column;
    background: transparent;
    border: 1.5px solid #111 !important;
    border-radius: 20px;
    padding: 0 !important;
    margin-bottom: 0 !important;
    text-decoration: none;
    overflow: hidden;
    transform: none !important;
    /* disable desktop hover shift */
  }

  /* Disable hover effects on mobile carousels (Episodes page and Index page) */
  .episode-list-item:hover,
  .episode-card:hover {
    transform: none !important;
  }

  .episode-list-item:hover .episode-list-info h3 {
    background-color: transparent !important;
    color: #1A2B6D !important;
    padding: 0 !important;
  }

  .episode-list-thumb {
    width: 100%;
    align-self: stretch;
    aspect-ratio: 1.6;
    /* refined aspect ratio to prevent stretching */
    position: relative;
    overflow: hidden;
    border-bottom: 1.5px solid #111;
  }

  .episode-list-info {
    width: 100%;
    align-self: stretch;
    padding: 16px 18px 0;
    /* reduced padding */
    background: #FFFAF1;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
  }

  .episode-list-info h3 {
    font-size: 24px;
    /* slightly smaller to save vertical space */
    color: #1A2B6D;
    margin-bottom: 8px;
    /* tightened */
    background: none !important;
    padding: 0 !important;
    font-weight: 800;
    line-height: 1.25;
    display: block !important;
  }

  .episode-list-info p {
    font-size: 14.5px;
    color: #111;
    line-height: 1.45;
    margin-bottom: 12px;
    /* tightened gap */
    font-weight: 400;
  }

  .episode-meta-mobile {
    margin-top: auto;
    padding-bottom: 12px;
    /* tightened buffer before footer */
  }

  .episode-duration {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1A2B6D;
  }

  .episode-card-footer-mobile {
    display: flex;
    width: 100%;
    align-self: stretch;
    background: var(--orange);
    padding: 18px 24px;
    /* tightened footer height */
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin-top: 0;
  }

  .card-arrow {
    background: transparent;
    border: 2px solid #1A2B6D;
    color: #1A2B6D;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0.4;
  }

  .card-arrow svg {
    width: 24px;
    height: 24px;
  }

  /* Active state for prev/next: solid blue background, white arrow */
  .card-arrow.active {
    background: #1A2B6D;
    color: #ffffff;
    opacity: 1;
  }

  .card-arrow svg {
    width: 24px;
    height: 24px;
  }

  /* Subscribe button width */
  .subscribe-btn-mobile-header {
    background: #E05A3A;
    color: #fff;
    border: 1.5px solid #111;
    border-radius: 100px;
    padding: 8px 32px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 3px 3px 0px #111;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    min-width: 130px;
    text-align: center;
  }
}

/* Device-specific visibility utility classes - GLOBAL SCOPE */
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

/* ====== ABOUT MOBILE REDESIGN (Targets 412px reference) ====== */

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .about-hero {
    padding: 32px 24px 0;
    /* No bottom gap */
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .about-title-mobile,
  .mobile-subscribe-hero,
  .about-hero-img-mobile,
  .carousel-container-mobile,
  .about-bottom-quote-mobile {
    display: block;
  }

  .about-hero-img-mobile {
    width: 100vw;
    margin-left: -24px;
    margin-top: -24px;
    overflow: hidden;
  }

  .about-hero-img-mobile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .about-hero-text {
    padding: 0;
    max-width: 100%;
    margin-bottom: 24px;
    text-align: left;
  }

  .about-goal-label {
    text-align: left;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .about-hero-text p {
    font-size: clamp(18px, 6vw, 26px) !important;
    line-height: 1.35;
    color: #EA5D41 !important;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
  }

  .about-hero-text p.about-cursive {
    font-family: 'Salted', cursive !important;
    font-size: clamp(26px, 9vw, 38px) !important;
    color: #1C19A9 !important;
    font-weight: normal !important;
    margin-top: 8px;
  }

  /* Carousel Core Styling */
  .carousel-container-mobile {
    position: relative;
    width: 100vw;
    margin-top: 80px;
    /* Moved down slightly */
    overflow: hidden;
  }

  .about-hero .carousel-container-mobile {
    margin-left: -24px;
    margin-bottom: -40px;
    /* Pulls image down to overlap with the next section */
    /* Breakout from parent padding 24px */
  }

  .about-illustration-wrap .carousel-container-mobile {
    margin-left: 0;
  }

  .carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Hide Scrollbar */
  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Carousel Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 0;
    /* Removed bottom space to sit flush */
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D1D1;
    transition: background 0.3s;
  }

  .dot.active {
    background: var(--orange);
  }

  /* Illustration Breakout */
  .about-illustration-wrap {
    width: 100vw;
    margin-left: 0;
    margin-top: -80px;
    padding: 0;
    background: var(--bg-cream);
    text-align: center;
  }

  .nested-dots {
    margin: 15px 0;
  }

  .about-illustration-text {
    font-size: 20px;
    font-weight: 800;
    color: #1C19A9;
    padding: 0 40px 40px;
    line-height: 1.2;
    margin: 0;
    text-align: center;
  }

  /* Quote Section Mobile */
  .about-bottom-quote-mobile {
    padding: 60px 40px;
    background: #F8F3E9;
    text-align: center;
  }

  .quote-asterisk img {
    width: 40px;
    margin-bottom: 20px;
  }

  .George-eliot-quote {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.1em;
    line-height: 1.6;
  }

  .George-eliot-quote span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--navy);
  }

  /* Adjustment to About Main Text (existing) */
  .about-main-text {
    padding: 40px 20px;
    background: var(--bg-cream);
  }

  .about-main-text p {
    font-size: 16px !important;
    color: #1C19A9 !important;
    font-family: 'Hanken Grotesk', sans-serif !important;
    font-weight: 400 !important;
    text-align: left;
  }

  /* Split Carousel Logic */
  .carousel-slide.slide-split {
    position: relative;
    overflow: hidden;
    height: auto;
  }

  .carousel-slide.hero-slide {
    aspect-ratio: 426.6 / 577;
    /* or 1280/3 / 577 */
  }

  .carousel-slide.illust-slide {
    aspect-ratio: 426 / 639;
    /* 1278/3 / 639 */
  }

  .carousel-slide.slide-split img.carousel-img-split {
    position: absolute;
    top: 0;
    width: 320vw;
    /* Reduced from 350vw to make it slightly smaller */
    height: 100%;
    object-fit: cover;
    max-width: none !important;
  }

  /* Quote mobile center */
  .quote-section {
    padding: 32px 24px 48px;
  }

  .quote-asterisk img {
    width: 48px;
  }

  .quote-text {
    font-size: 20px;
    line-height: 1.4;
  }

  .quote-author {
    font-size: 14px;
  }

  /* Hide view more on mobile carousel */
  .view-more-wrap {
    display: none;
  }
}