:root{
  --bg1:#120304;
  --bg2:#1b0507;
  --bg3:#26070b;

  --text:#ffffff;
  --muted:rgba(255,255,255,0.74);

  --primary:#e10613;
  --primary-hover:#ff2b37;

  --line:rgba(255,255,255,0.12);
  --soft:rgba(255,255,255,0.06);
  --soft2:rgba(255,255,255,0.16);

  --card:rgba(255,255,255,0.05);
  --card-hover:rgba(255,255,255,0.09);

  --shadow:0 18px 40px rgba(0,0,0,.40);
  --radius:22px;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{min-height:100%;}
html{scroll-behavior:smooth;}

body{
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 72% 20%, rgba(255,43,55,.18), transparent 18%),
    radial-gradient(circle at 72% 66%, rgba(225,6,19,.28), transparent 20%),
    linear-gradient(180deg,var(--bg1),var(--bg2) 48%,var(--bg3));
}

body.menu-open{overflow:hidden;}

a,a:visited,a:hover,a:active{color:inherit;text-decoration:none;}
button,input,textarea{font:inherit;}

.site{
  max-width:1600px;
  margin:0 auto;
  padding-bottom:110px;
}

/* HEADER */

.topbar{
  height:88px;
  display:grid;
  grid-template-columns:260px 120px 1fr 120px;
  align-items:center;
  border-bottom:1px solid var(--line);
  background:rgba(18,3,4,.96);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:1000;
}

.topbar__brand,.topbar__play,.topbar__socials,.topbar__menu{
  height:100%;
  display:flex;
  align-items:center;
}

.topbar__brand{padding:0 22px;}
.topbar__play{justify-content:center;border-left:1px solid var(--line);}
.topbar__socials{justify-content:center;border-left:1px solid var(--line);padding:0 20px;}
.topbar__menu{justify-content:center;border-left:1px solid var(--line);}

.brand{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1;
  font-weight:900;
}

.brand__air{
  font-size:2.7rem;
  letter-spacing:-0.14em;
  color:#fff;
}

.brand__text{
  font-size:1rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.84);
  margin-top:8px;
}

.header-play{
  width:56px;
  height:56px;
  border-radius:999px;
  border:none;
  background:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 10px 28px rgba(225,6,19,.28);
}

.header-play:hover{
  transform:translateY(-1px);
  background:var(--primary-hover);
}

.header-play__triangle{
  width:0;
  height:0;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  border-left:20px solid #fff;
  margin-left:4px;
}

.header-play.is-playing .header-play__triangle{
  width:14px;
  height:18px;
  border:none;
  margin-left:0;
  background:
    linear-gradient(90deg,#fff 0 38%,transparent 38% 62%,#fff 62% 100%);
}

.socials{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  width:100%;
}

.socials a{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  font-size:1rem;
  transition:.2s ease;
}

.socials a:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.18);
  border-color:rgba(225,6,19,.45);
}

.menu-btn{
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:7px;
  align-items:center;
  cursor:pointer;
}

.menu-btn span{
  display:block;
  width:24px;
  height:3px;
  background:#fff;
  border-radius:999px;
  transition:.25s ease;
}

.menu-btn.is-open span:first-child{transform:translateY(5px) rotate(45deg);}
.menu-btn.is-open span:last-child{transform:translateY(-5px) rotate(-45deg);}

/* MENU */

.menu-overlay{
  position:fixed;
  top:88px;
  left:0;
  right:0;
  bottom:0;
  background:
    radial-gradient(circle at 72% 68%, rgba(255,255,255,0.10), transparent 14%),
    radial-gradient(circle at 58% 56%, rgba(225,6,19,0.34), transparent 24%),
    linear-gradient(120deg, rgba(18,3,4,.98), rgba(38,7,11,.98));
  backdrop-filter:blur(12px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  z-index:999;
}

.menu-overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.menu-overlay__inner{
  position:relative;
  width:100%;
  height:100%;
  min-height:calc(100vh - 88px);
  padding:48px 60px 110px;
}

.menu-overlay__nav{
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:520px;
}

.menu-overlay__nav a{
  font-size:clamp(2.4rem,4.2vw,4.4rem);
  font-weight:300;
  line-height:.98;
  letter-spacing:-.03em;
  color:#fff;
  width:max-content;
  transition:.2s ease;
}

.menu-overlay__nav a:hover{
  transform:translateX(4px);
  color:var(--primary-hover);
}

.menu-overlay__footer-left{
  position:absolute;
  left:60px;
  bottom:28px;
  display:flex;
  flex-wrap:wrap;
  gap:0;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(255,255,255,.95);
  z-index:5;
}

.menu-overlay__footer-left a{
  position:relative;
  padding-right:10px;
  margin-right:10px;
  white-space:nowrap;
}

.menu-overlay__footer-left a:not(:last-child)::after{
  content:"|";
  position:absolute;
  right:-2px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,.55);
}

.menu-overlay__footer-right{
  position:absolute;
  right:60px;
  bottom:28px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(255,255,255,.95);
  text-align:right;
  z-index:5;
}

/* HERO */

.hero{padding:78px 32px 50px;}
.hero__inner{max-width:1050px;margin:0 auto;}

.hero-tag{
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:.82rem;
  color:rgba(255,255,255,.68);
  margin-bottom:22px;
}

.hero-title{
  font-size:clamp(3.6rem,9vw,6.4rem);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:900;
  margin-bottom:22px;
}

.hero-text{
  max-width:760px;
  font-size:1.08rem;
  line-height:1.72;
  color:var(--muted);
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn-primary,.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 24px;
  border-radius:999px;
  transition:.2s ease;
}

.btn-primary{
  border:none;
  background:var(--primary);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(225,6,19,.24);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-weight:600;
}

.btn-primary:hover,.btn-secondary:hover{transform:translateY(-1px);}
.btn-primary:hover{background:var(--primary-hover);}
.btn-secondary:hover{background:rgba(255,255,255,.09);}

.now-card{
  margin-top:18px;
  max-width:430px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}

.now-card--wide{
  max-width:760px;
}

.now-card__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.now-card__block{
  min-width:0;
}

.now-card__label{
  display:block;
  margin-bottom:8px;
  font-size:.75rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
}

.now-card__title{
  font-weight:700;
  line-height:1.45;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* SECTIONS */

.section,.listen-page{
  max-width:1100px;
  margin:0 auto;
  padding:54px 32px 20px;
}

.section--compact{
  padding-top:34px;
}

.section-head{margin-bottom:28px;}
.section-head--compact{margin-bottom:20px;}

.page-title{
  font-size:clamp(2.3rem,5vw,4rem);
  line-height:1.02;
  margin-bottom:10px;
}

.page-title--compact{
  font-size:clamp(1.9rem,4vw,3rem);
}

.page-intro{
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}

.cards{
  max-width:1100px;
  margin:0 auto;
  padding:10px 32px 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}

.card{
  background:var(--card);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:24px;
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.card:hover{
  transform:translateY(-4px);
  background:var(--card-hover);
  border-color:rgba(225,6,19,.35);
}

.card h2,
.card h3{
  margin-bottom:10px;
  font-size:1.28rem;
}

.card p{
  color:rgba(255,255,255,0.78);
  line-height:1.65;
}

.card p + p{
  margin-top:12px;
}

.cards--single{grid-template-columns:1fr;}

/* PROGRAMMES */

.programs-home{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:20px;
}

.programs-home__current,
.programs-home__schedule{
  padding:20px;
}

.programs-home__current-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.program-badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(225,6,19,.16);
  border:1px solid rgba(225,6,19,.32);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.programs-home__day{
  font-size:.85rem;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.programs-home__current-title{
  font-size:1.35rem;
  font-weight:800;
  line-height:1.25;
  margin-bottom:8px;
}

.programs-home__current-time{
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  font-weight:600;
}

.program-schedule-compact__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.program-schedule-compact__title{
  font-size:1rem;
  font-weight:800;
}

.program-schedule-compact__legend{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.58);
}

.program-schedule-compact__list{
  display:grid;
  gap:8px;
}

.program-row{
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:14px;
  align-items:center;
  min-height:44px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.program-row.is-live{
  border-color:rgba(225,6,19,.36);
  background:rgba(225,6,19,.12);
  box-shadow:0 0 0 1px rgba(225,6,19,.10) inset;
}

.program-row__time{
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.04em;
  color:rgba(255,255,255,.72);
}

.program-row__title{
  min-width:0;
  font-size:.95rem;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.program-week-mini{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:8px;
}

.program-week-mini__item{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:10px 8px;
  border-radius:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  text-align:center;
}

.program-week-mini__item.is-active{
  background:rgba(225,6,19,.14);
  border-color:rgba(225,6,19,.32);
}

.program-week-mini__day{
  font-size:.8rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.program-week-mini__count{
  font-size:.72rem;
  color:rgba(255,255,255,.6);
}

/* PLAYER */

.player-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  min-height:78px;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(12,3,4,.94);
  backdrop-filter:blur(22px);
  z-index:1200;
}

.player-bar__left{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.player-play{
  width:54px;
  height:54px;
  border-radius:999px;
  border:none;
  background:var(--primary);
  color:#fff;
  font-size:1.15rem;
  cursor:pointer;
  flex-shrink:0;
}

.player-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}

.live-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  width:max-content;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  font-size:.78rem;
  letter-spacing:.12em;
}

.live-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#ff2b37;
  box-shadow:0 0 12px rgba(255,43,55,.8);
}

.player-title{
  font-size:1rem;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:520px;
}

.player-controls{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.vote-wrap{
  display:flex;
  gap:8px;
  align-items:center;
}

.vote-btn,.icon-btn,#muteBtn{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
  cursor:pointer;
  font-size:1rem;
  transition:.2s ease;
}

.vote-btn:hover,.icon-btn:hover,#muteBtn:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.16);
  border-color:rgba(225,6,19,.36);
}

#volumeRange{
  width:140px;
  accent-color:var(--primary);
}

/* TOAST */

.toast{
  position:fixed;
  left:50%;
  bottom:92px;
  transform:translateX(-50%);
  padding:12px 16px;
  border-radius:999px;
  background:rgba(225,6,19,.96);
  color:#fff;
  font-size:.92rem;
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:1300;
}

.toast.is-visible{opacity:1;}

/* RECENT TRACKS */

.recent-tracks-card{
  padding:10px 0;
  overflow:hidden;
}

.recent-tracks-widget--full{
  margin-top:20px;
}

.recent-tracks-list-api{
  width:100%;
  min-height:40px;
}

.recent-track-loading{
  padding:24px;
  color:rgba(255,255,255,.72);
}

.recent-track-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:16px;
  padding:18px 24px;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .2s ease;
}

.recent-track-row:last-child{
  border-bottom:none;
}

.recent-track-row:hover{
  background:rgba(255,255,255,.03);
}

.recent-track-main{
  min-width:0;
}

.recent-track-title{
  font-size:1rem;
  font-weight:800;
  color:#fff;
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.recent-track-artist{
  margin-top:4px;
  font-size:.94rem;
  color:rgba(255,255,255,.78);
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.recent-track-album{
  margin-top:3px;
  font-size:.84rem;
  color:rgba(255,255,255,.52);
  line-height:1.3;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.recent-track-time{
  justify-self:end;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
  text-align:right;
}

.recent-track-empty{
  padding:24px;
  color:rgba(255,255,255,.72);
}

/* PLAYLIST TABLE */

.playlist-table-wrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.playlist-table{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}

.playlist-table thead th{
  text-align:left;
  padding:16px 18px;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.66);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.playlist-table tbody td{
  padding:16px 18px;
  color:rgba(255,255,255,.86);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.playlist-table tbody tr:hover{
  background:rgba(255,255,255,.03);
}

/* LISTEN / CONTACT / SEO */

.listen-now-card{
  margin-top:18px;
  margin-bottom:22px;
}

.listen-buttons{
  margin-top:18px;
}

.listen-info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:18px;
}

.listen-info-box{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.listen-info-box strong{
  font-size:1rem;
  color:#fff;
}

.listen-info-box span{
  color:rgba(255,255,255,.72);
  line-height:1.55;
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:18px;
}

.social-card{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  transition:.22s ease;
}

.social-card:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.07);
  border-color:rgba(225,6,19,.34);
}

.social-card strong{
  font-size:1.02rem;
}

.social-card span{
  color:rgba(255,255,255,.72);
  line-height:1.55;
}

.contact-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;
}

.contact-row{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-row:last-child{
  border-bottom:none;
}

.contact-label{
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
}

.contact-value{
  color:rgba(255,255,255,.86);
  line-height:1.65;
  word-break:break-word;
}

.contact-value a{
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.contact-value a:hover{
  border-bottom-color:rgba(225,6,19,.5);
}

.seo-list{
  margin:16px 0 0;
  padding-left:20px;
  color:rgba(255,255,255,.82);
  line-height:1.7;
}

.seo-list li + li{
  margin-top:8px;
}

/* FORMULAIRE CONTACT */

.contact-form{
  margin-top:20px;
}

.contact-form__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-bottom:16px;
}

.contact-form__field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}

.contact-form__field label{
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

.contact-form__field input,
.contact-form__field textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  border-radius:14px;
  padding:14px 16px;
  outline:none;
  transition:.2s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus{
  border-color:rgba(225,6,19,.45);
  box-shadow:0 0 0 3px rgba(225,6,19,.12);
}

.contact-form__field textarea{
  resize:vertical;
  min-height:160px;
}

.form-alert{
  margin:16px 0 20px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:600;
}

.form-alert--success{
  background:rgba(36,171,90,.16);
  border:1px solid rgba(36,171,90,.35);
  color:#d7ffe6;
}

.form-alert--error{
  background:rgba(225,6,19,.16);
  border:1px solid rgba(225,6,19,.35);
  color:#ffe1e4;
}

.card--map .map-embed{
  margin-top:18px;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

/* LEGACY LISTEN BLOCKS */

.listen-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-top:28px;
}

.listen-card{
  background:var(--card);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:24px;
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.listen-card:hover{
  transform:translateY(-4px);
  background:var(--card-hover);
  border-color:rgba(225,6,19,.35);
}

.listen-card--hero{grid-column:1 / -1;}
.listen-card h3{margin-bottom:10px;font-size:1.28rem;}
.listen-card p{color:rgba(255,255,255,0.78);line-height:1.65;}

.listen-links{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.listen-links a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  transition:.2s ease;
}

.listen-links a:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.16);
  border-color:rgba(225,6,19,.4);
}

.store-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.store-buttons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  transition:.2s ease;
}

.store-buttons a:hover{
  transform:translateY(-1px);
  background:rgba(225,6,19,.16);
  border-color:rgba(225,6,19,.4);
}

/* RESPONSIVE */

@media (max-width:980px){
  .topbar{grid-template-columns:220px 100px 1fr 96px;}
  .brand__air{font-size:2.2rem;}
  .brand__text{font-size:.92rem;}
  .socials{gap:10px;}

  .programs-home{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .topbar{grid-template-columns:1fr 88px 1fr 82px;height:80px;}
  .topbar__brand{padding:0 16px;}
  .brand__air{font-size:1.95rem;}
  .brand__text{font-size:.82rem;margin-top:6px;}
  .socials{gap:8px;}
  .socials a{width:34px;height:34px;font-size:.92rem;}
  .hero{padding:58px 20px 40px;}
  .hero-title{font-size:3.2rem;}
  .hero-text{font-size:1rem;}
  .section,.listen-page{padding:46px 20px 16px;}
  .cards{padding:0 20px;}
  .player-bar{flex-direction:column;align-items:stretch;}
  .player-controls{justify-content:space-between;}
  .player-title{max-width:none;}
  #volumeRange{width:110px;}
  .menu-overlay{top:80px;}
  .menu-overlay__inner{min-height:calc(100vh - 80px);padding:34px 22px 95px;}
  .menu-overlay__nav{gap:14px;}
  .menu-overlay__nav a{font-size:2.4rem;}
  .menu-overlay__footer-left{
    left:22px;
    bottom:18px;
    right:120px;
    font-size:11px;
    line-height:1.6;
  }
  .menu-overlay__footer-left a{padding-right:8px;margin-right:8px;}
  .menu-overlay__footer-right{right:22px;bottom:18px;font-size:11px;}

  .now-card__grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .program-row{
    grid-template-columns:1fr;
    gap:6px;
    align-items:flex-start;
  }

  .program-week-mini{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .recent-track-row{
    grid-template-columns:minmax(0,1fr);
    gap:10px;
    padding:16px 18px;
  }

  .recent-track-time{
    grid-column:auto;
    justify-self:start;
    margin-top:0;
    text-align:left;
  }

  .contact-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .contact-form__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .topbar{grid-template-columns:1fr 74px auto 72px;}
  .socials{display:none;}
  .hero-title{font-size:2.8rem;}
  .hero-buttons{flex-direction:column;align-items:flex-start;}
  .btn-primary,.btn-secondary{width:100%;justify-content:center;}
  .store-buttons{flex-direction:column;align-items:stretch;}
  .store-buttons a{width:100%;}
  .menu-overlay__footer-left{right:22px;font-size:10px;}
  .menu-overlay__footer-right{font-size:10px;}

  .programs-home__current-title{
    font-size:1.15rem;
  }

  .program-week-mini{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .recent-track-row{
    grid-template-columns:minmax(0,1fr);
    gap:8px;
    padding:14px 16px;
  }

  .recent-track-title{
    font-size:.95rem;
  }

  .recent-track-artist{
    font-size:.88rem;
  }

  .recent-track-album{
    font-size:.78rem;
  }

  .recent-track-time{
    font-size:.74rem;
  }
}