.elementor-kit-512{--e-global-color-primary:#1E3030;--e-global-color-secondary:#8EA296;--e-global-color-text:#7D5987;--e-global-color-accent:#000000;--e-global-color-e33f238:#E5D4B8;--e-global-typography-primary-font-family:"Onest";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;}.elementor-kit-512 e-page-transition{background-color:#FFBC7D;}.elementor-kit-512 p{margin-block-end:48px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ── FONTS ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');


/* ── VARIABILI ────────────────────────────────────────────────── */
:root {
  --primary:     #1e3030;
  --primary-lt:  #2a4444;
  --primary-dim: rgba(30,48,48,0.08);
  --accent:      #3d7a5e;
  --accent2:     #2eb87a;
  --teal:        #1a6b6b;
  --teal-lt:     #2dd4bf;
  --lime:        #6aad3a;

  --bg:          #f6f7f4;
  --bg2:         #eef0eb;
  --bg3:         #e4e8e0;
  --ink:         #111c14;
  --ink2:        #2c3b2e;
  --muted:       rgba(17,28,20,0.45);
  --border:      rgba(17,28,20,0.08);
  --border-md:   rgba(17,28,20,0.14);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
  --nav-h: 80px;
}


/* ── RESET BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }


/* ── NAV ──────────────────────────────────────────────────────── */
.om-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
.om-nav--solid {
  background: rgba(246,247,244,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.om-nav__logo { display: flex; align-items: center; text-decoration: none; height: 42px; flex-shrink: 0; }
.om-nav__logo img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}
.om-nav--solid .om-nav__logo img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(22%) saturate(800%) hue-rotate(130deg) brightness(70%);
}

.om-nav__links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.om-nav__links a {
  font-family: var(--sans); font-size: .82rem; font-weight: 400;
  color: rgba(255,255,255,.8); text-decoration: none;
  letter-spacing: .03em; transition: color .2s;
}
.om-nav--solid .om-nav__links a { color: var(--muted); }
.om-nav__links a:hover { color: #fff; }
.om-nav--solid .om-nav__links a:hover { color: var(--ink); }
.om-nav__links a.active { color: #fff; font-weight: 500; }
.om-nav--solid .om-nav__links a.active { color: var(--ink); font-weight: 500; }

.om-nav__cta {
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  color: #fff; background: var(--primary); text-decoration: none;
  padding: 9px 22px; border-radius: 100px; letter-spacing: .02em;
  transition: background .2s, transform .2s, box-shadow .2s; white-space: nowrap;
}
.om-nav__cta:hover { background: var(--primary-lt); transform: scale(1.03); box-shadow: 0 4px 16px rgba(30,48,48,.3); }

.om-nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.om-nav__burger span { display: block; width: 24px; height: 1.5px; background: #fff; border-radius: 2px; transition: all .3s, background .4s; }
.om-nav--solid .om-nav__burger span { background: var(--ink); }

.om-mobile-menu {
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(246,247,244,.97); backdrop-filter: blur(20px);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.om-mobile-menu--open { opacity: 1; pointer-events: all; }
.om-mobile-menu a { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--ink); text-decoration: none; transition: color .2s; }
.om-mobile-menu a:hover { color: var(--primary); }
.om-mobile-menu__cta { font-family: var(--sans) !important; font-size: .95rem !important; font-weight: 500 !important; background: var(--accent2); color: #fff !important; padding: 13px 28px; border-radius: 100px; }

@media (max-width: 960px) {
  .om-nav { padding: 0 24px; }
  .om-nav__links { display: none; }
  .om-nav__cta { display: none; }
  .om-nav__burger { display: flex; }
}


/* ── FOOTER ───────────────────────────────────────────────────── */
.om-footer { background: var(--bg); padding: 72px 48px 36px; }
.om-footer__inner { max-width: 1120px; margin: 0 auto; }
.om-footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.om-footer__logo { display: block; height: 56px; width: auto; margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(22%) saturate(800%) hue-rotate(130deg) brightness(70%); }
.om-footer__brand p { font-size: .83rem; color: var(--muted); line-height: 1.75; max-width: 260px; }
.om-footer__socials { display: flex; gap: 10px; margin-top: 24px; }
.om-footer__social-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  text-decoration: none; transition: border-color .2s, background .2s, color .2s;
}
.om-footer__social-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }
.om-footer__social-btn svg { width: 14px; height: 14px; fill: currentColor; }
.om-footer__col h4 { font-size: .66rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.om-footer__col ul { list-style: none; padding: 0; margin: 0; }
.om-footer__col li { margin-bottom: 11px; }
.om-footer__col a { font-size: .85rem; font-weight: 300; color: var(--ink2); text-decoration: none; transition: color .2s; }
.om-footer__col a:hover { color: var(--primary); }
.om-footer__col p { font-size: .83rem; color: var(--muted); margin-bottom: 7px; line-height: 1.6; }
.om-footer__col p a { color: var(--primary); }
.om-footer__cta-sm {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 16px;
  font-size: .78rem; font-weight: 500; color: #fffff; background: var(--primary);
  padding: 8px 16px; border-radius: 100px; text-decoration: none; transition: background .2s;
}
.om-footer__cta-sm:hover { background: var(--primary-lt); }
.om-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.om-footer__bottom p { font-size: .74rem; color: rgba(17,28,20,.25); }
.om-footer__sponsor { display: flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--border); border-radius: 7px; background: var(--bg2); }
.om-footer__sponsor span:last-child { font-size: .68rem; color: var(--muted); }
.om-footer__sponsor-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; animation: pulse 2.2s ease-in-out infinite; }

@media (max-width: 960px) {
  .om-footer { padding: 56px 24px 32px; }
  .om-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .om-footer__brand { grid-column: 1/-1; }
}
@media (max-width: 600px) {
  .om-footer__top { grid-template-columns: 1fr; }
}


/* ── UTILITY — REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }


/* ── UTILITY — BOTTONI ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 28px; background: var(--accent2); color: #fff;
  border: none; border-radius: 100px; font-family: var(--sans);
  font-size: .88rem; font-weight: 500; text-decoration: none;
  letter-spacing: .02em; transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer;
}
.btn-primary:hover { background: #3bcf89; transform: scale(1.03); box-shadow: 0 6px 24px rgba(46,184,122,.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; background: transparent; color: var(--ink2);
  border: 1px solid var(--border-md); border-radius: 100px; font-family: var(--sans);
  font-size: .82rem; font-weight: 400; text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }


/* ── UTILITY — SEZIONE LABEL / TITOLI ────────────────────────── */
.eyebrow {
  font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--accent); opacity: .5; }

.section-label {
  font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 9px;
}
.section-label::before { content: ''; width: 18px; height: 1px; background: var(--accent); opacity: .5; }

.section-title { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 300; line-height: 1.1; color: var(--ink); }
.section-title em { font-style: italic; color: var(--primary); }


/* ── HERO PAGINE INTERNE (sfondo chiaro) ──────────────────────── */
.page-hero { padding-top: var(--nav-h); border-bottom: 1px solid var(--border); }
.page-hero .hero-inner { max-width: 1120px; margin: 0 auto; padding: 72px 48px 64px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.06; color: var(--ink); max-width: 680px; }
.page-hero h1 em { font-style: italic; color: var(--primary); }
.page-hero .hero-sub { margin-top: 18px; font-size: 1rem; font-weight: 300; color: var(--muted); max-width: 480px; line-height: 1.7; }

@media (max-width: 960px) { .page-hero .hero-inner { padding: 56px 24px 48px; } }


/* ── HOMEPAGE — HERO VIDEO ────────────────────────────────────── */
.home-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 90px; }
.home-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--primary); }
.home-hero__fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.home-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,48,48,.25) 0%, rgba(30,48,48,.02) 35%, rgba(10,20,15,.55) 70%, rgba(10,20,15,.82) 100%); z-index: 1; }
.home-hero__content { position: relative; z-index: 2; text-align: center; max-width: 860px; padding: 0 24px; }
.home-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 8.5vw, 8rem); font-weight: 300; line-height: 1.03; color: #fff; letter-spacing: -.01em; opacity: 0; animation: fadeUp .9s .5s forwards; }
.home-hero h1 em { font-style: italic; background: linear-gradient(110deg, #6ee7b7 0%, #34d399 55%, #2dd4bf 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.home-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .69rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 24px; opacity: 0; animation: fadeUp .8s .3s forwards; }
.home-hero__eyebrow::before, .home-hero__eyebrow::after { content: ''; width: 28px; height: 1px; background: rgba(255,255,255,.35); }
.home-hero__sub { margin-top: 22px; font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.7; opacity: 0; animation: fadeUp .9s .7s forwards; }
.home-hero__actions { margin-top: 42px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s .9s forwards; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 7px; padding: 12px 28px; background: transparent; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.3); border-radius: 100px; font-family: var(--sans); font-size: .88rem; font-weight: 400; text-decoration: none; transition: border-color .2s, background .2s, color .2s; cursor: pointer; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }
.home-hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeIn 1s 1.5s forwards; }
.home-hero__scroll span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.scroll-pip { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation: pipPulse 2s ease-in-out infinite; }


/* ── HOMEPAGE — MANIFESTO ─────────────────────────────────────── */
.home-manifesto { max-width: 1120px; margin: 0 auto; padding: 120px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; border-top: 1px solid var(--border); }
.home-manifesto__text p { font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.32rem); font-weight: 300; line-height: 1.78; color: var(--ink2); margin-top: 26px; }
.home-manifesto__text p strong { color: var(--ink); font-weight: 400; }
.home-manifesto__visual { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; background: var(--bg3); border: 1px solid var(--border); position: relative; }
.home-manifesto__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.home-manifesto__visual:hover img { transform: scale(1.04); }
.home-manifesto__visual::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }

@media (max-width: 960px) { .home-manifesto { grid-template-columns: 1fr; gap: 44px; padding: 80px 24px; } .home-manifesto__visual { aspect-ratio: 16/10; order: -1; } }


/* ── HOMEPAGE — FEATURE CARDS ─────────────────────────────────── */
.home-features { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 100px 48px; }
.home-features__inner { max-width: 1120px; margin: 0 auto; }
.home-features__header { margin-bottom: 48px; }
.home-features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color .3s, transform .4s, box-shadow .4s; }
.feature-card:hover { border-color: var(--border-md); transform: translateY(-5px); box-shadow: 0 18px 48px rgba(17,28,20,.09); }
.card-orch::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.card-coro::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, var(--teal), #2dd4bf); }
.fc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg3); }
.fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.feature-card:hover .fc-img img { transform: scale(1.05); }
.fc-body { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.fc-tag { font-size: .66rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; width: fit-content; }
.card-orch .fc-tag { color: var(--primary); background: var(--primary-dim); border: 1px solid rgba(30,48,48,.15); }
.card-coro .fc-tag { color: var(--teal); background: rgba(26,107,107,.07); border: 1px solid rgba(26,107,107,.16); }
.fc-body h3 { font-family: var(--serif); font-size: clamp(1.7rem, 2.5vw, 2.4rem); font-weight: 300; line-height: 1.1; color: var(--ink); }
.fc-body p { font-size: .88rem; color: var(--muted); line-height: 1.75; flex: 1; }
.fc-link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 500; text-decoration: none; margin-top: 4px; transition: gap .2s; }
.card-orch .fc-link { color: var(--primary); }
.card-coro .fc-link { color: var(--teal); }
.feature-card:hover .fc-link { gap: 12px; }
.fc-link svg { transition: transform .2s; }
.feature-card:hover .fc-link svg { transform: translateX(3px); }

@media (max-width: 960px) { .home-features { padding: 72px 24px; } .home-features__grid { grid-template-columns: 1fr; } }


/* ── HOMEPAGE — EVENTS ────────────────────────────────────────── */
.home-events { padding: 100px 48px; }
.home-events__inner { max-width: 1120px; margin: 0 auto; }
.home-events__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
.home-events__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

@media (max-width: 960px) { .home-events { padding: 72px 24px; } .home-events__grid { grid-template-columns: 1fr; } }


/* ── HOMEPAGE — QUOTE ─────────────────────────────────────────── */
.home-quote { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 100px 48px; text-align: center; position: relative; overflow: hidden; }
.home-quote::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(22,163,74,.07) 0%, transparent 70%); pointer-events: none; }
.home-quote blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 300; font-style: italic; line-height: 1.4; color: var(--ink); max-width: 800px; margin: 0 auto; position: relative; }
.home-quote blockquote cite { display: block; margin-top: 24px; font-family: var(--sans); font-style: normal; font-size: .74rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.quote-mark { font-family: var(--serif); font-size: 5rem; line-height: .5; color: var(--primary); opacity: .18; display: block; margin-bottom: 20px; }

@media (max-width: 960px) { .home-quote { padding: 72px 24px; } }


/* ── HOMEPAGE — JOIN ──────────────────────────────────────────── */
.home-join { background: var(--primary); padding: 110px 48px; text-align: center; position: relative; overflow: hidden; }
.home-join::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(110,231,183,.08) 0%, transparent 65%); pointer-events: none; }
.home-join__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.home-join .section-label { color: rgba(110,231,183,.7); }
.home-join .section-label::before { background: rgba(110,231,183,.4); }
.home-join .section-title { color: #fff; margin: 0 auto 20px; }
.home-join .section-title em { font-style: italic; color: #6ee7b7; -webkit-text-fill-color: #6ee7b7; }
.home-join p { font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 44px; }
.join-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.chip { padding: 7px 16px; border-radius: 100px; font-size: .79rem; font-weight: 400; white-space: nowrap; transition: transform .2s, background .2s; cursor: default; color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.chip:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.join-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-join-primary { display: inline-flex; align-items: center; gap: 7px; padding: 13px 28px; background: var(--accent2); color: #fff; border: none; border-radius: 100px; font-family: var(--sans); font-size: .88rem; font-weight: 500; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s; cursor: pointer; }
.btn-join-primary:hover { background: #3bcf89; transform: scale(1.03); box-shadow: 0 6px 20px rgba(46,184,122,.4); }
.btn-join-ghost { display: inline-flex; align-items: center; gap: 7px; padding: 12px 28px; background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; font-family: var(--sans); font-size: .88rem; font-weight: 400; text-decoration: none; transition: border-color .2s, color .2s; cursor: pointer; }
.btn-join-ghost:hover { border-color: rgba(255,255,255,.45); color: #fff; }

@media (max-width: 960px) { .home-join { padding: 80px 24px; } }


/* ── EVENTI — CARD ────────────────────────────────────────────── */
.event-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; position: relative; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .25s; }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(17,28,20,.1); border-color: var(--border-md); }
.event-card__poster { position: relative; aspect-ratio: 2/3; overflow: hidden; background: var(--bg3); }
.event-card__poster img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.event-card:hover .event-card__poster img { transform: scale(1.04); }
.event-card__badge { position: absolute; top: 14px; left: 14px; font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.event-card__badge--orchestra { background: rgba(30,48,48,.75); color: #a7f3d0; }
.event-card__badge--coro      { background: rgba(26,107,107,.75); color: #99f6e4; }
.event-card__badge--entrambi  { background: rgba(17,28,20,.75); color: #d1fae5; }
.event-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__date { display: flex; align-items: center; gap: 10px; }
.event-card__day { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; line-height: 1; color: var(--primary); }
.event-card__month-year { display: flex; flex-direction: column; gap: 1px; }
.event-card__month { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.event-card__year  { font-size: .68rem; font-weight: 300; color: var(--muted); }
.event-card__divider { height: 1px; background: var(--border); margin: 2px 0; }
.event-card__title { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.2; color: var(--ink); }
.event-card__location { display: flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 400; color: var(--ink2); }
.event-card__location svg { width: 14px; height: 14px; flex-shrink: 0; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.event-card__time { display: flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 300; color: var(--muted); }
.event-card__time svg { width: 13px; height: 13px; flex-shrink: 0; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; }
.event-card__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: .78rem; font-weight: 500; color: var(--primary); opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; }
.event-card__cta svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.event-card:hover .event-card__cta { opacity: 1; transform: none; }


/* ── MODAL GENERICO ───────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,18,12,.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg); border-radius: 24px; border: 1px solid var(--border); width: 100%; max-width: 900px; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; transform: translateY(16px) scale(.98); transition: transform .35s cubic-bezier(.16,1,.3,1); box-shadow: 0 32px 80px rgba(10,18,12,.25); }
.modal-overlay.open .modal { transform: none; }
.modal__header { padding: 28px 32px 0; flex-shrink: 0; }
.modal__close { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--border); background: var(--bg2); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal__close:hover { background: var(--bg3); }
.modal__close svg { width: 14px; height: 14px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.modal__body { flex: 1; overflow-y: auto; padding: 28px 32px 32px; }
.modal__body::-webkit-scrollbar { width: 4px; }
.modal__body::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 2px; }

@media (max-width: 960px) { .modal { max-height: 95vh; } .modal__header { padding: 20px 20px 0; } .modal__body { padding: 20px 20px 24px; } }


/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(6,10,7,.92); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; user-select: none; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox__close { top: 20px; right: 20px; width: 40px; height: 40px; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.18); }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.5); }


/* ── CHI SIAMO — ARTICOLO ─────────────────────────────────────── */
.article-intro { max-width: 720px; margin: 0 auto; padding: 96px 48px 0; }
.article-intro__lead { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; line-height: 1.45; color: var(--ink); letter-spacing: -.01em; }
.article-intro__lead em { font-style: italic; color: var(--primary); }
.article-body { max-width: 720px; margin: 0 auto; padding: 0 48px; }
.article-body p { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 300; line-height: 1.8; color: var(--ink2); margin-top: 28px; }
.article-body p strong { color: var(--ink); font-weight: 400; }
.article-body h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; line-height: 1.2; color: var(--ink); margin-top: 72px; margin-bottom: -8px; }
.article-body h2 em { font-style: italic; color: var(--primary); }
.pull-quote { border-left: 3px solid var(--primary); margin: 48px 0; padding: 8px 0 8px 28px; }
.pull-quote p { font-family: var(--serif) !important; font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important; font-style: italic; color: var(--primary) !important; line-height: 1.5 !important; margin-top: 0 !important; }
.pull-quote cite { display: block; font-family: var(--sans); font-style: normal; font-size: .75rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.wide-image { max-width: 1120px; margin: 64px auto; padding: 0 48px; }
.wide-image__frame { border-radius: 20px; overflow: hidden; aspect-ratio: 16/7; background: var(--bg3); border: 1px solid var(--border); }
.wide-image__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.wide-image:hover .wide-image__frame img { transform: scale(1.02); }
.wide-image__caption { margin-top: 12px; font-size: .78rem; font-weight: 300; color: var(--muted); text-align: center; font-style: italic; }
.double-image { max-width: 1120px; margin: 64px auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.double-image__frame { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg3); border: 1px solid var(--border); }
.double-image__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.double-image__frame:hover img { transform: scale(1.04); }

@media (max-width: 960px) {
  .article-intro { padding: 72px 24px 0; }
  .article-body { padding: 0 24px; }
  .wide-image { padding: 0 24px; }
  .double-image { padding: 0 24px; grid-template-columns: 1fr; }
}


/* ── VALORI ───────────────────────────────────────────────────── */
.valori-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 48px; }
.valori-section__inner { max-width: 1120px; margin: 0 auto; }
.valori-section__header { max-width: 720px; margin: 0 auto 56px; }
.valori-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.valore-card { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px 36px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; transition: border-color .3s, transform .35s, box-shadow .35s; }
.valore-card:hover { border-color: var(--border-md); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(17,28,20,.07); }
.valore-card:nth-child(1)::before { content: ''; position: absolute; top:0;left:0;right:0;height:3px; background: linear-gradient(90deg,var(--primary),var(--accent)); }
.valore-card:nth-child(2)::before { content: ''; position: absolute; top:0;left:0;right:0;height:3px; background: linear-gradient(90deg,var(--teal),#2dd4bf); }
.valore-card:nth-child(3)::before { content: ''; position: absolute; top:0;left:0;right:0;height:3px; background: linear-gradient(90deg,var(--lime),#a3e635); }
.valore-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.valore-card:nth-child(1) .valore-icon { background: var(--primary-dim); }
.valore-card:nth-child(2) .valore-icon { background: rgba(26,107,107,.08); }
.valore-card:nth-child(3) .valore-icon { background: rgba(106,173,58,.08); }
.valore-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.valore-card:nth-child(1) .valore-icon svg { stroke: var(--primary); }
.valore-card:nth-child(2) .valore-icon svg { stroke: var(--teal); }
.valore-card:nth-child(3) .valore-icon svg { stroke: var(--lime); }
.valore-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1.1; color: var(--ink); }
.valore-card p { font-size: .88rem; font-weight: 300; color: var(--muted); line-height: 1.75; }

@media (max-width: 960px) { .valori-section { padding: 64px 24px; } .valori-grid { grid-template-columns: 1fr; } }


/* ── CONTATTI — REFERENTI ─────────────────────────────────────── */
.referenti-section { max-width: 1120px; margin: 0 auto; padding: 80px 48px 0; }
.referenti-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.referente-card { background: var(--bg); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .3s, transform .3s, box-shadow .3s; }
.referente-card:hover { border-color: var(--border-md); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(17,28,20,.08); }
.referente-card:nth-child(1)::before { content:'';display:block;height:3px;background:linear-gradient(90deg,var(--primary),var(--accent)); }
.referente-card:nth-child(2)::before { content:'';display:block;height:3px;background:linear-gradient(90deg,var(--teal),#2dd4bf); }
.referente-card:nth-child(3)::before { content:'';display:block;height:3px;background:linear-gradient(90deg,var(--lime),#a3e635); }
.referente-avatar { width:100%;aspect-ratio:1/1;background:var(--bg3);display:flex;align-items:center;justify-content:center; }
.avatar-placeholder { width:72px;height:72px;border-radius:50%;background:var(--bg2);border:2px solid var(--border-md);display:flex;align-items:center;justify-content:center; }
.avatar-placeholder svg { width:34px;height:34px;fill:none;stroke:var(--muted);stroke-width:1.5; }
.referente-body { padding:28px 28px 32px;display:flex;flex-direction:column;gap:6px;flex:1; }
.referente-role { font-size:.66rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase; }
.referente-card:nth-child(1) .referente-role { color:var(--primary); }
.referente-card:nth-child(2) .referente-role { color:var(--teal); }
.referente-card:nth-child(3) .referente-role { color:var(--lime); }
.referente-name { font-family:var(--serif);font-size:1.8rem;font-weight:400;color:var(--ink);line-height:1.1;margin-bottom:6px; }
.referente-contacts { display:flex;flex-direction:column;gap:8px;margin-top:12px;padding-top:16px;border-top:1px solid var(--border); }
.contact-row { display:flex;align-items:center;gap:10px;font-size:.84rem;font-weight:300;color:var(--ink2);text-decoration:none;transition:color .2s; }
a.contact-row:hover { color:var(--primary); }
.contact-icon { width:32px;height:32px;border-radius:8px;background:var(--bg2);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s,border-color .2s; }
a.contact-row:hover .contact-icon { background:var(--primary-dim);border-color:rgba(30,48,48,.2); }
.contact-icon svg { width:14px;height:14px;fill:none;stroke:var(--muted);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round; }
a.contact-row:hover .contact-icon svg { stroke:var(--primary); }
.contact-icon--filled svg { fill:var(--muted);stroke:none; }
a.contact-row:hover .contact-icon--filled svg { fill:var(--primary); }

@media (max-width:960px) { .referenti-section{padding:56px 24px 0;} .referenti-grid{grid-template-columns:1fr;} }


/* ── CONTATTI — MAPPA ─────────────────────────────────────────── */
.mappa-section { max-width:1120px;margin:0 auto;padding:80px 48px 120px; }
.map-container { height:440px;border-radius:22px 22px 0 0;overflow:hidden;border:1px solid var(--border);border-bottom:none;background:var(--bg3); }
.map-container iframe { width:100%;height:100%;border:none;display:block; }
.map-info { display:flex;align-items:center;justify-content:space-between;padding:20px 28px;background:var(--bg2);border:1px solid var(--border);border-radius:0 0 22px 22px;flex-wrap:wrap;gap:16px; }
.map-address { display:flex;align-items:center;gap:10px;font-size:.88rem;color:var(--ink2); }
.map-address svg { width:16px;height:16px;flex-shrink:0;fill:none;stroke:var(--accent);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round; }
.map-open-btn { display:inline-flex;align-items:center;gap:6px;font-size:.8rem;font-weight:500;color:var(--primary);text-decoration:none;padding:7px 16px;border:1px solid rgba(30,48,48,.2);border-radius:100px;transition:background .2s,border-color .2s; }
.map-open-btn:hover { background:var(--primary-dim);border-color:rgba(30,48,48,.35); }

@media (max-width:960px) { .mappa-section{padding:56px 24px 80px;} .map-container{height:320px;} .map-info{flex-direction:column;align-items:flex-start;} }


/* ── COMUNICATI — TOOLBAR ─────────────────────────────────────── */
.doc-toolbar { background:var(--bg2);border-bottom:1px solid var(--border);position:sticky;top:var(--nav-h);z-index:50; }
.doc-toolbar__inner { max-width:1120px;margin:0 auto;padding:16px 48px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap; }
.filter-group { display:flex;gap:8px;align-items:center; }
.filter-btn { font-family:var(--sans);font-size:.78rem;font-weight:400;padding:7px 16px;border-radius:100px;border:1px solid var(--border-md);background:transparent;color:var(--muted);cursor:pointer;transition:all .2s;white-space:nowrap; }
.filter-btn:hover { border-color:var(--primary);color:var(--primary);background:var(--primary-dim); }
.filter-btn.active { background:var(--primary);color:#fff;border-color:var(--primary); }
.search-wrap { position:relative;flex:1;max-width:320px; }
.search-wrap svg { position:absolute;left:12px;top:50%;transform:translateY(-50%);width:15px;height:15px;fill:none;stroke:var(--muted);stroke-width:1.8;stroke-linecap:round;pointer-events:none; }
.search-input { width:100%;padding:9px 12px 9px 36px;background:var(--bg);border:1px solid var(--border-md);border-radius:100px;font-family:var(--sans);font-size:.82rem;font-weight:300;color:var(--ink);outline:none;transition:border-color .2s,box-shadow .2s; }
.search-input::placeholder { color:var(--muted); }
.search-input:focus { border-color:var(--accent);box-shadow:0 0 0 3px rgba(61,122,94,.1); }
.sort-select { font-family:var(--sans);font-size:.78rem;font-weight:300;color:var(--ink2);background:var(--bg);border:1px solid var(--border-md);border-radius:8px;padding:7px 28px 7px 10px;outline:none;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232c3b2e' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 8px center;appearance:none;-webkit-appearance:none; }

@media (max-width:960px) { .doc-toolbar__inner{padding:14px 24px;} }
@media (max-width:580px) { .doc-toolbar__inner{flex-direction:column;align-items:stretch;gap:10px;} .search-wrap{max-width:100%;} }


/* ── COMUNICATI — GRID ────────────────────────────────────────── */
.doc-archivio { max-width:1120px;margin:0 auto;padding:56px 48px 120px; }
.doc-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.doc-card { background:var(--bg);border:1px solid var(--border);border-radius:18px;padding:28px 28px 32px;display:flex;flex-direction:column;gap:14px;cursor:pointer;position:relative;transition:border-color .3s,transform .35s,box-shadow .35s; }
.doc-card:hover { border-color:var(--border-md);transform:translateY(-4px);box-shadow:0 16px 44px rgba(17,28,20,.08); }
.doc-card[data-tipo="comunicato"]::before { content:'';position:absolute;top:0;left:20px;right:20px;height:2px;background:linear-gradient(90deg,var(--primary),var(--accent));border-radius:0 0 2px 2px; }
.doc-card[data-tipo="bando"]::before { content:'';position:absolute;top:0;left:20px;right:20px;height:2px;background:linear-gradient(90deg,var(--teal),#2dd4bf);border-radius:0 0 2px 2px; }
.doc-card__header { display:flex;align-items:center;justify-content:space-between;gap:10px; }
.doc-tag { font-size:.62rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;padding:4px 10px;border-radius:100px; }
.doc-tag--comunicato { color:var(--primary);background:var(--primary-dim);border:1px solid rgba(30,48,48,.15); }
.doc-tag--bando { color:var(--teal);background:rgba(26,107,107,.07);border:1px solid rgba(26,107,107,.16); }
.doc-date { font-size:.74rem;font-weight:300;color:var(--muted);white-space:nowrap; }
.doc-card__title { font-family:var(--serif);font-size:1.22rem;font-weight:400;line-height:1.25;color:var(--ink); }
.doc-card__abstract { font-size:.84rem;font-weight:300;color:var(--muted);line-height:1.7;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden; }
.doc-card__footer { display:flex;align-items:center;justify-content:space-between;margin-top:4px;padding-top:14px;border-top:1px solid var(--border); }
.doc-card__read { font-size:.78rem;font-weight:500;color:var(--primary);display:flex;align-items:center;gap:5px;transition:gap .2s; }
.doc-card:hover .doc-card__read { gap:9px; }
.doc-card__read svg { width:12px;height:12px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round; }
.doc-card__pdf { display:flex;align-items:center;gap:5px;font-size:.74rem;font-weight:400;color:var(--muted);text-decoration:none;transition:color .2s; }
.doc-card__pdf:hover { color:var(--primary); }
.doc-card__pdf svg { width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round; }
.doc-empty { grid-column:1/-1;text-align:center;padding:100px 0;flex-direction:column;align-items:center;gap:14px; }
.doc-empty svg { width:48px;height:48px;fill:none;stroke:var(--bg3);stroke-width:1.5; }
.doc-empty h3 { font-family:var(--serif);font-size:1.6rem;font-weight:300;color:var(--muted); }
.doc-empty p { font-size:.84rem;color:var(--muted); }

@media (max-width:960px) { .doc-archivio{padding:40px 24px 80px;} .doc-grid{grid-template-columns:1fr 1fr;gap:14px;} }
@media (max-width:580px) { .doc-grid{grid-template-columns:1fr;} }


/* ── UNISCITI — STEPS ─────────────────────────────────────────── */
.steps-section { background:var(--bg2);border-bottom:1px solid var(--border);padding:88px 48px; }
.steps-section__inner { max-width:1120px;margin:0 auto; }
.steps { display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative; }
.steps::before { content:'';position:absolute;top:28px;left:calc(12.5% + 14px);right:calc(12.5% + 14px);height:1px;background:linear-gradient(90deg,var(--border-md),var(--border),var(--border-md)); }
.step { display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 24px; }
.step__number { width:56px;height:56px;border-radius:50%;background:var(--bg);border:1px solid var(--border-md);display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:1.6rem;font-weight:300;color:var(--primary);margin-bottom:20px;position:relative;z-index:1;transition:border-color .3s,box-shadow .3s; }
.step:hover .step__number { border-color:var(--primary);box-shadow:0 0 0 4px var(--primary-dim); }
.step__title { font-family:var(--serif);font-size:1.25rem;font-weight:400;color:var(--ink);margin-bottom:10px;line-height:1.2; }
.step__desc { font-size:.84rem;font-weight:300;color:var(--muted);line-height:1.7; }

@media (max-width:960px) { .steps-section{padding:64px 24px;} .steps{grid-template-columns:1fr 1fr;gap:36px;} .steps::before{display:none;} }
@media (max-width:600px) { .steps{grid-template-columns:1fr;} }


/* ── UNISCITI — SCHEDE ────────────────────────────────────────── */
.iscrizioni-section { max-width:1120px;margin:0 auto;padding:96px 48px 120px;display:flex;flex-direction:column;gap:80px; }
.scheda { display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start; }
.scheda--reverse { direction:rtl; }
.scheda--reverse > * { direction:ltr; }
.scheda__tag { display:inline-flex;align-items:center;gap:6px;font-size:.66rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase;padding:5px 14px;border-radius:100px;margin-bottom:20px;width:fit-content; }
.scheda__tag--orchestra { color:var(--primary);background:var(--primary-dim);border:1px solid rgba(30,48,48,.15); }
.scheda__tag--coro { color:var(--teal);background:rgba(26,107,107,.07);border:1px solid rgba(26,107,107,.16); }
.scheda__title { font-family:var(--serif);font-size:clamp(2rem,3.5vw,3.2rem);font-weight:300;line-height:1.1;color:var(--ink);margin-bottom:20px; }
.scheda__title em { font-style:italic;color:var(--primary); }
.scheda--coro .scheda__title em { color:var(--teal); }
.scheda__desc { font-family:var(--serif);font-size:clamp(1rem,1.6vw,1.2rem);font-weight:300;color:var(--ink2);line-height:1.78;margin-bottom:28px; }
.scheda__list { list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:36px; }
.scheda__list li { display:flex;align-items:flex-start;gap:10px;font-size:.88rem;font-weight:300;color:var(--ink2);line-height:1.6; }
.scheda__list li::before { content:'';width:6px;height:6px;border-radius:50%;flex-shrink:0;margin-top:7px; }
.scheda--orchestra .scheda__list li::before { background:var(--primary); }
.scheda--coro .scheda__list li::before { background:var(--teal); }
.avviso-genitori { display:flex;align-items:flex-start;gap:14px;background:rgba(26,107,107,.06);border:1px solid rgba(26,107,107,.2);border-radius:14px;padding:18px 20px;margin-bottom:32px; }
.avviso-genitori__icon { width:36px;height:36px;flex-shrink:0;border-radius:10px;background:rgba(26,107,107,.12);display:flex;align-items:center;justify-content:center; }
.avviso-genitori__icon svg { width:18px;height:18px;fill:none;stroke:var(--teal);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round; }
.avviso-genitori__text strong { display:block;font-size:.84rem;font-weight:600;color:var(--teal);margin-bottom:4px; }
.avviso-genitori__text p { font-size:.82rem;font-weight:300;color:var(--ink2);line-height:1.65; }
.scheda__form-wrap { background:var(--bg2);border:1px solid var(--border);border-radius:22px;padding:36px 32px 40px;position:sticky;top:calc(var(--nav-h) + 24px); }
.scheda--orchestra .scheda__form-wrap { border-top:3px solid var(--accent); }
.scheda--coro .scheda__form-wrap { border-top:3px solid var(--teal); }
.form-title { font-family:var(--serif);font-size:1.5rem;font-weight:400;color:var(--ink);margin-bottom:6px;line-height:1.2; }
.form-sub { font-size:.82rem;font-weight:300;color:var(--muted);margin-bottom:28px; }
.form-group { display:flex;flex-direction:column;gap:6px;margin-bottom:16px; }
.form-group label { font-size:.75rem;font-weight:500;letter-spacing:.08em;color:var(--ink2);text-transform:uppercase; }
.parent-note { font-size:.7rem;font-weight:400;letter-spacing:0;text-transform:none;color:var(--teal);margin-left:6px; }
.form-group input,.form-group select,.form-group textarea { width:100%;padding:11px 14px;background:var(--bg);border:1px solid var(--border-md);border-radius:10px;font-family:var(--sans);font-size:.88rem;font-weight:300;color:var(--ink);outline:none;transition:border-color .2s,box-shadow .2s;appearance:none;-webkit-appearance:none; }
.form-group input::placeholder,.form-group textarea::placeholder { color:var(--muted); }
.scheda--orchestra .form-group input:focus,.scheda--orchestra .form-group select:focus,.scheda--orchestra .form-group textarea:focus { border-color:var(--accent);box-shadow:0 0 0 3px rgba(61,122,94,.12); }
.scheda--coro .form-group input:focus,.scheda--coro .form-group select:focus,.scheda--coro .form-group textarea:focus { border-color:var(--teal);box-shadow:0 0 0 3px rgba(26,107,107,.12); }
.form-group textarea { resize:vertical;min-height:80px; }
.form-group select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232c3b2e' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:36px;cursor:pointer; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:12px; }
.form-section-label { font-size:.72rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;margin-bottom:14px; }
.scheda--orchestra .form-section-label { color:var(--accent); }
.scheda--coro .form-section-label { color:var(--teal); }
.form-divider { height:1px;background:var(--border);margin:20px 0; }
.form-check { display:flex;align-items:flex-start;gap:10px;margin-bottom:20px;margin-top:4px; }
.form-check input[type="checkbox"] { width:16px;height:16px;flex-shrink:0;margin-top:2px;cursor:pointer; }
.scheda--orchestra .form-check input[type="checkbox"] { accent-color:var(--accent); }
.scheda--coro .form-check input[type="checkbox"] { accent-color:var(--teal); }
.form-check label { font-size:.78rem;font-weight:300;color:var(--muted);line-height:1.55;cursor:pointer; }
.btn-submit { width:100%;display:flex;align-items:center;justify-content:center;gap:8px;padding:13px;border-radius:12px;font-family:var(--sans);font-size:.9rem;font-weight:500;color:#fff;border:none;cursor:pointer;transition:opacity .2s,transform .2s,box-shadow .2s; }
.btn-submit--orchestra { background:var(--accent2); }
.btn-submit--orchestra:hover { opacity:.9;transform:translateY(-1px);box-shadow:0 6px 20px rgba(46,184,122,.35); }
.btn-submit--coro { background:var(--teal); }
.btn-submit--coro:hover { opacity:.9;transform:translateY(-1px);box-shadow:0 6px 20px rgba(26,107,107,.3); }
.btn-submit svg { width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round; }
.form-note { font-size:.74rem;font-weight:300;color:var(--muted);text-align:center;margin-top:14px;line-height:1.55; }
.schede-divider { max-width:1120px;margin:0 auto;padding:0 48px;display:flex;align-items:center;gap:20px; }
.schede-divider::before,.schede-divider::after { content:'';flex:1;height:1px;background:var(--border); }
.schede-divider span { font-family:var(--serif);font-size:.9rem;font-style:italic;color:var(--muted);white-space:nowrap; }
.toast { position:fixed;bottom:28px;left:50%;transform:translateX(-50%) translateY(20px);background:var(--primary);color:#fff;padding:14px 24px;border-radius:12px;font-family:var(--sans);font-size:.88rem;font-weight:400;box-shadow:0 8px 32px rgba(10,18,12,.25);opacity:0;pointer-events:none;transition:opacity .3s,transform .3s;z-index:500;white-space:nowrap; }
.toast.show { opacity:1;transform:translateX(-50%) translateY(0); }

@media (max-width:960px) { .iscrizioni-section{padding:72px 24px 80px;} .scheda{grid-template-columns:1fr;gap:40px;} .scheda--reverse{direction:ltr;} .scheda__form-wrap{position:static;} .schede-divider{padding:0 24px;} }
@media (max-width:600px) { .form-row{grid-template-columns:1fr;} }


/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section { background:var(--bg2);border-top:1px solid var(--border);padding:88px 48px; }
.faq-section__inner { max-width:720px;margin:0 auto; }
.faq-header { margin-bottom:48px; }
.faq-list { display:flex;flex-direction:column; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:first-child { border-top:1px solid var(--border); }
.faq-question { width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:22px 0;background:none;border:none;font-family:var(--serif);font-size:1.2rem;font-weight:400;color:var(--ink);cursor:pointer;text-align:left;transition:color .2s; }
.faq-question:hover { color:var(--primary); }
.faq-icon { width:28px;height:28px;flex-shrink:0;border-radius:50%;border:1px solid var(--border-md);background:var(--bg);display:flex;align-items:center;justify-content:center;transition:background .2s,border-color .2s,transform .3s; }
.faq-icon svg { width:12px;height:12px;fill:none;stroke:var(--muted);stroke-width:2;stroke-linecap:round;transition:stroke .2s; }
.faq-item.open .faq-icon { background:var(--primary-dim);border-color:rgba(30,48,48,.2);transform:rotate(45deg); }
.faq-item.open .faq-icon svg { stroke:var(--primary); }
.faq-answer { max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-answer { max-height:300px; }
.faq-answer p { font-family:var(--serif);font-size:1rem;font-weight:300;color:var(--ink2);line-height:1.75;padding-bottom:22px; }

@media (max-width:960px) { .faq-section{padding:64px 24px;} }


/* ── CTA FINALE ───────────────────────────────────────────────── */
.cta-finale { max-width:720px;margin:0 auto;padding:96px 48px 120px;text-align:center; }
.cta-finale h2 { font-family:var(--serif);font-size:clamp(2rem,4vw,3.2rem);font-weight:300;line-height:1.15;color:var(--ink);margin-bottom:18px; }
.cta-finale h2 em { font-style:italic;color:var(--primary); }
.cta-finale p { font-size:.97rem;font-weight:300;color:var(--muted);line-height:1.75;margin-bottom:40px; }
.cta-btns { display:flex;gap:12px;justify-content:center;flex-wrap:wrap; }

@media (max-width:960px) { .cta-finale{padding:72px 24px 80px;} }


/* ── KEYFRAMES ────────────────────────────────────────────────── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes pipPulse { 0%,100%{opacity:.25} 50%{opacity:.7} }
@keyframes pulse    { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.4)} }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE — max 768px
   ═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── PADDING GENERALI ── */
  div[style*="padding: 96px 48px"],
  div[style*="padding:96px 48px"],
  div[style*="padding: 100px 48px"],
  div[style*="padding:100px 48px"],
  div[style*="padding: 88px 48px"],
  div[style*="padding:88px 48px"],
  div[style*="padding: 80px 48px"],
  div[style*="padding:80px 48px"],
  div[style*="padding: 72px 48px"],
  div[style*="padding:72px 48px"],
  div[style*="padding: 64px 48px"],
  div[style*="padding:64px 48px"],
  div[style*="padding: 56px 48px"],
  div[style*="padding:56px 48px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  div[style*="padding: 120px 48px"],
  div[style*="padding:120px 48px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* ── GRIGLIE A 2 O 3 COLONNE → 1 COLONNA ── */
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: repeat(2"],
  div[style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  div[style*="grid-template-columns: repeat(3"],
  div[style*="grid-template-columns:repeat(3"],
  div[style*="grid-template-columns: 1fr 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  div[style*="grid-template-columns: repeat(4"],
  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  /* ── HERO ── */
  .home-hero h1 {
    font-size: clamp(2.8rem, 10vw, 4rem) !important;
  }

  /* ── STEPS (4 colonne → 2) ── */
  .steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .steps::before { display: none !important; }

  /* ── SCHEDE ISCRIZIONE ── */
  .scheda {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .scheda--reverse { direction: ltr !important; }
  .scheda__form-wrap { position: static !important; }

  /* ── HERO GRID 2 COL ── */
  div[style*="display:grid"][style*="gap: 80px"],
  div[style*="display: grid"][style*="gap: 80px"],
  div[style*="display:grid"][style*="gap:80px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ── FLEX ROW → COLUMN ── */
  div[style*="display:flex"][style*="justify-content:space-between"],
  div[style*="display: flex"][style*="justify-content: space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  /* ── HERO COUNT CONTATTI ── */
  div[style*="text-align:right"] {
    text-align: left !important;
  }

  /* ── MAPPA ── */
  .map-container,
  div[style*="height:440px"],
  div[style*="height: 440px"] {
    height: 280px !important;
  }

  /* ── MODAL ── */
  .modal,
  div[id="evModal"] > div,
  div[id="docModal"] > div {
    max-height: 95vh !important;
    border-radius: 16px !important;
  }

  /* ── NASCONDE IMMAGINE DESTRA HERO ── */
  .hero-visual { display: none !important; }

  /* ── FOOTER ── */
  .om-footer__top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ── PADDING LATERALE ARTICOLO ── */
  div[style*="max-width:720px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ── DOC GRID ── */
  div[id="docGrid"] {
    grid-template-columns: 1fr !important;
  }

  /* ── EVENTI GRID ── */
  div[id="eventiGrid"] {
    grid-template-columns: 1fr !important;
  }

}

/* ═══════════════════════════════════════
   TABLET — 769px a 960px
   ═══════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 960px) {

  div[style*="padding: 96px 48px"],
  div[style*="padding:96px 48px"],
  div[style*="padding: 100px 48px"],
  div[style*="padding:100px 48px"],
  div[style*="padding: 88px 48px"],
  div[style*="padding:88px 48px"],
  div[style*="padding: 80px 48px"],
  div[style*="padding:80px 48px"] {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  div[style*="grid-template-columns: repeat(3"],
  div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  div[style*="grid-template-columns: repeat(4"],
  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  .steps::before { display: none !important; }

  .om-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .om-footer__brand { grid-column: 1/-1 !important; }

}/* End custom CSS */