/* ==============================
VARIABILI E BASE
============================== */
:root {
  --yellow: #ffdd00;
  --yellow-lt: #ffee44;
  --yellow-dk: #ffbb00;
  --dark: #1a1a2e;
  --navy: #2c3e50;
  --navy2: #34495e;
  --red: #e60b0b;
  --text: #000;
  --muted: #555;
  --border: #e8eaed;
  --radius: 8px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
}

/* ==============================
SEZIONE 1 — HERO + MANIFESTO
============================== */
.hero-landing {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-landing .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Riduzione del movimento: fallback su poster se l'utente preferisce no-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-landing .hero-bg-video {
    display: none;
  }
}

.hero-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 30%,
    rgba(0, 0, 0, 0.15) 75%
  );
  pointer-events: none;
}

.hero-landing .hero-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 2rem 3.5rem;
  color: #fff;
}

@media (min-width: 992px) {
  .hero-landing {
    min-height: 700px;
  }

  .hero-landing .hero-text {
    padding: 4rem 4rem 4.5rem;
  }
}

.hero-headline {
  font-family: "Merriweather", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-headline em {
  color: var(--yellow);
  font-style: italic;
}

@media (max-width: 767px) {
  .hero-headline {
    font-size: 2rem;
  }
}

/* CTA "Leggi il manifesto" — bianco su scuro */
.btn-manifesto {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-manifesto:hover {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 6px 24px rgba(255, 221, 0, 0.45);
  transform: translateY(-2px);
}

.btn-manifesto i {
  transition: transform 0.2s;
}

.btn-manifesto:hover i {
  transform: translateX(3px);
}

/* ==============================
INTRO COMMUNITY
============================== */
.intro-community-wrap {
  background: #fff;
  padding: 5rem 0 4.5rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.intro-community-inner {
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.intro-community-quote {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  margin: 0 0 2.25rem;
  quotes: none;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .intro-community-quote {
    font-size: 1.7rem;
  }
  .intro-community-wrap {
    padding: 3.5rem 0 3rem;
  }
}

.intro-community-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.intro-community-ornament::before,
.intro-community-ornament::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: #d0d0d0;
}

.intro-community-ornament span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d0d0d0;
}

.intro-community-lead {
  font-size: 0.975rem;
  line-height: 1.85;
  color: #555;
}

.intro-community-pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 2.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #ffdd00;
  xborder: 1px solid #e4e1d8;
  counter-reset: pillar;
}

@media (max-width: 480px) {
  .intro-community-pillars {
    grid-template-columns: 1fr;
  }
}

.intro-community-pillars li {
  counter-increment: pillar;
  position: relative;
  background: #fff;
  padding: 1.5rem 1.4rem 1.4rem;
  overflow: hidden;
  text-align: left;
}

.intro-community-pillars li::before {
  content: counter(pillar, upper-roman);
  position: absolute;
  top: -0.25rem;
  right: 0.6rem;
  font-family: "Days One", sans-serif;
  font-size: 3.8rem;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* 
.intro-community-pillars li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--navy);
} */

.intro-community-pillars li span.pillar-text {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.intro-community-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 0.2rem;
  transition: opacity 0.2s;
}

.intro-community-cta:hover {
  opacity: 0.55;
  color: var(--navy);
}

/* ==============================
MANIFESTO — DOCUMENTO AUTOREVOLE
============================== */
.manifesto-wrap {
  background: #f2f1ed;
  padding: 4rem 0 5.5rem;
}

.manifesto-doc-frame {
  background: #fff;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #d6d3cb;
  border-top: 4px solid #1a1a2e;
  box-shadow:
    0 10px 48px rgba(0, 0, 0, 0.09),
    0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 3.5rem 3.5rem 3rem;
  position: relative;
}

@media (max-width: 767px) {
  .manifesto-doc-frame {
    padding: 2rem 1.25rem 2rem;
    margin: 0 0.75rem;
  }
}

.manifesto-doc-heading {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0ddd6;
}

.manifesto-doc-title {
  font-family: "Days One", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 10px;
  color: #1a1a2e;
  line-height: 1;
}

@media (max-width: 575px) {
  .manifesto-doc-title {
    font-size: 1.5rem;
    letter-spacing: 6px;
  }
}

.manifesto-doc-meta {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
}

/* peek — contenuto a visibilità limitata */
.manifesto-peek-wrapper {
  position: relative;
}

.manifesto-peek {
  position: relative;
  max-height: 460px;
  overflow: hidden;
  transition: max-height 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.manifesto-peek.open {
  max-height: 5000px;
}

.manifesto-peek-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    #fff 100%
  );
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.manifesto-reveal-wrap {
  text-align: center;
  padding-top: 1.5rem;
}

.manifesto-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1.5px solid #1a1a2e;
  color: #1a1a2e;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.manifesto-reveal-btn:hover {
  background: #1a1a2e;
  color: #fff;
}

/* Manifesto — stili monochrome, autorevoli */
.manifesto-num {
  background: #1a1a2e !important;
  color: #fff !important;
}

.manifesto-section-title {
  color: #1a1a2e;
  border-bottom: 1px solid #e8e5de;
  padding-bottom: 0.5rem;
  font-size: 1.1rem;
}

.patto-item {
  border-top: 2px solid #e0ddd6 !important;
  background: #faf9f6 !important;
}

.patto-item strong {
  color: #1a1a2e !important;
}

.manifesto-claim {
  border-top: 1px solid #1a1a2e;
  color: #1a1a2e;
  font-size: 1.15rem;
}

.ottieni-box {
  border: 1px solid #e8e5de;
  background: #faf9f6 !important;
}

.ottieni-box .ottieni-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666 !important;
}

/* ==============================
MANIFESTO ESPANDIBILE (legacy)
============================== */

.manifesto-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.manifesto-section-title {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
}

.manifesto-impegno {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.manifesto-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  font-family: "Days One", sans-serif;
}

.manifesto-impegno-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.manifesto-impegno-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.manifesto-patto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 767px) {
  .manifesto-patto {
    grid-template-columns: 1fr;
  }
}

.patto-item {
  background: #f8f9fa;
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 3px solid var(--yellow);
}

.patto-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.patto-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.manifesto-claim {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  border-top: 2px solid var(--yellow);
  padding-top: 1.5rem;
  margin-top: 2rem;
  line-height: 1.5;
}

.manifesto-ottieni {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .manifesto-ottieni {
    grid-template-columns: 1fr;
  }
}

.ottieni-box {
  background: #f8f9fa;
  border-radius: var(--radius);
  padding: 1.25rem;
}

.ottieni-box .ottieni-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow-dk);
}

.ottieni-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ottieni-box ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.25rem 0;
  padding-left: 1.4rem;
  position: relative;
}

.ottieni-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ==============================
SEZIONE 2 — PRICING
============================== */

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dk));
}

.pricing-card {
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
}

@media (max-width: 1400px) {
  .pricing-card {
    min-height: 364px;
  }
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.pricing-price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  font-family: "Merriweather", serif;
}

.pricing-price .per-day {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-top: 0.15rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.8375rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--yellow-dk);
  font-size: 0.65rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Badge sopra il titolo */
.pricing-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  background: var(--yellow);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

/* Griglia benefici doppia colonna */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefits-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.4rem 0;
}

.benefits-grid li .check-icon {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefits-grid li .check-icon i {
  font-size: 0.65rem;
  color: #000;
}

.benefits-grid li strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 700;
}

/* ==============================
SEZIONE 3 — PROGETTI
============================== */
.progetti-section {
  background: linear-gradient(180deg, #edf0f1 10%, #fff 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.progetti-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dk));
}

.progetto-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  height: 100%;
}

.progetto-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.progetto-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.progetto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.progetto-card:hover .progetto-img-wrap img {
  transform: scale(1.05);
}

.progetto-img-wrap .progetto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.progetto-card:hover .progetto-overlay {
  opacity: 1;
}

.progetto-overlay-text {
  color: #fff;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.progetto-body {
  padding: 1.25rem;
}

.progetto-title {
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  line-height: 1.35;
}

.progetto-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ==============================
SEZIONE 4 — STORIA
============================== */
.storia-section {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.storia-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dk));
}

.storia-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.storia-headline {
  font-family: "Merriweather", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.storia-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Video responsivo */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.4);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--yellow),
    rgba(255, 221, 0, 0.15)
  );
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(255, 221, 0, 0.3);
}

.timeline-year {
  font-family: "Days One", sans-serif;
  font-size: 0.8rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

.timeline-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
    margin: 0;
}

/* Gallery scroll storia */
.storia-gallery-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.storia-gallery {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.storia-gallery-item {
  flex: 0 0 calc(33.333% - 0.667rem);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

@media (max-width: 991px) {
  .storia-gallery-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 576px) {
  .storia-gallery-item {
    flex: 0 0 calc(100% - 0rem);
  }
}

.storia-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition:
    filter 0.3s,
    transform 0.4s;
}

.storia-gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* Frecce carousel */
.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

/* Dots indicatori gallery */
.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
}

.gallery-dot.active {
  background: var(--yellow);
  transform: scale(1.35);
}

@media (min-width: 577px) {
  .gallery-dots {
    display: none;
  }
}

.carousel-btn:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

/* ==============================
SEZIONE FOOTER CTA
============================== */
.final-cta-section {
  background: var(--yellow);
  text-align: center;
  color: #000;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  /* sottile pattern tipografico decorativo */
  box-shadow: 0 4px 24px rgba(255, 221, 0, 0.35);
}

.final-cta-section::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: "Merriweather", serif;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.final-cta-headline {
  font-family: "Merriweather", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .final-cta-headline {
    font-size: 1.6rem;
  }
}

.final-cta-sub {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.65);
  position: relative;
  z-index: 1;
}

.final-cta-sub em {
  color: #000;
  font-style: normal;
  font-weight: 700;
}

/* ==============================
UTILS / OVERRIDES
============================== */
.section-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow-dk);
}

.section-title {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.note-small {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 1rem;
}

/* bottone dark per CTA su sfondo giallo */
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.25);
  position: relative;
  z-index: 1;
}

.btn-cta-dark:hover {
  background: #1a1a2e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.35);
}

.btn-cta-dark i {
  transition: transform 0.3s ease;
}

.btn-cta-dark:hover i {
  transform: translateX(4px);
}

/*Blocco redazione*/
 .red-avatar-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: flex-end;
    }

    .red-avatar {
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #ddd;
      filter: grayscale(55%) opacity(.4);
      transition: filter .3s ease, box-shadow .3s ease, scale .3s ease;
      animation: bubbleFloat 5s ease-in-out infinite;
      position: relative;
      width: 58px;
      height: 58px;
    }


    /* Staggered delays — 7 buckets across all 35 */
    .red-avatar:nth-child(7n+1) {
      animation-delay: 0s;
    }

    .red-avatar:nth-child(7n+2) {
      animation-delay: .4s;
    }

    .red-avatar:nth-child(7n+3) {
      animation-delay: .8s;
    }

    .red-avatar:nth-child(7n+4) {
      animation-delay: 1.2s;
    }

    .red-avatar:nth-child(7n+5) {
      animation-delay: 2.0s;
    }

    .red-avatar:nth-child(7n+6) {
      animation-delay: 2.4s;
    }

    .red-avatar:nth-child(7n) {
      animation-delay: 2.8s;
    }

    @keyframes bubbleFloat {

      0%,
      100% {
        translate: 0 0;
      }

      50% {
        translate: 0 -4px;
      }
    }

    .red-avatar:hover {
      filter: grayscale(0%) opacity(1);
      scale: 1.14;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
      z-index: 2;
      border: 2px solid #ffdd00;
      animation-play-state: paused;
    }