/* ===== Naiad Bellydance – design system ===== */
:root {
  --plum: #2a1230;
  --plum-2: #3d1c46;
  --gold: #c9a24b;
  --gold-light: #e6c87d;
  --sand: #faf5ec;
  --ink: #2b2430;
  --muted: #6f6478;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(42, 18, 48, .14);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--plum-2); }
.container { width: min(1100px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--plum); }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.5rem); margin-bottom: .6em; }
h3 { font-size: 1.35rem; }

.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 10px; top: 10px; background: var(--gold); color: var(--plum); padding: .5em 1em; z-index: 999; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(42, 18, 48, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; }
.brand {
  font-family: 'Aref Ruqaa', var(--font-display), serif; font-size: 1.5rem; font-weight: 700;
  color: var(--gold-light); text-decoration: none; letter-spacing: .5px;
}
.brand span { color: var(--white); font-weight: 400; }
.nav-menu { display: flex; gap: 1.4rem; list-style: none; align-items: center; }
.nav-menu a {
  color: #f1e9f4; text-decoration: none; font-size: .98rem; letter-spacing: .3px;
  padding: .3em 0; border-bottom: 2px solid transparent; transition: .25s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.nav-cta a { border: none !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold-light); margin: 6px 0; transition: .3s; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 62px 0 auto 0; background: var(--plum);
    flex-direction: column; padding: 1.5rem 0 2rem; gap: 1.1rem;
    transform: translateY(-130%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: .85em 2em; border-radius: 10px;
  text-decoration: none; font-weight: 500; letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s; border: 0; cursor: pointer; font-family: var(--font-body); font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--plum); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold-light); background: transparent; }
.btn-plum { background: var(--plum); color: var(--gold-light); }
.btn-sm { padding: .55em 1.3em; font-size: .92rem; }

/* ===== Hero full-screen ===== */
.hero {
  position: relative; color: var(--white);
  background-color: var(--plum);
  background-size: cover; background-position: center 30%;
  overflow: hidden;
}
.hero-full {
  min-height: 94vh; min-height: 94svh;
  display: flex; align-items: flex-end;
  background-position: center 30%;
}
/* Soggetto al centro: il testo sta in basso, mai sopra di lei */
.hero-full::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14,5,18,.97) 0%, rgba(14,5,18,.9) 16%, rgba(17,6,22,.62) 26%, rgba(20,8,25,.22) 37%, rgba(20,8,25,.05) 48%, transparent 58%),
    linear-gradient(to bottom, rgba(20,8,25,.55) 0%, transparent 18%);
}
.hero-content {
  position: relative; z-index: 2; padding: 6rem 0 3.5rem; width: 100%;
}
.hero-text {
  max-width: 760px; margin: 0 auto; text-align: center;
  animation: hero-in 1.1s ease both;
}
.hero-text .hero-actions { justify-content: center; }
.hero h1.hero-name {
  font-family: 'Aref Ruqaa', var(--font-display), serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  line-height: 1.1;
  color: var(--gold-light);
  text-shadow: 0 4px 34px rgba(0,0,0,.65), 0 0 60px rgba(201,162,75,.25);
  margin-bottom: .25em;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.hero h1 {
  color: var(--white); margin-bottom: .4em;
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  text-shadow: 0 2px 30px rgba(0,0,0,.55);
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p { font-size: 1.18rem; color: #f0e6f4; margin: 0 auto 1.8em; max-width: 40rem; font-weight: 300; text-shadow: 0 1px 14px rgba(0,0,0,.6); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { display: none; }
.hero-scroll-off {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(230,200,125,.75); border-radius: 16px; z-index: 2;
}
.hero-scroll::before {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 9px; border-radius: 3px; background: var(--gold-light);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 12px); opacity: .2; }
}
@media (max-width: 820px) {
  .hero-full { min-height: 92vh; min-height: 92svh; background-position: center 26%; }
  .hero-content { padding: 4rem 0 2.6rem; }
  .hero-full::before {
    background:
      linear-gradient(to top, rgba(14,5,18,.97) 0%, rgba(14,5,18,.93) 24%, rgba(17,6,22,.7) 36%, rgba(20,8,25,.28) 48%, rgba(20,8,25,.06) 60%, transparent 72%),
      linear-gradient(to bottom, rgba(20,8,25,.5) 0%, transparent 14%);
  }
  .hero-scroll { display: none; }
}

/* ===== Quote band emozionale ===== */
.quote-band {
  position: relative; color: var(--white); text-align: center;
  background-size: cover; background-position: center;
  padding: clamp(5rem, 14vw, 9rem) 0;
}
@media (min-width: 1024px) { .quote-band { background-attachment: fixed; } }
.quote-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20,8,25,.72), rgba(32,13,40,.66));
}
.quote-band .container { position: relative; z-index: 1; }
.quote-band blockquote { max-width: 46rem; margin: 0 auto; }
.quote-band blockquote p {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem); line-height: 1.35;
  color: #f7efdc; text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.quote-band cite {
  display: block; margin-top: 1.4rem; font-style: normal;
  letter-spacing: 3px; text-transform: uppercase; font-size: .85rem; color: var(--gold-light);
}

/* ===== Sections ===== */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.section-plum { background: var(--plum); color: #eadff0; }
.section-plum h2 { color: var(--gold-light); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: .8rem;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: .8em;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 46rem; }
.section-plum .lead { color: #d9c9e0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.rounded-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* ===== Cards corsi ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; margin-top: 2rem; }
.course-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(42,18,48,.08); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.course-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.course-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.course-body h3 { color: var(--plum); }
.course-meta { font-size: .95rem; color: var(--muted); }
.badge {
  align-self: flex-start; background: #f3e8d3; color: #8a6a1f; font-size: .78rem;
  padding: .25em .9em; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.course-body .btn { margin-top: auto; align-self: flex-start; }

/* ===== Feature list ===== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feature {
  background: var(--white); padding: 2.2rem 1.5rem 1.8rem; border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(42,18,48,.07); border-top: 3px solid var(--gold);
  text-align: center;
}
.feature .icon { display: flex; justify-content: center; color: var(--gold); margin-bottom: 1.1rem; }
.feature .icon svg { width: 80px; height: 80px; }
.feature h3 { margin: .4em 0 .3em; font-size: 1.25rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-2) 100%);
  color: #eadff0; text-align: center; padding: 4rem 0;
}
.cta-band h2 { color: var(--gold-light); }
.cta-band > .container > p { max-width: 40rem; margin: 0 auto 2rem; }
.cta-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: 2.2rem; }
.cta-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,162,75,.35);
  border-radius: var(--radius); padding: 1.2rem 1.2rem 1.5rem; text-decoration: none;
  color: #eadff0; display: flex; flex-direction: column; gap: .35rem; transition: .25s;
}
.cta-card:hover { background: rgba(201,162,75,.15); transform: translateY(-4px); }
.cta-card strong { color: var(--gold-light); font-size: 1.15rem; font-family: var(--font-display); margin-top: .5rem; }
.cta-card span:last-child { font-size: .9rem; opacity: .85; }
/* Riquadro sempre quadrato: qualsiasi proporzione viene ritagliata, mai deformata */
.cta-foto {
  display: block; position: relative; width: 100%; padding-top: 100%; height: 0;
  flex: none; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,162,75,.75);
  box-shadow: 0 0 0 1px rgba(20,8,25,.6), 0 8px 24px rgba(0,0,0,.35);
}
.cta-foto img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  transition: transform .45s ease;
}
.cta-card:hover .cta-foto img { transform: scale(1.06); }

/* ===== Timeline (chi sono) ===== */
.prose { max-width: 46rem; }
.prose p { margin-bottom: 1.2em; }
.milestones { list-style: none; margin-top: 2rem; border-left: 2px solid var(--gold); padding-left: 1.6rem; display: grid; gap: 1.3rem; }
.milestones li { position: relative; }
.milestones li::before {
  content: ""; position: absolute; left: -2.05rem; top: .45em;
  width: .8rem; height: .8rem; background: var(--gold); border-radius: 50%;
}
.milestones strong { color: var(--plum); font-family: var(--font-display); font-size: 1.15rem; }

/* ===== Pagine delle sedi ===== */
.briciole { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.briciole a { color: var(--muted); text-decoration: none; }
.briciole a:hover { color: var(--plum); text-decoration: underline; }
.sede-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: stretch; margin-top: 2.2rem; }
@media (max-width: 900px) { .sede-layout { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ===== Carosello foto della sede (stessa altezza del box informazioni) ===== */
.carosello {
  position: relative; min-height: 320px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); background: var(--plum);
}
@media (max-width: 900px) { .carosello { min-height: 0; aspect-ratio: 4/3; } }
.car-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .9s ease; pointer-events: none;
}
.car-slide.attiva { opacity: 1; }
.car-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(20,8,25,.5); color: var(--gold-light); font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s, background .25s;
}
.carosello:hover .car-nav, .car-nav:focus-visible { opacity: 1; }
.car-nav:hover { background: rgba(20,8,25,.8); }
.car-nav.prec { left: 12px; }
.car-nav.succ { right: 12px; }
@media (hover: none) { .car-nav { opacity: .85; } }
.car-punti { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 2; display: flex; justify-content: center; gap: .5rem; }
.car-punto {
  width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.45); transition: background .25s, transform .25s;
}
.car-punto.attivo { background: var(--gold-light); transform: scale(1.25); }
.sede-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem; }
.sede-box h2 { font-size: 1.5rem; margin-bottom: .6em; }
.sede-dati { display: grid; grid-template-columns: auto; gap: .1rem; }
.sede-dati dt { font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-top: 1rem; }
.sede-dati dd { margin: 0; color: var(--ink); }
.sede-dati dd a { color: var(--plum-2); }
.sede-azioni { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.mappa-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 1.6rem; background: #ddd; }
.mappa-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
@media (max-width: 700px) { .mappa-wrap iframe { height: 300px; } }

/* ===== Zone servite ===== */
.zone-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.zona {
  background: #fff; border: 1px solid #e6dbc4; color: var(--plum);
  padding: .45em 1.1em; border-radius: 50px; font-size: .95rem;
  box-shadow: 0 2px 8px rgba(42,18,48,.06);
}
.section-alt .zona { background: var(--sand); }

/* ===== FAQ ===== */
.faq-item { background: var(--white); border-radius: 14px; margin-bottom: .9rem; box-shadow: 0 3px 14px rgba(42,18,48,.06); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 500; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; transition: .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.2rem; color: var(--muted); }

/* ===== Social ===== */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2rem; }
.social-grid a {
  display: block; border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 9 / 16; box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.social-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .4s; }

/* Su mobile diventa uno slider orizzontale */
@media (max-width: 820px) {
  .social-grid {
    display: flex; gap: .9rem; margin-inline: -4%; padding: 0 4% .6rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .social-grid::-webkit-scrollbar { display: none; }
  .social-grid a { flex: 0 0 68%; scroll-snap-align: center; }
}
.social-grid a:hover img { transform: scale(1.05); }
.social-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.social-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(42,18,48,.55); color: var(--gold-light); opacity: 0; transition: opacity .3s;
}
.social-grid a:hover .social-overlay, .social-grid a:focus-visible .social-overlay { opacity: 1; }

/* ===== Form ===== */
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.2rem; max-width: 620px; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: .35em; color: var(--plum); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8em 1em; border: 1.5px solid #ddd2e2; border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; background: #fdfbf7; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: .85rem; color: var(--muted); }
.hp-field { position: absolute; left: -9999px; }
.alert { padding: 1em 1.3em; border-radius: 12px; margin-bottom: 1.4rem; }
.alert-ok { background: #e8f6e8; color: #256029; }
.alert-err { background: #fbe9e7; color: #8a2318; }

/* ===== WhatsApp sticky ===== */
.wa-sticky {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5); transition: transform .2s;
  animation: wa-pulse 2.5s infinite;
}
.wa-sticky:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Footer ===== */
.site-footer { background: #1a0b1f; color: #cdbcd6; padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-title { color: var(--gold-light); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: .7em; }
.site-footer ul { list-style: none; }
.site-footer a { color: #cdbcd6; text-decoration: none; line-height: 2; }
.site-footer a:hover { color: var(--gold-light); }
.footer-zone { border-top: 1px solid rgba(255,255,255,.08); padding: 1.1rem 0 .2rem; }
.footer-zone p { font-size: .78rem; line-height: 1.7; color: #8d7d97; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .85rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== Pagina privacy ===== */
.blocco-privacy { background: var(--white); border-radius: 14px; padding: 1.3rem 1.5rem; margin: 1.2rem 0; box-shadow: 0 3px 14px rgba(42,18,48,.06); }
.blocco-privacy h3 { font-size: 1.15rem; margin-bottom: .4em; }
.blocco-privacy p { margin-bottom: .7em; }
.blocco-privacy p:last-child { margin-bottom: 0; font-size: .92rem; color: var(--muted); }
.prose h2 { font-size: 1.6rem; margin-top: 2.2rem; }
.lista-privacy { margin: 1rem 0 1.4rem 1.2rem; }
.lista-privacy li { margin-bottom: .6em; }

.elenco { margin: .6em 0 .6em 1.2rem; }
.elenco li { margin-bottom: .35em; }

/* ===== Accademia ===== */
.section-intro-acc { padding-top: 4rem; }
.prose-largo { max-width: 46rem; }
.lead-forte {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  line-height: 1.35; color: var(--plum); font-style: italic; margin-bottom: 1.2rem;
}

.indice-percorsi { padding: 3rem 0; }
.indice-titolo { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 1.4rem; }
.indice-lista { list-style: none; display: grid; gap: .5rem; counter-reset: none; }
@media (min-width: 760px) { .indice-lista { grid-template-columns: 1fr 1fr; gap: .6rem 2rem; } }
.indice-lista a {
  display: flex; align-items: baseline; gap: .9rem; text-decoration: none;
  padding: .75em .9em; border-radius: 12px; border: 1px solid #e8dcc4;
  background: var(--sand); transition: .22s;
}
.indice-lista a:hover { background: var(--plum); border-color: var(--plum); }
.indice-lista a:hover .indice-nome { color: var(--gold-light); }
.indice-lista a:hover .indice-periodo, .indice-lista a:hover .indice-num { color: #c9a9d0; }
.indice-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); flex: none; }
.indice-testo { display: flex; flex-direction: column; }
.indice-nome { font-weight: 500; color: var(--plum); line-height: 1.3; }
.indice-periodo { font-size: .82rem; color: var(--muted); }

.percorso { scroll-margin-top: 80px; }
.percorso-testa { display: flex; align-items: flex-start; gap: 1.1rem; }
.percorso-num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1; color: var(--gold); opacity: .55; flex: none;
}
.percorso-testa h2 { margin-bottom: .15em; }
.percorso-sotto { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--muted); }
.percorso-periodo {
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin: 1.1rem 0 .9rem;
}
.percorso .prose { max-width: 44rem; }
.percorso .prose p { margin-bottom: 1em; }
.percorso-azioni { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-top: 1.6rem; }
.badge-attesa {
  background: transparent; border: 1px dashed var(--gold); color: var(--muted);
  text-transform: none; letter-spacing: .5px;
}

.spett-titolo {
  font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--gold-light); font-style: normal; margin-bottom: .7em;
}
.quote-band .spett-testo {
  font-family: var(--font-body); font-style: normal; font-size: 1.05rem;
  line-height: 1.7; color: #f0e6f4; margin-bottom: 1em;
}
.blocco-quiz { max-width: 40rem; }

/* ===== Testimonianze ===== */
.testi-grid { display: grid; gap: 1.2rem; margin-top: 1.5rem; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } }
.testi-card {
  background: var(--sand); border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0; padding: 1.4rem 1.5rem; margin: 0;
}
.testi-card blockquote { font-size: 1rem; line-height: 1.65; color: var(--ink); }
.testi-card blockquote::before { content: "«"; color: var(--gold); }
.testi-card blockquote::after { content: "»"; color: var(--gold); }
.testi-card figcaption { margin-top: .9rem; display: flex; flex-direction: column; }
.testi-nome { font-weight: 500; color: var(--plum); }
.testi-da { font-size: .82rem; color: var(--muted); }

/* Con la voce Accademia il menu è più affollato: la CTA non deve restringersi */
.nav-menu { flex-wrap: nowrap; }
.nav-menu > li { flex: none; }
.nav-cta a { white-space: nowrap; }
@media (min-width: 821px) and (max-width: 1120px) {
  .nav-menu { gap: 1rem; }
  .nav-menu a { font-size: .92rem; }
  .nav-cta a { padding: .5em 1.05em; font-size: .9rem; }
  .brand { font-size: 1.35rem; }
}
@media (max-width: 820px) {
  .nav-menu { flex-wrap: wrap; }
}

/* ===== Accademia: scheda date e quote ===== */
.scheda-percorso {
  display: grid; gap: 1.2rem; margin-top: 1.8rem;
  background: var(--white); border: 1px solid #e8dcc4; border-radius: 14px; padding: 1.4rem 1.6rem;
}
.section-alt .scheda-percorso { background: var(--sand); }
@media (min-width: 640px) { .scheda-percorso { grid-template-columns: 1.4fr 1fr; gap: 2rem; } }
.scheda-eti {
  font-size: .74rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5em;
}
.scheda-val { font-size: 1rem; line-height: 1.7; color: var(--ink); }
.scheda-quota { font-family: var(--font-display); font-size: 1.25rem; color: var(--plum); }
.percorso-nota {
  margin-top: 1.2rem; font-size: .92rem; line-height: 1.6; color: var(--muted);
  border-left: 2px solid #e8dcc4; padding-left: 1rem;
}
.percorso-nota p + p { margin-top: .7em; }
.riquadro-pacchetto {
  background: var(--sand); border: 1px dashed var(--gold); border-radius: 12px;
  padding: 1.1rem 1.3rem; margin: 1.4rem 0;
}
.nota-corsi { font-size: .95rem; color: var(--muted); line-height: 1.65; }

/* ===== Pagina articolo: apertura, foto a tutta larghezza, colonna di lettura ampia ===== */
.intro-articolo { padding-bottom: 2.4rem; text-align: center; }
.intro-articolo .eyebrow { display: block; margin-bottom: .8rem; }
.intro-articolo h1 { max-width: 20ch; margin: 0 auto; }
.apertura-articolo {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.5; color: var(--muted); max-width: 40rem; margin: 1.2rem auto 0;
}
.apertura-articolo strong { color: var(--plum); font-weight: 600; }

.banda-foto {
  margin: 0 0 1rem; width: 100%; overflow: hidden;
  background: var(--plum);
}
.banda-foto img {
  width: 100%; height: clamp(280px, 46vw, 560px);
  object-fit: cover; object-position: center 35%;
}
@media (min-width: 1100px) {
  .banda-foto { width: min(1280px, 94%); margin-inline: auto; border-radius: var(--radius); }
}

/* Colonna di lettura: più larga e più respirata delle .prose normali */
.prose-ampio { max-width: 44rem; margin-inline: auto; }
.prose-ampio h2 { margin-bottom: .5em; }
.prose-ampio > p {
  font-size: 1.09rem; line-height: 1.8; margin-bottom: 1.15em; color: var(--ink);
}
.prose-ampio > p:first-of-type { font-size: 1.15rem; }
.prose-ampio .eyebrow { display: block; margin-bottom: .7rem; }

.citazione-inline {
  margin: 2.4rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid #e8dcc4;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem); line-height: 1.5; color: var(--plum-2);
}

/* ===== Accademia: testo a sinistra, scheda con foto e quota a destra ===== */
.percorso-griglia {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: 3.5rem;
  align-items: start;
}
.percorso-corpo { min-width: 0; }

.percorso-offerta {
  position: sticky;
  top: 6rem;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(42, 18, 48, .10);
  border: 1px solid rgba(42, 18, 48, .06);
}
.offerta-foto {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}
.offerta-corpo { padding: 1.7rem 1.7rem 1.9rem; }

.offerta-prezzo {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.1rem;
  line-height: 1;
  color: var(--plum, #2a1230);
}
.offerta-prezzo-testo { font-size: 1.7rem; line-height: 1.25; }

.offerta-dett {
  margin: .55rem 0 0;
  font-size: .88rem;
  line-height: 1.5;
  color: #6f6478;
}
.offerta-alt {
  margin: .9rem 0 0;
  padding: .55em .9em;
  background: #faf5ec;
  border-radius: 8px;
  font-size: .88rem;
  color: #6f6478;
}

.offerta-quando {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid #eee3ea;
}
.offerta-eti {
  margin: 0 0 .4rem;
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a8fa3;
}
.offerta-date { margin: 0; font-size: .95rem; line-height: 1.75; color: #2b2430; }

.offerta-cta {
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  text-align: center;
}
.offerta-rassicura {
  margin: .7rem 0 0;
  font-size: .78rem;
  line-height: 1.5;
  text-align: center;
  color: #9a8fa3;
}

@media (max-width: 900px) {
  .percorso-griglia { grid-template-columns: 1fr; gap: 2.2rem; }
  .percorso-offerta { position: static; }
  .offerta-prezzo { font-size: 2.6rem; }
}
/* Il pulsante del menu: senza questa riga "padding: .3em 0" di .nav-menu a
   azzera il margine interno e il testo tocca i bordi. */
.nav-menu .nav-cta a.btn { padding: .55em 1.4em; border-radius: 10px; }
/* L'orario dei corsi dentro le schede di /corsi */
.corso-sottotitolo { font-family: var(--font-display), serif; font-style: italic; color: var(--oro, #e6c87d); margin: .1rem 0 .6rem; }
.orario-turni { list-style: none; padding: 0; margin: .9rem 0 .6rem; }
.orario-turni li { padding: .5rem 0; border-top: 1px solid rgba(255,255,255,.12); line-height: 1.5; font-size: .95rem; }
.orario-turni li:first-child { border-top: 0; }
.orario-turni a { text-decoration: none; opacity: .85; }
.orario-turni a:hover { opacity: 1; text-decoration: underline; }
.corso-nota { font-size: .85rem; opacity: .75; margin-top: .6rem; }
/* Inviti alla lezione di prova dentro /corsi */
.corso-azione { margin: 1rem 0 0; }
.corsi-invito { text-align: center; margin: 2.6rem auto 0; max-width: 44rem; padding: 2rem 1.4rem; border-top: 1px solid rgba(255,255,255,.14); }
.corsi-invito .lead { margin-bottom: 1.2rem; }
.corsi-invito .btn { margin: .3rem .3rem 0; }
.corsi-invito .corso-nota { margin-top: 1rem; }
/* Schede dei livelli: il pulsante resta in fondo, cosi le schede si allineano */
.corso-livello { display: flex; }
.corso-livello .course-body { display: flex; flex-direction: column; width: 100%; }
.corso-livello .corso-azione { margin-top: auto; padding-top: 1rem; }

/* Il voto medio su Google: stelle, numero e link alle recensioni */
.voto-google { display: inline-flex; align-items: center; gap: .85rem; flex-wrap: wrap;
  justify-content: center; text-decoration: none; color: inherit;
  background: rgba(255,255,255,.06); border: 1px solid rgba(230,200,125,.35);
  border-radius: 12px; padding: .7em 1.2em; margin: .2rem 0 1.4rem; transition: border-color .2s, background .2s; }
.voto-google:hover { border-color: rgba(230,200,125,.75); background: rgba(255,255,255,.1); }
.voto-google-stelle { color: #e0a72c; letter-spacing: 3px; font-size: 1.05rem; line-height: 1; }
.voto-google-testo { font-size: .95rem; }
.voto-google-testo strong { font-size: 1.25rem; vertical-align: -1px; }
.voto-google-fonte { opacity: .7; }
.voto-google-leggi { font-size: .85rem; color: var(--oro, #e6c87d); white-space: nowrap; }
.voto-google.grande { font-size: 1.05rem; padding: .9em 1.5em; }
.voto-google.grande .voto-google-stelle { font-size: 1.35rem; }
@media (max-width: 480px) { .voto-google { flex-direction: column; gap: .4rem; text-align: center; } }