/* ============================================================
   Radio Evangelo per le Nazioni — style.css
   Moodboard: "On Air / La voce nella notte"
   Broadcast caldo e luminoso · avorio + indigo + blu + ambra
   ============================================================ */

:root {
  /* --- palette (OKLCH) --- */
  --cream:        oklch(0.966 0.014 86);   /* bg avorio caldo */
  --cream-deep:   oklch(0.945 0.018 84);   /* bande alternate */
  --paper:        oklch(0.992 0.006 86);   /* card / superfici */
  --ink:          oklch(0.270 0.046 285);  /* testo principale */
  --ink-soft:     oklch(0.430 0.038 285);  /* testo secondario */
  --indigo:       oklch(0.360 0.110 286);  /* viola brand */
  --indigo-deep:  oklch(0.215 0.085 285);  /* blocco player notturno */
  --indigo-deep2: oklch(0.165 0.070 286);  /* fondo player più scuro */
  --blue:         oklch(0.560 0.185 264);  /* blu elettrico accento */
  --blue-ink:     oklch(0.470 0.160 266);  /* blu testo su chiaro (AA) */
  --amber:        oklch(0.790 0.150 71);   /* ambra "on air" */
  --amber-deep:   oklch(0.700 0.150 60);   /* ambra testo su chiaro */
  --border:       oklch(0.885 0.020 286);  /* bordi tenui */
  --border-strong:oklch(0.800 0.030 286);

  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1140px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px oklch(0.27 0.05 285 / 0.06), 0 4px 14px oklch(0.27 0.05 285 / 0.05);
  --shadow-md: 0 6px 22px oklch(0.27 0.06 285 / 0.10), 0 22px 50px oklch(0.27 0.06 285 / 0.10);
  --shadow-glow: 0 24px 70px oklch(0.22 0.09 285 / 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(60rem 40rem at 88% -10%, oklch(0.79 0.15 71 / 0.10), transparent 60%),
    radial-gradient(50rem 40rem at -8% 8%, oklch(0.56 0.18 264 / 0.08), transparent 55%);
  background-repeat: no-repeat;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { text-wrap: pretty; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

section { position: relative; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-ink);
}

.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 62ch; }

/* ------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.966 0.014 86 / 0.92);
  border-bottom: 1px solid var(--border);
  /* niente backdrop-filter qui: intrappolerebbe la nav fixed mobile */
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--shadow-sm); flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name strong { font-family: var(--font-display); font-weight: 800; font-size: 1.04rem; letter-spacing: -0.02em; }
.brand-name span { font-size: 0.72rem; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.02em; }

.nav-desktop { display: none; align-items: center; gap: 6px; }
.nav-desktop a {
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.96rem;
  padding: 10px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-desktop a:hover { color: var(--ink); background: var(--cream-deep); }
.nav-desktop a.active { color: var(--indigo); background: var(--cream-deep); }

.nav-cta {
  display: none;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  color: var(--paper); background: var(--indigo);
  border: none; border-radius: 999px; padding: 11px 20px; cursor: pointer;
  align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), background .2s;
}
.nav-cta:hover { background: var(--indigo-deep); transform: translateY(-1px); }
.nav-cta .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* hamburger */
.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border: 1px solid var(--border-strong);
  border-radius: 12px; background: var(--paper); cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; margin-inline: auto; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer: overlay full-screen con opacity (no transform offset = no overflow / no trap) */
.nav-drawer {
  position: fixed; inset: 0; z-index: 55;
  background: oklch(0.966 0.014 86 / 0.99);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 90px 24px 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), visibility .3s;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-drawer a {
  text-decoration: none; color: var(--ink); font-family: var(--font-display);
  font-weight: 700; font-size: 1.7rem; letter-spacing: -0.02em;
  padding: 12px 18px; min-height: 44px; display: flex; align-items: center;
  opacity: 0; transform: translateY(12px); transition: color .2s;
}
.nav-drawer.is-open a { animation: drawerIn .5s var(--ease) forwards; }
.nav-drawer.is-open a:nth-child(1) { animation-delay: .06s; }
.nav-drawer.is-open a:nth-child(2) { animation-delay: .12s; }
.nav-drawer.is-open a:nth-child(3) { animation-delay: .18s; }
.nav-drawer.is-open a:nth-child(4) { animation-delay: .24s; }
.nav-drawer.is-open a:nth-child(5) { animation-delay: .30s; }
.nav-drawer a:hover { color: var(--blue-ink); }
.nav-drawer .drawer-note { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); margin-top: 14px; }
@keyframes drawerIn { to { opacity: 1; transform: none; } }

/* ------------------------------------------------ hero */
.hero { padding: clamp(48px, 9vw, 96px) 0 clamp(40px, 6vw, 64px); text-align: center; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.9rem);
  font-weight: 800;
  max-width: 17ch; margin-inline: auto;
}
.hero h1 .accent { color: var(--indigo); }

/* skip-link a11y */
.skip-link {
  position: absolute; left: 12px; top: -64px; z-index: 100;
  background: var(--indigo); color: var(--paper); padding: 11px 17px; border-radius: 10px;
  font-weight: 700; text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus-visible { top: 12px; }
.hero .sub {
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 54ch; margin: 22px auto 0;
}

/* player module */
.player {
  position: relative; overflow: hidden;
  max-width: 660px; margin: clamp(34px, 6vw, 52px) auto 0;
  background:
    radial-gradient(120% 140% at 85% -20%, oklch(0.56 0.18 264 / 0.40), transparent 55%),
    linear-gradient(165deg, var(--indigo-deep) 0%, var(--indigo-deep2) 100%);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 5vw, 34px);
  box-shadow: var(--shadow-glow);
  text-align: left;
}
.player::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 1px solid oklch(0.79 0.15 71 / 0.22); pointer-events: none;
}
.player-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--amber); text-transform: uppercase;
  background: oklch(0.79 0.15 71 / 0.12); border: 1px solid oklch(0.79 0.15 71 / 0.30);
  padding: 7px 13px; border-radius: 999px;
}
.live-pill .live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); animation: pulse 1.6s infinite; }
.player-now { font-size: 0.84rem; color: oklch(0.84 0.03 286); font-weight: 600; }

.player-main { display: flex; align-items: center; gap: 18px; }
.play-btn {
  flex: none; width: 76px; height: 76px; border-radius: 50%;
  border: none; cursor: pointer;
  background: radial-gradient(circle at 35% 30%, var(--amber), var(--amber-deep));
  color: var(--indigo-deep); display: grid; place-items: center;
  box-shadow: 0 10px 30px oklch(0.70 0.15 60 / 0.45), 0 0 0 0 oklch(0.79 0.15 71 / 0.5);
  transition: transform .2s var(--ease), box-shadow .3s;
  position: relative;
}
.play-btn:hover { transform: scale(1.06); }
.play-btn:active { transform: scale(0.97); }
.play-btn svg { width: 30px; height: 30px; margin-left: 3px; }
.play-btn.ringing { animation: ring 1.4s var(--ease); }

.player-meta { min-width: 0; }
.player-meta strong { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; display: block; letter-spacing: -0.01em; }
.player-meta span { font-size: 0.92rem; color: oklch(0.82 0.03 286); }

/* equalizer / onda sonora */
.equalizer { display: flex; align-items: flex-end; gap: 4px; height: 40px; margin-top: 22px; }
.equalizer span {
  flex: 1; min-width: 3px; border-radius: 3px;
  background: linear-gradient(to top, var(--blue), var(--amber));
  height: 30%; transform-origin: bottom;
  animation: bars 1.5s ease-in-out infinite;
}
.equalizer span:nth-child(odd) { background: linear-gradient(to top, var(--blue), oklch(0.82 0.10 300)); }
.player.paused .equalizer span { animation-play-state: paused; height: 22%; }

.player-msg {
  margin-top: 18px; font-size: 0.92rem; font-weight: 600;
  color: var(--amber);
  background: oklch(0.79 0.15 71 / 0.10);
  border: 1px solid oklch(0.79 0.15 71 / 0.25);
  border-radius: 12px; padding: 12px 15px;
  display: none; align-items: flex-start; gap: 9px;
}
.player-msg.show { display: flex; animation: fadeUp .4s var(--ease); }
.player-msg svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }

.hero-note { margin-top: 22px; font-size: 0.96rem; color: var(--ink-soft); font-weight: 600; }
.hero-note b { color: var(--ink); }

/* ------------------------------------------------ value strip */
.strip {
  border-block: 1px solid var(--border);
  background: var(--cream-deep);
}
.strip-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border);
}
.strip-item {
  background: var(--cream-deep); padding: 22px 18px; text-align: center;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.strip-item .ico { color: var(--blue-ink); width: 26px; height: 26px; margin-bottom: 4px; }
.strip-item strong { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.strip-item span { font-size: 0.88rem; color: var(--ink-soft); }

/* ------------------------------------------------ generic section */
.block { padding: clamp(56px, 10vw, 104px) 0; }
.block.alt { background: var(--cream-deep); border-block: 1px solid var(--border); }
.section-head { max-width: 56ch; margin-bottom: clamp(30px, 5vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 3rem); margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.1rem; }

/* ------------------------------------------------ story */
.story-grid { display: grid; gap: clamp(28px, 5vw, 54px); align-items: center; }
.story-figure { position: relative; }
.story-figure .portrait {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid var(--border);
}
.story-figure .badge {
  position: absolute; left: -10px; bottom: -14px;
  background: var(--paper); border: 1px solid var(--border); border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  max-width: 230px;
}
.story-figure .badge img { width: 40px; height: 40px; border-radius: 50%; flex: none; }
.story-figure .badge div { line-height: 1.15; }
.story-figure .badge strong { font-family: var(--font-display); font-size: 0.92rem; }
.story-figure .badge span { font-size: 0.78rem; color: var(--ink-soft); }

.story-body p + p { margin-top: 1.05em; }
.story-body .lead-first::first-letter {
  font-family: var(--font-display); font-weight: 800; font-size: 3.2em;
  float: left; line-height: 0.8; padding: 6px 12px 0 0; color: var(--indigo);
}
.pull {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 3.6vw, 1.95rem); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--indigo); margin: 28px 0 8px; max-width: 22ch;
}
.collab { margin-top: 22px; font-size: 0.95rem; color: var(--ink-soft); }
.collab b { color: var(--ink); }

/* ------------------------------------------------ cards grid */
.cards { display: grid; gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card .card-ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, oklch(0.56 0.18 264 / 0.16), oklch(0.79 0.15 71 / 0.16));
  color: var(--indigo); margin-bottom: 16px;
}
.card .card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

.services-foot { margin-top: 22px; font-size: 0.98rem; color: var(--ink-soft); text-align: center; }
.services-foot b { color: var(--ink); }

/* ------------------------------------------------ per chi: lista a righe (NON un secondo muro di card) */
.audience-list { border-top: 1px solid var(--border); }
.audience-row {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 24px 4px; border-bottom: 1px solid var(--border);
  transition: background .2s var(--ease);
}
.audience-row:hover { background: oklch(0.99 0.006 86 / 0.6); }
.audience-row .a-ico {
  width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: var(--indigo); color: var(--paper);
}
.audience-row .a-ico svg { width: 26px; height: 26px; }
.audience-row h3 { font-size: 1.25rem; margin-bottom: 5px; }
.audience-row p { color: var(--ink-soft); font-size: 1rem; max-width: 62ch; }

/* ------------------------------------------------ dirette feature */
.diretta {
  display: grid; gap: clamp(24px, 4vw, 44px); align-items: center;
  background:
    radial-gradient(120% 130% at 90% 0%, oklch(0.56 0.18 264 / 0.35), transparent 55%),
    linear-gradient(160deg, var(--indigo-deep) 0%, var(--indigo-deep2) 100%);
  color: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(30px, 5vw, 52px); box-shadow: var(--shadow-glow);
}
.diretta .eyebrow { color: var(--amber); }
.diretta h2 { color: var(--paper); font-size: clamp(1.8rem, 4.6vw, 2.7rem); }
.diretta p { color: oklch(0.86 0.03 286); margin-top: 14px; font-size: 1.08rem; max-width: 44ch; }
.diretta-time {
  display: inline-flex; align-items: baseline; gap: 10px; margin-top: 22px;
  font-family: var(--font-display); font-weight: 800;
}
.diretta-time .big { font-size: clamp(2.6rem, 8vw, 3.8rem); color: var(--amber); line-height: 1; letter-spacing: -0.03em; }
.diretta-time .lbl { font-size: 1rem; color: oklch(0.86 0.03 286); font-weight: 600; }
.diretta-figure { position: relative; }
.diretta-figure img {
  width: 100%; border-radius: var(--radius); aspect-ratio: 5 / 4; object-fit: cover;
  border: 1px solid oklch(0.79 0.15 71 / 0.25); box-shadow: var(--shadow-md);
}
.diretta-figure figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: oklch(0.165 0.07 286 / 0.78); color: var(--paper);
  font-size: 0.8rem; font-weight: 600; padding: 7px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
}
.diretta-figure figcaption .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* ------------------------------------------------ free / valori */
.free-block { text-align: center; max-width: 760px; margin-inline: auto; }
.free-block .free-mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.4rem); letter-spacing: -0.03em; line-height: 1.05;
}
.free-block .free-mark em { font-style: normal; color: var(--blue-ink); }
.free-block p { margin-top: 20px; font-size: 1.12rem; color: var(--ink-soft); }
.free-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.free-tags span {
  background: var(--paper); border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 16px; font-weight: 600; font-size: 0.92rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.free-tags span::before { content: "\2713"; color: var(--blue-ink); font-weight: 800; font-size: 0.92em; line-height: 1; }

/* ------------------------------------------------ contatti */
.contact-head .lede { margin-top: 16px; }
.contact-grid { display: grid; gap: 16px; margin-top: clamp(28px, 4vw, 40px); }
.contact-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm);
}
.contact-card .c-ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--indigo); color: var(--paper);
}
.contact-card .c-ico svg { width: 24px; height: 24px; }
.contact-card .c-label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.contact-card .c-value { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); margin-top: 2px; word-break: break-word; user-select: all; }
.contact-card .c-sub { font-size: 0.86rem; color: var(--ink-soft); margin-top: 3px; }
.contact-note {
  margin-top: 22px; text-align: center; font-size: 0.95rem; color: var(--ink-soft);
  display: inline-flex; gap: 9px; align-items: center; justify-content: center; width: 100%;
}
.contact-note svg { width: 18px; height: 18px; color: var(--blue-ink); flex: none; }

/* ------------------------------------------------ footer */
.site-footer { background: var(--indigo-deep); color: oklch(0.86 0.03 286); padding: clamp(44px, 7vw, 64px) 0 30px; }
.footer-top { display: grid; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; flex: none; box-shadow: var(--shadow-sm); }
.footer-brand strong { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--paper); display: block; letter-spacing: -0.02em; }
.footer-brand span { font-size: 0.85rem; }
.footer-col h4 { font-family: var(--font-display); color: var(--paper); font-size: 0.95rem; margin-bottom: 12px; font-weight: 700; }
.footer-col p { font-size: 0.92rem; line-height: 1.7; }
.footer-col .c-value { color: var(--paper); font-weight: 600; user-select: all; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social .social-icon {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: oklch(0.99 0.006 86 / 0.08); border: 1px solid oklch(0.99 0.006 86 / 0.14); color: oklch(0.9 0.02 286);
}
.footer-social .social-icon svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid oklch(0.99 0.006 86 / 0.12);
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  font-size: 0.85rem;
}
.footer-credit { color: oklch(0.84 0.03 286); }
.footer-credit a { color: var(--amber); font-weight: 700; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

/* ------------------------------------------------ reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------ keyframes */
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 oklch(0.79 0.15 71 / 0.5); } 50% { box-shadow: 0 0 0 7px oklch(0.79 0.15 71 / 0); } }
@keyframes bars { 0%,100% { height: 25%; } 50% { height: 95%; } }
@keyframes ring { 0%,100% { transform: scale(1); } 20% { transform: scale(1.08) rotate(-3deg); } 40% { transform: scale(1.04) rotate(3deg); } 60% { transform: scale(1.06) rotate(-2deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* equalizer stagger */
.equalizer span:nth-child(1){animation-delay:-.1s} .equalizer span:nth-child(2){animation-delay:-.5s}
.equalizer span:nth-child(3){animation-delay:-.2s} .equalizer span:nth-child(4){animation-delay:-.7s}
.equalizer span:nth-child(5){animation-delay:-.3s} .equalizer span:nth-child(6){animation-delay:-.9s}
.equalizer span:nth-child(7){animation-delay:-.4s} .equalizer span:nth-child(8){animation-delay:-.6s}
.equalizer span:nth-child(9){animation-delay:-.15s} .equalizer span:nth-child(10){animation-delay:-.8s}
.equalizer span:nth-child(11){animation-delay:-.35s} .equalizer span:nth-child(12){animation-delay:-.55s}
.equalizer span:nth-child(13){animation-delay:-.25s} .equalizer span:nth-child(14){animation-delay:-.65s}

/* ------------------------------------------------ responsive */
@media (min-width: 600px) {
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .story-grid { grid-template-columns: 1fr 1.1fr; }
  .story-grid.reverse .story-figure { order: 2; }
  .diretta { grid-template-columns: 1.1fr 0.9fr; }
  .cards.c-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .equalizer span { height: 50%; }
}

/* focus visibile */
:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 8px;
}
