/* Smile Clown Festival — Landing styles
   Palette dal logo ufficiale */

:root {
  --red: #dc0014;
  --red-ink: #a3000f;
  --violet: #8c3c8c;
  --violet-ink: #5c1f5c;
  --sky: #28b4dc;
  --sky-ink: #0f6e8c;
  --orange: #f08c00;
  --amber: #f0a000;
  --green: #7dc837;
  --ink: #1a0f1f;
  --paper: #fff7ec;
  --paper-2: #ffeccf;
  --line: rgba(26,15,31,.12);

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ TOP BAR ============ */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  background: rgba(255,247,236,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform .3s ease;
}
.topbar.hidden { transform: translateY(-100%); }
.topbar .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.topbar .logo img { height: 120px; width: auto; }
.topbar .logo .wm { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 18px; line-height: 1; }
.topbar .logo .wm em { color: var(--red); font-style: italic; }
.topbar nav { display: flex; gap: 28px; font-size: 14px; font-weight: 500; }
.topbar nav a { text-decoration: none; position: relative; padding: 6px 0; }
.topbar nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.topbar nav a:hover::after { transform: scaleX(1); }
.topbar .cta {
  background: var(--red); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: transform .15s ease, background .2s ease;
}
.topbar .cta:hover { background: var(--red-ink); transform: translateY(-1px); }
@media (max-width: 820px) {
  .topbar nav { display: none; }
  .topbar { padding: 10px 20px; }
  .topbar .logo img { height: 80px; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 160px 32px 80px;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://smileclownfestival.it/wp-content/uploads/2026/04/nap0453_0013_Sfondo.jpg");
  background-size: cover; background-position: center;
  filter: brightness(.55) saturate(1.15);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(40,180,220,.35), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(140,60,140,.45), transparent 55%),
    linear-gradient(180deg, rgba(26,15,31,.2) 0%, rgba(26,15,31,.7) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 60px; align-items: center;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  margin-bottom: 28px;
}
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(220,0,20,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(220,0,20,.25); } 50% { box-shadow: 0 0 0 8px rgba(220,0,20,0); } }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(56px, 9vw, 132px);
  line-height: .9; letter-spacing: -.02em;
  margin-bottom: 32px;
}
.hero h1 .line-2 { display: block; color: var(--amber); }
.hero h1 .line-3 { display: block; font-style: normal; font-weight: 800; }
.hero .kicker {
  font-size: clamp(18px, 2vw, 22px); line-height: 1.5; max-width: 520px;
  color: rgba(255,255,255,.88); margin-bottom: 36px;
}
.hero .kicker .kicker-sub {
  display: block; margin-top: 14px;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,.65);
  font-style: italic;
}
.hero .meta {
  display: grid; grid-template-columns: repeat(3, auto); gap: 32px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25);
  margin-bottom: 32px; max-width: 560px;
}
.hero .meta > div { }
.hero .meta .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.hero .meta .value { font-family: var(--font-display); font-weight: 800; font-size: 20px; font-style: italic; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.hero-clown {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: float 6s ease-in-out infinite;
}
.hero-clown img {
  width: 100%; max-width: 440px; height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
}
.hero-clown .ring {
  position: absolute; inset: -30px;
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-clown .stars {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-clown .star {
  position: absolute; color: var(--amber); font-size: 24px;
  animation: twinkle 3s ease-in-out infinite;
}
.hero-clown .star:nth-child(1) { top: 8%; left: -6%; animation-delay: 0s; color: var(--amber); }
.hero-clown .star:nth-child(2) { top: 30%; right: -8%; animation-delay: .7s; color: var(--sky); }
.hero-clown .star:nth-child(3) { bottom: 15%; left: -4%; animation-delay: 1.4s; color: var(--green); }
.hero-clown .star:nth-child(4) { bottom: 5%; right: 10%; animation-delay: 2.1s; color: var(--red); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes twinkle { 0%,100% { opacity: 1; transform: scale(1) rotate(0); } 50% { opacity: .5; transform: scale(1.3) rotate(20deg); } }

.scroll-ind {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-ind .line { width: 1px; height: 40px; background: rgba(255,255,255,.4); animation: grow 2s ease-in-out infinite; transform-origin: top; }
@keyframes grow { 0%,100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero .eyebrow, .hero .actions, .hero .meta { justify-self: center; margin-left: auto; margin-right: auto; }
  .hero .meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-clown { order: -1; }
  .hero-clown img { max-width: 260px; }
}

/* ============ SECTION BASE ============ */
section { position: relative; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(40px, 6vw, 80px); line-height: .95; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-lead { font-size: 19px; line-height: 1.6; max-width: 640px; color: rgba(26,15,31,.75); margin-bottom: 60px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--red); }

/* ============ GALLERY ============ */
.gallery { padding: 120px 0; background: var(--paper); }
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
}
.gallery-grid .tile {
  overflow: hidden; border-radius: 4px; position: relative;
  background: #e8d4a8;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.gallery-grid .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.gallery-grid .tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.gallery-grid .tile:hover img { transform: scale(1.05); }
.gallery-grid .tile.t1 { grid-column: span 5; grid-row: span 3; }
.gallery-grid .tile.t2 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .tile.t3 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .tile.t4 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .tile.t5 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .tile.t6 { grid-column: span 5; grid-row: span 3; }
.gallery-grid .tile.t7 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .tile.t8 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .tile.t9 { grid-column: span 5; grid-row: span 3; }
.gallery-grid .tile.t10 { grid-column: span 3; grid-row: span 3; }
.gallery-grid .tile.t11 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .tile.t12 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .tile.quote {
  grid-column: span 4; grid-row: span 3;
  background: var(--red); color: #fff;
  padding: 32px; display: flex; flex-direction: column; justify-content: space-between;
}
.gallery-grid .tile.quote .q {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 24px; line-height: 1.2;
}
.gallery-grid .tile.quote .attr { font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; opacity: .85; }
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .gallery-grid .tile { grid-column: span 3 !important; grid-row: span 2 !important; }
  .gallery-grid .tile.t1, .gallery-grid .tile.t6, .gallery-grid .tile.t9 { grid-column: span 6 !important; grid-row: span 3 !important; }
}

/* ============ PROGRAMMA ============ */
.programma { padding: 120px 0; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.programma::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(140,60,140,.35), transparent 70%);
  pointer-events: none;
}
.programma::after {
  content: ''; position: absolute; bottom: -300px; left: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(40,180,220,.25), transparent 70%);
  pointer-events: none;
}
.programma .container { position: relative; z-index: 1; }
.programma .section-eyebrow { color: var(--amber); }
.programma .section-eyebrow::before { background: var(--amber); }
.programma .section-title { color: var(--paper); }
.programma .section-lead { color: rgba(255,247,236,.7); }

.days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.day {
  background: rgba(255,247,236,.04);
  border: 1px solid rgba(255,247,236,.12);
  border-radius: 4px;
  padding: 32px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.day:hover { transform: translateY(-6px); border-color: var(--amber); background: rgba(255,247,236,.07); }
.day .day-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,247,236,.12); margin-bottom: 20px; }
.day .day-num {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 72px; line-height: 1; letter-spacing: -.03em;
}
.day:nth-child(1) .day-num { color: var(--red); }
.day:nth-child(2) .day-num { color: var(--sky); }
.day:nth-child(3) .day-num { color: var(--green); }
.day .day-date { font-family: var(--font-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,247,236,.6); text-align: right; }
.day .day-date strong { display: block; color: var(--paper); font-size: 14px; margin-top: 4px; }
.day h3 {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 28px; margin-bottom: 20px;
}

/* ---- "Programma in aggiornamento" placeholder ---- */
.day-soon {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px;
  padding: 28px 4px 8px;
  position: relative;
}
.day-soon .soon-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(240,160,0,.12);
  color: var(--amber);
  border: 1px dashed rgba(240,160,0,.5);
  animation: soonPulse 2.6s ease-in-out infinite;
}
.day-soon .soon-icon svg { width: 22px; height: 22px; }
.day:nth-child(1) .soon-icon { color: var(--red); background: rgba(220,0,20,.12); border-color: rgba(220,0,20,.45); }
.day:nth-child(2) .soon-icon { color: var(--sky); background: rgba(40,180,220,.12); border-color: rgba(40,180,220,.45); }
.day:nth-child(3) .soon-icon { color: var(--green); background: rgba(125,200,55,.12); border-color: rgba(125,200,55,.45); }

.day-soon .soon-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); font-weight: 700;
}
.day-soon .soon-text {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,247,236,.6);
  max-width: 280px;
}
@keyframes soonPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: .85; }
}

/* ---- Notice band sotto le card ---- */
.programma-notice {
  margin-top: 48px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 20px 28px;
  background: rgba(255,247,236,.04);
  border: 1px solid rgba(255,247,236,.12);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  font-size: 14px; color: rgba(255,247,236,.85);
}
.programma-notice .notice-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(240,160,0,.25);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.programma-notice .notice-link {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700;
  color: var(--amber); text-decoration: none;
  padding: 8px 14px; border: 1px solid var(--amber); border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.programma-notice .notice-link:hover { background: var(--amber); color: var(--ink); }

@media (max-width: 820px) {
  .days { grid-template-columns: 1fr; }
  .programma-notice { padding: 18px 20px; }
  .programma-notice .notice-link { margin-left: 0; }
}

/* ============ PARTECIPA ============ */
.partecipa { padding: 120px 0; background: var(--paper-2); position: relative; overflow: hidden; }
.partecipa-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.partecipa-img {
  position: relative;
  border-radius: 4px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--violet);
}
.partecipa-img img { width: 100%; height: 100%; object-fit: cover; }
.partecipa-img .corner-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--amber); color: var(--ink);
  padding: 10px 14px; border-radius: 2px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}
.ways { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.way {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items: center;
  padding: 24px; border: 1px solid var(--line); border-radius: 4px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none; color: inherit;
}
.way:hover { transform: translateX(4px); border-color: var(--red); box-shadow: 0 10px 24px rgba(220,0,20,.08); }
.way .num { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 44px; line-height: 1; color: var(--red); }
.way h4 { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 22px; margin-bottom: 4px; }
.way p { font-size: 14px; line-height: 1.5; color: rgba(26,15,31,.65); }
.way .arr { font-size: 24px; color: var(--red); transition: transform .2s ease; }
.way:hover .arr { transform: translateX(6px); }
@media (max-width: 820px) {
  .partecipa-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ LUOGO / MAPPA ============ */
.luogo { padding: 120px 0; background: var(--paper); }
.luogo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.luogo-info {
  background: var(--sky); color: #fff;
  padding: 48px; border-radius: 4px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.luogo-info::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
  border: 30px solid rgba(255,255,255,.15); border-radius: 50%;
}
.luogo-info .section-eyebrow { color: var(--amber); position: relative; z-index: 1; }
.luogo-info .section-eyebrow::before { background: var(--amber); }
.luogo-info h2 {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 52px; line-height: .95; margin-bottom: 20px; position: relative; z-index: 1;
}
.luogo-info .addr { font-size: 18px; line-height: 1.6; margin-bottom: 32px; position: relative; z-index: 1; }
.luogo-info .addr strong { font-weight: 700; }
.luogo-info .transport { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; font-size: 14px; }
.luogo-info .transport div { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.luogo-info .transport .ic { font-size: 20px; }
.luogo-map {
  background: #d8cba0; border-radius: 4px; overflow: hidden;
  min-height: 420px; position: relative;
}
.luogo-map iframe { width: 100%; height: 100%; border: 0; display: block; position: absolute; inset: 0; }
@media (max-width: 820px) {
  .luogo-grid { grid-template-columns: 1fr; }
  .luogo-info { padding: 32px; }
  .luogo-info h2 { font-size: 40px; }
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 80px 0; background: var(--red); color: #fff;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--amber);
}
.cta-band::before { left: -50px; }
.cta-band::after { right: -50px; }
.cta-band h2 {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(36px, 5vw, 60px); line-height: 1; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.cta-band .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.cta-band .btn-primary { background: var(--ink); color: #fff; }
.cta-band .btn-primary:hover { background: #000; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }

/* ============ FOOTER ============ */
footer {
  background: var(--ink); color: var(--paper); padding: 80px 0 40px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.foot-brand .logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.foot-brand .logo img { height: 56px; }
.foot-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,247,236,.7); max-width: 320px; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-col a { color: rgba(255,247,236,.85); text-decoration: none; transition: color .15s ease; }
.foot-col a:hover { color: var(--amber); }
.foot-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,247,236,.12);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,247,236,.5);
}
.foot-bottom .socials { display: flex; gap: 16px; }
.foot-bottom .socials a { color: rgba(255,247,236,.7); transition: color .15s ease; font-size: 18px; }
.foot-bottom .socials a:hover { color: var(--amber); }
@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ============ Marquee ============ */
.marquee {
  background: var(--amber); color: var(--ink);
  padding: 14px 0; overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll 35s linear infinite;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 28px; letter-spacing: -.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .sep {
  width: 14px; height: 14px; border-radius: 50%; background: var(--red); display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
