:root {
  --bg: #f6efea;
  --card: #fbf7f3;
  --text: #3f4252;
  --muted: #79717f;
  --blue: #2d3fb7;
  --blue-deep: #2542be;
  --yellow: #e7c047;
  --line: #e7ddd4;
  --shadow: 0 18px 40px rgba(48, 42, 86, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  width: min(calc(100% - 48px), var(--content));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: rgba(251, 247, 243, 0.76);
  border: 1px solid rgba(231, 221, 212, 0.9);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  position: sticky;
  top: 18px;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(45, 63, 183, 0.05);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title,
.site-header h1,
.hero-copy h1,
h2 {
  font-family: 'Playfair Display', serif;
}

.brand-title {
  font-size: 2rem;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 0.95rem;
  color: #7080d1;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.98rem;
  color: rgba(63, 66, 82, 0.72);
}

.site-nav a {
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: #594204;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 10px 22px rgba(231, 192, 71, 0.22);
}

main {
  width: min(calc(100% - 48px), var(--content));
  margin: 28px auto 0;
}

.section-card {
  background: transparent;
  border-radius: var(--radius-xl);
}

.hero {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 52px;
  align-items: center;
  padding: 30px 8px 26px;
}

.hero-cover-wrap {
  align-self: start;
}

.hero-cover {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding-right: 20px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 650px;
  color: var(--blue);
  font-size: clamp(2.6rem, 4vw, 4.55rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero-underline,
.heading-underline {
  width: 130px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: 18px;
}

.hero-features {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 14px;
  min-height: 110px;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 6px;
  width: 1px;
  height: 86px;
  background: var(--line);
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: #7b77d6;
}

.feature-icon svg,
.social-link svg,
.follow-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.feature-item span {
  max-width: 150px;
  color: #5a5d74;
  font-size: 1rem;
  line-height: 1.4;
}

.hero-text {
  margin: 26px 0 0;
  max-width: 720px;
  color: #67606b;
  font-size: 1.04rem;
}

.player-section {
  margin-top: 12px;
  padding: 0 8px;
}

.player-shell {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.episodes-section {
  margin-top: 56px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 span {
  display: inline;
}

.section-link,
.media-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(45, 63, 183, 0.22);
  border-radius: 999px;
  color: #6f7de0;
  background: rgba(255,255,255,.52);
  font-weight: 700;
}

.section-link::after,
.media-link::after {
  content: '→';
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.episode-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.episode-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(34, 43, 92, 0.08);
}

.episode-content {
  padding: 12px 2px 0;
}

.episode-content h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.04rem;
  line-height: 1.25;
  font-weight: 700;
}

.episode-place {
  margin: 4px 0 8px;
  color: #5a8a52;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.episode-quote {
  margin: 0;
  color: #5d5b64;
  font-size: 0.96rem;
  line-height: 1.5;
}

.season-two {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: center;
  padding: 24px 0 10px;
}

.season-two-copy p {
  margin: 22px 0 0;
  font-size: 1.16rem;
  color: #57545d;
}

.season-two-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.season-two-gallery img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-section {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(231, 221, 212, 0.9);
  box-shadow: var(--shadow);
  padding: 36px;
}

.about-image-wrap img {
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(45, 63, 183, 0.08);
}

.about-copy h2 {
  max-width: 540px;
}

.about-copy p {
  margin: 16px 0 0;
  font-size: 1.03rem;
  color: #5e5962;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(45, 63, 183, 0.16);
  background: rgba(255,255,255,.68);
  font-weight: 700;
  color: #595d6f;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link.instagram { color: #dc7cb4; }
.social-link.linkedin { color: #5f83db; }

.support-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.support-card {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(231, 221, 212, 0.9);
  padding: 32px 34px;
  box-shadow: 0 14px 28px rgba(31, 36, 72, 0.05);
}

.follow-links {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.follow-links a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  color: var(--blue);
  font-weight: 700;
}

.follow-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.follow-icon svg {
  width: 20px;
  height: 20px;
}

.instagram-bg {
  background: rgba(241, 164, 208, 0.2);
  color: #dd77b2;
}

.linkedin-bg {
  background: rgba(112, 148, 230, 0.18);
  color: #6990df;
}

.follow-arrow {
  color: #7d84d9;
  font-size: 1.2rem;
}

.benefit-list {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #58565e;
  font-weight: 600;
}

.benefit-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.heart { background: rgba(243, 188, 170, 0.26); color: #df876d; }
.star { background: rgba(244, 225, 160, 0.36); color: #e0b329; }
.bell { background: rgba(170, 189, 248, 0.28); color: #6480dd; }

.media-partners {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(231, 221, 212, 0.9);
  padding: 34px;
  box-shadow: 0 14px 28px rgba(31, 36, 72, 0.05);
}

.media-col {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.figaro-logo {
  margin-top: 26px;
  width: 220px;
}

.media-col p {
  margin: 18px 0 0;
  max-width: 390px;
  color: #59565f;
  font-size: 1.32rem;
  line-height: 1.5;
}

.media-link {
  margin-top: 18px;
}

.partners-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.partners-logos a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 18px;
  background: rgba(255,255,255,0.55);
  border-radius: 16px;
  border: 1px solid rgba(231, 221, 212, 0.85);
}

.partners-logos img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
}

.partners-logos span {
  margin-top: 18px;
  color: #6b7868;
  font-weight: 600;
}

.contact-section {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(231, 221, 212, 0.9);
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-copy p {
  margin: 18px 0 0;
  color: #5d5863;
}

.contact-note {
  font-size: 0.95rem;
}

.contact-note a {
  color: var(--blue);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #57576b;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 63, 183, 0.14);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 66, 190, 0.4);
  box-shadow: 0 0 0 4px rgba(37, 66, 190, 0.08);
}

.form-btn {
  border: 0;
  cursor: pointer;
  width: fit-content;
  margin-top: 4px;
}

.site-footer {
  margin-top: 44px;
  background: var(--blue-deep);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 24px 16px 26px;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(45, 63, 183, 0.14);
  background: rgba(255,255,255,0.76);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
}

@media (max-width: 1120px) {
  .hero,
  .season-two,
  .about-section,
  .contact-section,
  .media-partners {
    grid-template-columns: 1fr;
  }

  .episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .media-col {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }
}

@media (max-width: 880px) {
  .site-header {
    border-radius: 22px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .hero-features,
  .field-row,
  .partners-logos,
  .season-two-gallery,
  .episode-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  main {
    width: min(calc(100% - 24px), var(--content));
  }

  .brand-title {
    font-size: 1.5rem;
  }

  .hero,
  .about-section,
  .contact-section,
  .support-card,
  .media-partners {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-features,
  .field-row,
  .partners-logos,
  .season-two-gallery,
  .episode-grid {
    grid-template-columns: 1fr;
  }

  .social-row {
    flex-direction: column;
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .listen-btn,
  .section-link,
  .media-link,
  .social-link {
    width: fit-content;
  }
}


/* 2026-04 visual refinements */
:root {
  --bg: #f6efea;
  --hero-bg: #f9ede6;
  --season1-bg: #fef7f2;
  --season2-bg: #f7efe8;
  --about-bg: #fdeee8;
  --shadow-soft: 0 20px 46px rgba(43, 39, 79, 0.10);
}

.hero {
  background: var(--hero-bg);
  border-radius: 28px;
  padding: 34px 36px 32px;
}

.hero-copy h1,
.hero-title {
  max-width: 590px;
  font-size: clamp(2.15rem, 3vw, 3.5rem);
  line-height: 1.08;
  font-weight: 600;
}

.title-highlight {
  position: relative;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 0.55em), rgba(231, 192, 71, 0.88) 0);
  background-repeat: no-repeat;
  background-size: 100% 0.58em;
  background-position: 0 88%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.title-highlight::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0.1em;
  height: 0.22em;
  background: rgba(231, 192, 71, 0.9);
  border-radius: 999px;
  transform: rotate(-1.3deg);
  filter: blur(0.2px);
  z-index: -1;
}

.hero-copy .title-highlight {
  background-size: 100% 0.48em;
  background-position: 0 92%;
}

h2 {
  font-size: clamp(1.9rem, 2.45vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.heading-underline,
.hero-underline {
  display: none;
}

.feature-item span {
  max-width: 160px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.player-shell {
  box-shadow: 0 24px 56px rgba(43, 39, 79, 0.16);
}

.season-two {
  margin-top: 56px;
  background: var(--season2-bg);
  border-radius: 28px;
  padding: 34px 36px;
}

.episodes-section {
  margin-top: 30px;
  background: var(--season1-bg);
  border-radius: 28px;
  padding: 34px 36px 36px;
}

.about-section {
  background: var(--about-bg);
  border: 1px solid rgba(231, 221, 212, 0.72);
  box-shadow: var(--shadow-soft);
}

.section-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.episode-content h3 {
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 700;
}

.partners-logos a {
  min-height: 160px;
}

.partners-logos span {
  display: none;
}

.media-col p {
  font-size: 1.18rem;
}

@media (max-width: 640px) {
  .hero,
  .season-two,
  .episodes-section {
    padding: 24px 18px;
  }
}


/* 2026-04 title asset integration + nav simplification */
.site-header {
  justify-content: space-between;
  padding: 16px 22px;
}

.brand-subtitle,
.site-nav,
.menu-toggle {
  display: none !important;
}

.header-listen-btn {
  flex: 0 0 auto;
}

.hero-copy h1,
.hero-title {
  max-width: 640px;
  font-size: clamp(2.05rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 600;
}

.title-highlight,
.title-highlight::after {
  background: none !important;
  content: none !important;
}

.title-with-underline {
  position: relative;
  display: inline-block;
}

.title-underline {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.title-with-underline-hero,
.title-with-underline-s1,
.title-with-underline-s2,
.title-with-underline-generic {
  z-index: 1;
}

.title-underline-hero {
  width: 78%;
  bottom: calc(-0.18em - 10px);
}

.title-underline-s1 {
  width: 90%;
  bottom: calc(-0.30em - 10px);
}

.title-underline-s2 {
  width: 47%;
  bottom: calc(-0.26em - 10px);
}

.title-underline-generic {
  width: 100%;
  bottom: calc(-0.24em - 10px);
}

.social-link.instagram {
  color: #2d3fb7;
  background: rgba(231, 192, 71, 0.18);
  border-color: rgba(231, 192, 71, 0.45);
}

.instagram-bg {
  background: rgba(231, 192, 71, 0.22);
  color: #2d3fb7;
}

@media (max-width: 880px) {
  .site-header {
    border-radius: 999px;
    align-items: center;
    flex-wrap: nowrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero-title .title-underline-hero,
  .section-title .title-underline {
    display: none;
  }
}


/* 2026-04 hero signature underline */
.title-with-underline-hero-signature {
  position: relative;
  display: inline-block;
  max-width: 620px;
  padding-bottom: 22px;
}

.title-underline-hero-signature {
  position: absolute;
  left: -6px;
  bottom: -16px;
  width: 102%;
  max-width: 640px;
  z-index: 0;
  pointer-events: none;
}

.title-with-underline-hero-signature > span,
.title-with-underline-hero-signature {
  z-index: 1;
}

@media (max-width: 640px) {
  .title-with-underline-hero-signature {
    padding-bottom: 16px;
  }

  .title-underline-hero-signature {
    left: -2px;
    width: 100%;
    bottom: -14px;
  }
}


.season-two-episodes {
  margin-top: 56px;
}

.season-two-episodes .episode-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

@media (max-width: 768px) {
  .season-two-episodes .episode-grid {
    grid-template-columns: 1fr;
  }
}
