:root {
  --color-red: #dd183b;
  --color-red-hover: #b81432;
  --color-navy: #0f172a;
  --color-text: #3a3a3a;
  --color-bg: #ffede6;
  --color-bg-deep: #ffdccf;
  --color-white: #ffffff;
  --color-peach: #ffd1bf;
  --color-border: #e8cfc3;
  --color-gold: #c9a227;
  --font-display: "Rufina", Georgia, serif;
  --font-body: "PT Serif", Georgia, serif;
  --container: 1120px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px rgba(20, 6, 9, 0.1);
  --shadow-lift: 0 10px 28px rgba(221, 24, 59, 0.18);
}

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

html {
  font-size: 112.5%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Warm atmospheric field */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(221, 24, 59, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 15%, rgba(201, 162, 39, 0.16), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 209, 191, 0.55), transparent 55%),
    linear-gradient(165deg, #fff5ef 0%, var(--color-bg) 38%, #ffe4d6 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

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

a {
  color: var(--color-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container,
.container--narrow {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  box-sizing: border-box;
}

.container--narrow {
  max-width: 720px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(232, 207, 195, 0.8);
  background: rgba(255, 237, 230, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 8px 30px rgba(20, 6, 9, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.35s var(--ease);
}

.logo:hover {
  transform: scale(1.04);
}

.logo img {
  width: 84px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(221, 24, 59, 0.22));
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.nav-desktop a {
  position: relative;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.25s ease;
}

.nav-desktop a:hover {
  color: var(--color-red);
  background: rgba(221, 24, 59, 0.08);
}

.nav-desktop a[aria-current="page"] {
  color: var(--color-red);
}

.nav-desktop a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__select {
  appearance: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.45rem 2rem 0.45rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230f172a' d='M1.4.7 6 5.3 10.6.7 12 2.1l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px;
}

.lang-switcher__select:hover,
.lang-switcher__select:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(221, 24, 59, 0.1);
  outline: none;
}

.lang-switcher--drawer {
  margin-bottom: 1.25rem;
}

.lang-switcher--drawer .lang-switcher__select {
  width: 100%;
}

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

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-red);
  border-radius: 10px;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(221, 24, 59, 0.1);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(2px);
}

.nav-drawer.is-open .nav-drawer__backdrop {
  opacity: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: linear-gradient(180deg, #fffaf7 0%, var(--color-white) 100%);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: -20px 0 60px rgba(15, 23, 42, 0.15);
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-navy);
  font-size: 1.75rem;
  line-height: 1;
  border-radius: 10px;
}

.nav-drawer__close:hover {
  background: rgba(15, 23, 42, 0.06);
}

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer__links a {
  display: block;
  padding: 0.95rem 0.5rem;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s ease, padding-left 0.25s var(--ease);
}

.nav-drawer__links a:hover,
.nav-drawer__links a[aria-current="page"] {
  color: var(--color-red);
  padding-left: 0.85rem;
}

body.menu-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 15px 38px;
  background: var(--color-navy);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease),
    box-shadow 0.25s ease;
}

.btn:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--color-navy);
  color: var(--color-bg);
  border-color: var(--color-navy);
}

/* Social icons */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links a {
  color: var(--color-navy);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(232, 207, 195, 0.9);
  box-shadow: 0 4px 14px rgba(20, 6, 9, 0.05);
  transition:
    color 0.2s ease,
    transform 0.3s var(--ease),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.social-links a:hover {
  color: var(--color-white);
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hero */
.hero {
  position: relative;
  padding: 2rem 0 4.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 640px);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-red), var(--color-gold), transparent);
  border-radius: 2px;
  opacity: 0.55;
}

.hero__title {
  font-size: clamp(2.35rem, 7vw, 5.75rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 14ch;
  color: var(--color-navy);
}

.hero__title .line-brand {
  display: block;
  color: var(--color-navy);
}

.hero__title .line-tag {
  display: block;
  color: var(--color-navy);
  position: relative;
}

.hero__title .line-tag::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold));
  border-radius: 2px;
}

.hero__lead {
  max-width: 50ch;
  margin-bottom: 2rem;
  color: var(--color-navy);
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero .reveal {
  opacity: 1;
  transform: none;
  animation: heroIn 0.9s var(--ease) both;
}

.hero .reveal-delay-1 {
  animation-delay: 0.12s;
}

.hero .reveal-delay-2 {
  animation-delay: 0.24s;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section headings (shared) */
.section-heading {
  max-width: 620px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold));
  border-radius: 2px;
}

.section-heading p {
  color: var(--color-navy);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Section bands — alternating backgrounds */
.section-band {
  position: relative;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-band::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 640px);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-red), var(--color-gold), transparent);
  border-radius: 2px;
  opacity: 0.55;
  pointer-events: none;
}

.section-band--light {
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 40px rgba(20, 6, 9, 0.04);
}

.section-band--warm {
  background: linear-gradient(
    180deg,
    rgba(255, 220, 207, 0.58) 0%,
    rgba(255, 237, 230, 0.38) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Programmation */
.programmation {
  padding: 5rem 0;
}

.schedule-list {
  display: grid;
  gap: 1.25rem;
}

.schedule-card {
  padding: 1.5rem 1.65rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20, 6, 9, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.schedule-card__days {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-red);
  margin-bottom: 0.35rem;
}

.schedule-card__time {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.schedule-card__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin-bottom: 0.5rem;
}

.schedule-card__desc {
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.section-band--light .schedule-card {
  background: var(--color-white);
}

.section-band--warm .contact-card {
  background: rgba(255, 255, 255, 0.82);
}

/* Live radio */
.live-radio {
  padding: 5rem 0;
}

.live-radio__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.live-radio__note {
  color: var(--color-navy);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

.live-radio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.radio-player {
  width: 100%;
  max-width: 575px;
  margin-inline: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  background: var(--color-white);
}

.radio-player iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
}

.radio-player__credit {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
}

.radio-player__credit:hover {
  color: var(--color-red);
}

/* Founder */
.founder-wrap {
  position: relative;
  padding: 5rem 0;
}

.founder {
  position: relative;
}

.founder__media {
  position: relative;
  margin-bottom: 2.25rem;
  max-width: 420px;
  margin-inline: auto;
}

.founder__media::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--color-red);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.85;
}

.founder__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(160deg, #c41230 0%, #8a0e22 55%, #5c0a18 100%);
  box-shadow: var(--shadow-soft);
}

.founder__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: normal;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.8s var(--ease);
}

.founder__media:hover .founder__frame img {
  transform: scale(1.03);
}

.founder__name {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: 0.4rem;
}

.founder__role {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--color-peach);
}

.founder__bio {
  color: var(--color-navy);
  margin-bottom: 2.75rem;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.75;
}

.founder__bio em {
  font-style: italic;
  color: var(--color-red);
}

/* Awards */
.awards h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.awards__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-navy);
  font-size: 1.05rem;
  transition: background 0.25s ease, padding-left 0.25s var(--ease);
}

.awards__list li:first-child {
  border-top: 1px solid var(--color-border);
}

.awards__list li:hover {
  padding-left: 0.35rem;
}

.awards__year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-red);
  font-size: 1.1rem;
  min-width: 3.2ch;
}

.awards__list strong {
  font-weight: 700;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, #1a0a10 48%, #3d0d1a 100%);
  z-index: 0;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 24, 59, 0.35), transparent 65%);
  z-index: 0;
  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 20px);
  }
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  margin-bottom: 1.85rem;
  line-height: 1.25;
  color: var(--color-white);
}

.cta-band .btn {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(221, 24, 59, 0.35);
}

.cta-band .btn:hover {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3.25rem;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, transparent, rgba(255, 220, 207, 0.35));
  text-align: center;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__copy {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.site-footer .social-links {
  justify-content: center;
}

.site-footer .social-links a {
  background: rgba(255, 255, 255, 0.7);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero .container--narrow,
.page-content.container--narrow {
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold));
  border-radius: 2px;
}

.page-content {
  padding-bottom: 4.5rem;
}

.page-content p + p {
  margin-top: 1em;
}

.page-content h2 {
  font-size: 1.45rem;
  margin: 2.25rem 0 0.75rem;
}

/* Contact */
.contact-section {
  padding: 5rem 0 2rem;
}

.contact-section__heading {
  max-width: 620px;
  margin-bottom: 2rem;
}

.contact-section__heading h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.contact-section__heading h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold));
  border-radius: 2px;
}

.contact-section__heading p {
  color: var(--color-navy);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  gap: 2.75rem;
  padding: 1rem 0 4.5rem;
}

.contact-card {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 6, 9, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.contact-card + .contact-card {
  margin-top: 1rem;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-card p {
  color: var(--color-navy);
}

.contact-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.contact-intro > p {
  margin-bottom: 1.5rem;
  max-width: 40ch;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 560px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(221, 24, 59, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.form-status.is-success {
  color: #1b6b3a;
}

.form-status.is-error {
  color: var(--color-red);
}

/* Download modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
}

.modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

.modal__dialog {
  position: relative;
  width: min(100%, 440px);
  background: linear-gradient(180deg, #fffaf7, var(--color-white));
  padding: 2.25rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

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

.modal__dialog h2 {
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
}

.modal__dialog p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.modal__actions {
  display: grid;
  gap: 0.75rem;
}

.modal__actions .btn:last-child {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  box-shadow: none;
}

.modal__actions .btn:last-child:hover {
  background: var(--color-navy);
  color: var(--color-bg);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  color: var(--color-navy);
  border-radius: 8px;
}

.modal__close:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .founder__media {
    margin-inline: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.45fr;
    gap: 3.25rem;
    align-items: start;
  }
}

@media (min-width: 922px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .hero {
    padding: 4rem 0 5.5rem;
  }

  .schedule-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .live-radio__grid {
    grid-template-columns: 1fr minmax(320px, 575px);
  }

  .founder {
    display: grid;
    grid-template-columns: minmax(300px, 400px) 1fr;
    gap: 4rem;
    align-items: start;
  }

  .founder__media {
    margin-bottom: 0;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .cta-band {
    padding: 6.5rem 0;
  }
}
