/* ======================================================
   ANTIPODE — Maquette de refonte
   Couleurs officielles : rouge Antipode & bleu Antipode
   ====================================================== */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #ffffff;
  --color-surface: #fafafa;
  --color-surface-2: #f4f4f6;
  --color-surface-offset: #eeeef2;
  --color-divider: #e5e5ea;
  --color-border: #d4d4d8;

  /* Text */
  --color-text: #0c0c14;
  --color-text-muted: #55555f;
  --color-text-faint: #9999a3;
  --color-text-inverse: #ffffff;

  /* Antipode brand */
  --color-red: #e3142c;
  --color-red-hover: #b70f24;
  --color-red-active: #8a0a1b;
  --color-red-highlight: #fde1e5;

  --color-blue: #1b3a8a;
  --color-blue-hover: #142c6b;
  --color-blue-active: #0e1f4f;
  --color-blue-highlight: #dbe2f3;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.1 0.02 260 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.1 0.02 260 / 0.1);
  --shadow-lg: 0 20px 48px oklch(0.1 0.02 260 / 0.16);

  /* Widths */
  --content-narrow: 720px;
  --content-default: 1080px;
  --content-wide: 1280px;

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Inter', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', 'Helvetica Neue', sans-serif;
}

/* ====== RESET + BASE ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  max-width: 70ch;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ====== UTIL ====== */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-red);
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ====== TOP BAR ====== */
.topbar {
  background: var(--color-blue);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-2);
  min-height: 36px;
}

.topbar__localisation {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  opacity: 0.95;
}

.topbar__localisation .pin {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar__links {
  display: flex;
  gap: var(--space-5);
}

.topbar__links a {
  opacity: 0.85;
  transition: opacity var(--transition);
}

.topbar__links a:hover {
  opacity: 1;
}

/* ====== HEADER ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    box-shadow var(--transition),
    background var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo__mark {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-inline-start: var(--space-4);
}

.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-block: var(--space-2);
}

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

.nav a.is-active {
  color: var(--color-red);
}

.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-inline-start: auto;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
  transition:
    background var(--transition),
    color var(--transition);
}

.icon-btn:hover {
  background: var(--color-surface-2);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-text-inverse);
}

.btn--primary:hover {
  background: var(--color-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px oklch(0.55 0.22 20 / 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-text);
  background: var(--color-surface-2);
}

.btn--blue {
  background: var(--color-blue);
  color: var(--color-text-inverse);
}

.btn--blue:hover {
  background: var(--color-blue-hover);
}

/* Burger */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}

/* ====== HERO — ÉCOUTE EN DIRECT ====== */
.hero {
  position: relative;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24))
    clamp(var(--space-16), 10vw, var(--space-32));
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 60% at 85% 20%,
      oklch(from var(--color-red) l c h / 0.08),
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 80%,
      oklch(from var(--color-blue) l c h / 0.08),
      transparent 70%
    );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__content h1 {
  font-size: var(--text-3xl);
  margin-block: var(--space-4) var(--space-5);
}

.hero__content h1 .accent {
  color: var(--color-red);
  font-style: italic;
  font-weight: 700;
}

.hero__lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero__actions .btn {
  padding: 14px 22px;
  font-size: var(--text-base);
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

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

/* Player card overlay */
.player-card {
  position: absolute;
  left: -6%;
  bottom: -8%;
  background: var(--color-text);
  color: var(--color-text-inverse);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-lg);
  min-width: 360px;
  max-width: 92%;
  backdrop-filter: blur(20px);
}

.player-card__play {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-red);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    transform var(--transition);
}

.player-card__play:hover {
  background: var(--color-red-hover);
  transform: scale(1.05);
}

.player-card__play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.player-card__meta {
  flex: 1;
  min-width: 0;
}

.player-card__live {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-red);
  margin-bottom: var(--space-2);
}

.player-card__live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 0 oklch(from var(--color-red) l c h / 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 oklch(from var(--color-red) l c h / 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px oklch(from var(--color-red) l c h / 0);
  }
  100% {
    box-shadow: 0 0 0 0 oklch(from var(--color-red) l c h / 0);
  }
}

.player-card__track {
  font-weight: 700;
  font-size: var(--text-base);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.player-card__artist {
  font-size: var(--text-sm);
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ====== SECTIONS ====== */
section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.section-header__text {
  max-width: 600px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-blue);
  transition: gap var(--transition);
}

.link-arrow:hover {
  gap: var(--space-3);
  color: var(--color-red);
}

/* ====== STUDIO BLOCK ====== */
.studio {
  background: var(--color-surface);
}

.studio__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-10);
  align-items: center;
}

.studio__image {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.studio__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0.12 0.03 260 / 0.55));
  pointer-events: none;
}

.studio__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 48px oklch(0 0 0 / 0.3);
  transition: transform var(--transition);
}

.studio__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.studio__play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.studio__soon {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--color-blue);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.studio__title {
  font-size: var(--text-2xl);
  margin-block: var(--space-3) var(--space-4);
}

.studio__text {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}

/* ====== CONCOURS / FEATURED CARDS ====== */
.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
}

.card-big {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  color: white;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

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

.card-big img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-big::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.1 0.02 260 / 0.1) 0%,
    oklch(0.1 0.02 260 / 0.85) 100%
  );
}

.card-big__content {
  position: absolute;
  inset: 0;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 1;
}

.card-big__tag {
  display: inline-block;
  background: var(--color-red);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  margin-bottom: var(--space-3);
}

.card-big__title {
  font-size: var(--text-xl);
  color: white;
  margin-bottom: var(--space-2);
}

.card-big__meta {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin-bottom: var(--space-4);
}

.card-big__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  width: fit-content;
}

/* Communiquer side card */
.card-blue {
  background: var(--color-blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-blue::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: oklch(from var(--color-red) l c h / 0.3);
  filter: blur(40px);
}

.card-blue h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  position: relative;
}

.card-blue p {
  opacity: 0.88;
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  position: relative;
}

.card-blue__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  position: relative;
}

.card-blue__actions a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: oklch(1 0 0 / 0.12);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: background var(--transition);
}

.card-blue__actions a:hover {
  background: oklch(1 0 0 / 0.22);
}

/* ====== PODCASTS ====== */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.podcast-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

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

.podcast-card__cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
  background: var(--color-surface-2);
}

.podcast-card__cover--gradient-1 {
  background: linear-gradient(135deg, #e3142c, #8a0a1b);
}
.podcast-card__cover--gradient-2 {
  background: linear-gradient(135deg, #1b3a8a, #0e1f4f);
}
.podcast-card__cover--gradient-3 {
  background: linear-gradient(135deg, #e3142c 0%, #1b3a8a 100%);
}
.podcast-card__cover--gradient-4 {
  background: linear-gradient(135deg, #2a2a38, #0c0c14);
}

.podcast-card__cover-title {
  position: absolute;
  inset: 0;
  padding: var(--space-4);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-display);
}

.podcast-card__cover-title .num {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  opacity: 0.7;
  font-weight: 500;
}

.podcast-card__cover-title .name {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.1;
}

.podcast-card__play-small {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.podcast-card:hover .podcast-card__play-small {
  opacity: 1;
}

.podcast-card__play-small svg {
  width: 14px;
  height: 14px;
  margin-left: 1px;
}

.podcast-card__category {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.podcast-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.podcast-card__duration {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ====== AGENDA + ACTUS SPLIT ====== */
.split {
  background: var(--color-surface);
}

.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.agenda-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.agenda-item:hover {
  border-color: var(--color-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.agenda-date {
  text-align: center;
  background: var(--color-red-highlight);
  color: var(--color-red);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-1);
  font-family: var(--font-display);
}

.agenda-date__day {
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
}

.agenda-date__month {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.agenda-body__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: 2px;
}

.agenda-body__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.agenda-body__meta strong {
  color: var(--color-text);
  font-weight: 500;
}

/* Actus */
.news-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-divider);
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.news-item:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
}

.news-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  overflow: hidden;
}

.news-thumb--1 {
  background: linear-gradient(135deg, #dbe2f3, #1b3a8a);
}
.news-thumb--2 {
  background: linear-gradient(135deg, #fde1e5, #e3142c);
}
.news-thumb--3 {
  background: linear-gradient(135deg, #eeeef2, #55555f);
}

.news-body__cat {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.news-body__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1.35;
  margin-bottom: var(--space-1);
}

.news-body__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ====== FRÉQUENCES ====== */
.frequencies {
  background: var(--color-text);
  color: var(--color-text-inverse);
}

.frequencies__intro {
  max-width: 680px;
  margin-bottom: var(--space-10);
}

.frequencies__intro .eyebrow {
  color: oklch(from var(--color-red) l c h / 0.9);
}

.frequencies__intro h2 {
  font-size: var(--text-2xl);
  margin-block: var(--space-3) var(--space-4);
  color: white;
}

.frequencies__intro p {
  color: oklch(1 0 0 / 0.7);
  font-size: var(--text-lg);
}

.frequencies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
}

.freq-card {
  padding: var(--space-5);
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.1);
  border-radius: var(--radius-md);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.freq-card:hover {
  background: oklch(1 0 0 / 0.1);
  border-color: var(--color-red);
}

.freq-card__city {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-bottom: var(--space-2);
}

.freq-card__freq {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-red);
}

.freq-card__freq .unit {
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0.75;
  margin-left: 2px;
}

.freq-methods {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid oklch(1 0 0 / 0.1);
}

.freq-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 14px;
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
}

.freq-chip svg {
  width: 14px;
  height: 14px;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--color-surface);
  padding-block: var(--space-16) var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-block: var(--space-4);
  max-width: 40ch;
}

.footer__socials {
  display: flex;
  gap: var(--space-2);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer li a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer li a:hover {
  color: var(--color-red);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__legal {
  display: flex;
  gap: var(--space-5);
}

/* ====== JINGLE BANNER ====== */
.jingle-banner {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  background: white;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 40;
  max-width: 340px;
  font-size: var(--text-sm);
  transform: translateY(140%);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s;
}

.jingle-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.jingle-banner__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-red-highlight);
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jingle-banner__icon svg {
  width: 16px;
  height: 16px;
}

.jingle-banner__text {
  flex: 1;
  color: var(--color-text-muted);
}

.jingle-banner__text strong {
  color: var(--color-text);
  font-weight: 600;
}

.jingle-banner__close {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.jingle-banner__close:hover {
  background: var(--color-surface-2);
  color: var(--color-text);
}

.jingle-banner__close svg {
  width: 14px;
  height: 14px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero__inner,
  .studio__grid,
  .split__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .card-big {
    aspect-ratio: 16 / 10;
  }

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

  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    flex-direction: column;
    gap: var(--space-1);
    padding-block: var(--space-2);
  }

  .topbar__links {
    gap: var(--space-3);
  }

  .hero__content h1 {
    font-size: var(--text-2xl);
  }

  .player-card {
    left: 4%;
    right: 4%;
    min-width: 0;
    max-width: none;
    bottom: -10%;
    padding: var(--space-4);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .news-item {
    grid-template-columns: 80px 1fr;
  }

  .btn--search-label {
    display: none;
  }

  .header__actions .btn--ghost {
    display: none;
  }

  .header__actions .btn--primary {
    padding: 8px 14px;
    font-size: var(--text-xs);
  }

  .header__actions .btn--primary svg {
    width: 12px;
    height: 12px;
  }

  .header__actions .icon-btn[aria-label='Rechercher sur le site'] {
    display: none;
  }

  .jingle-banner {
    right: var(--space-3);
    left: var(--space-3);
    max-width: none;
  }

  .hero__inner {
    gap: var(--space-10);
  }

  .feature-grid {
    gap: var(--space-4);
  }
}
