:root {
  --ink: #111111;
  --paper: #fffdf8;
  --cream: #f5f1ea;
  --orange: #ff6b28;
  --yellow: #ffd447;
  --burgundy: #7b1435;
  --muted: #6c6965;
  --line: #ddd7cd;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 24px 70px rgba(20, 16, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 212, 71, .22), transparent 25%),
    var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
}

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

.top-line {
  height: 7px;
  background: linear-gradient(90deg, #d31532, var(--orange), var(--yellow));
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  background: var(--burgundy);
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 110px;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #9c602a;
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.social-section h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: .94;
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  max-width: 620px;
  margin: 32px 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.button-primary {
  color: white;
  background: var(--ink);
}

.button-secondary {
  background: transparent;
}

.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.cover-card {
  position: relative;
  z-index: 2;
  width: min(420px, 82vw);
  aspect-ratio: 1 / 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background:
    linear-gradient(150deg, rgba(255,255,255,.14), transparent 25%),
    radial-gradient(circle at 70% 18%, #ffb13b, transparent 33%),
    linear-gradient(135deg, #8a1339 0%, #ce1c3f 43%, #ff6b28 75%, #ffd447 100%);
  border-radius: 46px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.cover-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 34px;
}

.cover-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.08em;
}

.cover-card span {
  position: relative;
  z-index: 1;
  font-weight: 900;
  letter-spacing: .2em;
}

.sticker {
  position: absolute;
  right: -2%;
  bottom: 7%;
  z-index: 3;
  padding: 22px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-align: center;
  transform: rotate(9deg);
}

.orbit {
  position: absolute;
  border: 2px solid rgba(123, 20, 53, .16);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 620px;
  height: 370px;
  transform: rotate(25deg);
}

.listen-section,
.episodes-section,
.about-section,
.social-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 120px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.social-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.platform-card {
  min-height: 112px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(20,16,10,.05);
  transition: transform .2s ease, border-color .2s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.platform-card small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
}

.platform-card strong {
  font-size: 1.3rem;
}

.platform-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 16px;
  font-size: 1.7rem;
  font-weight: 900;
}

.spotify { background: #1ed760; color: #0a2414; }
.apple { background: linear-gradient(145deg, #b45cff, #7030d9); }
.deezer { background: linear-gradient(145deg, #ef3b7d, #7939d7); }
.youtube { background: #ff0033; }

.arrow {
  color: #8d8982;
  font-size: 1.5rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.episode-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(20,16,10,.08);
}

.episode-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.episode-image {
  position: relative;
  min-height: 390px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.episode-image::before,
.episode-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.episode-image::after {
  z-index: -1;
  background:
    linear-gradient(to top, rgba(0,0,0,.7), transparent 65%),
    radial-gradient(circle at 75% 30%, rgba(255,255,255,.22), transparent 25%);
}

.episode-one::before {
  background: linear-gradient(135deg, #0f4457, #d8792c 62%, #ffe05e);
}

.episode-two::before {
  background: linear-gradient(135deg, #2d203a, #89536c 53%, #ffcb75);
}

.episode-three::before {
  background: linear-gradient(135deg, #2a5b4b, #b5673b 55%, #fff0a8);
}

.episode-number {
  align-self: flex-end;
  color: rgba(255,255,255,.9);
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
}

.episode-image-copy {
  max-width: 92%;
  color: white;
}

.episode-image-copy small {
  display: block;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .13em;
}

.episode-image-copy strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.episode-content {
  padding: 38px;
}

.featured .episode-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.episode-label {
  color: #a5652e;
  font-family: "Montserrat", sans-serif;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.episode-content h3 {
  margin: 13px 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.65rem;
  line-height: 1.14;
}

.episode-content p:not(.episode-label) {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  font-weight: 900;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: 70px;
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 70px;
  color: white;
  background: var(--ink);
  border-radius: 46px;
}

.about-number {
  align-self: center;
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.12em;
  transform: rotate(-8deg);
}

.about-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #d6d2ca;
  font-size: 1.12rem;
  line-height: 1.8;
}

.social-section {
  padding: 54px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.social-links a:hover {
  color: var(--orange);
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 45px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  color: var(--muted);
}

.footer-logo {
  color: var(--burgundy);
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    z-index: 20;
    padding: 22px;
    display: none;
    flex-direction: column;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 50px;
  }

  .hero-art {
    min-height: 530px;
  }

  .platform-grid,
  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .episode-card.featured {
    display: block;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 44px 30px;
  }

  .about-number {
    font-size: 8rem;
  }

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

@media (max-width: 620px) {
  .site-header,
  .hero,
  .listen-section,
  .episodes-section,
  .about-section,
  .social-section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: auto;
    margin-bottom: 80px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 430px;
  }

  .cover-card {
    width: min(330px, 82vw);
    padding: 35px;
    border-radius: 36px;
  }

  .cover-card p {
    font-size: 4.5rem;
  }

  .sticker {
    right: -2%;
    bottom: 4%;
    padding: 16px;
    font-size: .78rem;
  }

  .orbit-one {
    width: 370px;
    height: 370px;
  }

  .orbit-two {
    width: 420px;
    height: 270px;
  }

  .listen-section,
  .episodes-section,
  .about-section,
  .social-section {
    margin-bottom: 80px;
  }

  .platform-card {
    min-height: 98px;
    padding: 18px;
  }

  .platform-icon {
    width: 50px;
    height: 50px;
  }

  .episode-image {
    min-height: 340px;
    padding: 24px;
  }

  .episode-content {
    padding: 26px;
  }

  .about-card {
    border-radius: 30px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}.brand-logo {
  width: 145px;
  height: auto;
  display: block;
}.episode-one::before {
  background: url("jerome-delafosse.jpg") center / cover no-repeat !important;
}.episode-two::before {
  background: url("camille-lorillon.jpg") center / cover no-repeat !important;
}.footer-logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-number {
  color: #ffd447;
  font-size: 42px;
  font-weight: 900;
}

.footer-logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}.footer-logo-image {
  width: 80px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain;
}

.footer-logo {
  background: none !important;
  color: transparent !important;
}.about-number {
  display: flex !important;
  align-items: center;
  justify-content: center;
  transform: none !important;
}

.about-logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}.hero-main-logo {
  width: 420px;
  max-width: 85%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(20, 16, 10, 0.15));
}.new-hero-title span {
  font-size: 0.72em;
  line-height: 1.05;
}.platform-icon.instagram {
  color: white;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.platform-icon.tiktok {
  color: white;
  background: #111111;
}.team-section {
  width: min(1180px, calc(100% - 40px));
  margin: 80px auto;
  padding: 70px;
  background: #fffec0;
  border-radius: 34px;
}

.team-section h2 {
  max-width: 800px;
  margin: 12px 0 32px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
}

.team-text {
  max-width: 850px;
  font-size: 20px;
  line-height: 1.65;
}

.team-text p {
  margin: 0 0 20px;
}

@media (max-width: 700px) {
  .team-section {
    padding: 40px 24px;
  }

  .team-text {
    font-size: 17px;
  }
}.team-section h2 {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}.episode-three::before {
  background: url("maxime-lagarde.jpg") center / cover no-repeat !important;
}.hero-art .orbit {
  display: none !important;
}.hero-copy .hero-actions {
  margin-top: 65px !important;
}.team-section {
  background: transparent !important;
}

.team-text {
  font-weight: 650;
  color: #111111;
}

.team-photo {
  width: 100%;
  height: 520px;
  margin-top: 45px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

@media (max-width: 700px) {
  .team-photo {
    height: 340px;
  }
}.more-text{
    display:none;
}

.episode-description{
    color:white;
    font-size:18px;
    line-height:1.6;
}

.read-more-btn{

    margin-top:20px;

    background:none;

    border:none;

    color:white;

    font-weight:700;

    cursor:pointer;

    font-size:16px;

    padding:0;

}

.read-more-btn:hover{

    text-decoration:underline;

}