:root {
  --red: #c7182b;
  --red-dark: #8f0e1c;
  --ink: #181817;
  --paper: #f3f5f4;
  --white: #fff;
  --yellow: #f6e5bd;
  --blue: #2567b1;
  --green: #188553;
  --line: rgba(24, 24, 23, 0.16);
  --max: 1220px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
.site-header {
  min-height: 86px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  width: 165px;
  display: block;
}
.brand img {
  display: block;
}
.site-header nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.site-header nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
}
.site-header nav a:hover {
  color: var(--red);
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid var(--red);
  transition: 0.2s;
}
.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}
.button.inverse {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button.small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.88rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--red);
  margin: 0 0 16px;
}
.hero {
  background: var(--red);
  color: #fff;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}
.hero-copy {
  padding: clamp(70px, 9vw, 130px) max(24px, calc((100vw - var(--max)) / 2));
  padding-right: 50px;
  align-self: center;
}
.hero h1 {
  font-size: clamp(4rem, 7.4vw, 7.8rem);
  line-height: 0.87;
  letter-spacing: -0.065em;
  margin: 0;
  max-width: 760px;
}
.hero .lead {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  max-width: 650px;
  margin: 34px 0;
  color: #fff;
}
.hero .eyebrow {
  color: var(--yellow);
}
.hero-actions,
.actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-art {
  min-height: 680px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-art:before,
.hero-art:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 70px solid var(--red);
}
.hero-art:before {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -80px;
}
.hero-art:after {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -110px;
}
.hero-words {
  position: absolute;
  inset: 12% 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  z-index: 2;
}
.hero-words span {
  font-weight: 950;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.hero-words span:nth-child(1) {
  color: var(--red);
}
.hero-words span:nth-child(2) {
  color: var(--blue);
  padding-left: 16%;
}
.hero-words span:nth-child(3) {
  color: var(--green);
  padding-left: 4%;
}
.hero-words span:nth-child(4) {
  color: var(--ink);
  padding-left: 22%;
}
.inauguration {
  max-width: var(--max);
  margin: -52px auto 0;
  position: relative;
  z-index: 4;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(240px, 340px);
  align-items: center;
}
.inauguration-poster {
  display: block;
  align-self: center;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.inauguration-poster-wrap {
  align-self: stretch;
  background: #fff;
  color: var(--ink);
}
.inauguration-poster img {
  width: 100%;
  height: auto;
  display: block;
}
.inauguration-timeline {
  display: grid;
  gap: 0;
  border-top: 5px solid var(--red);
}
.inauguration-timeline div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}
.inauguration-timeline time {
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 950;
}
.inauguration-timeline span {
  font-weight: 750;
  line-height: 1.35;
}
.date-block {
  background: var(--yellow);
  color: var(--ink);
  padding: 28px 34px;
  text-align: center;
}
.date-block strong {
  display: block;
  font-size: 4rem;
  line-height: 0.85;
}
.date-block span {
  font-weight: 900;
  text-transform: uppercase;
}
.inauguration-copy {
  padding: 32px 38px;
}
.inauguration-copy b {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1;
}
.inauguration-copy h2 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1;
}
.inauguration-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 110px 24px;
}
.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-bottom: 55px;
}
.section h2,
.page-title {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin: 0;
}
.section-head p:last-child {
  font-size: 1.18rem;
  margin: 0;
  max-width: 670px;
}
.group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.group-card {
  min-height: 350px;
  background: #fff;
  padding: 36px;
  border-top: 12px solid var(--red);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.group-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(24, 24, 23, 0.12);
}
.group-card .symbol {
  font-size: 7rem;
  line-height: 0.8;
  font-weight: 950;
  color: rgba(199, 24, 43, 0.12);
  position: absolute;
  right: 20px;
  top: 24px;
}
.group-card .number {
  font-weight: 900;
  color: var(--red);
}
.group-card h3 {
  font-size: 2rem;
  margin: 85px 0 10px;
  max-width: 70%;
  line-height: 1;
}
.group-card p {
  max-width: 80%;
  font-size: 1.04rem;
}
.group-card b {
  margin-top: auto;
  color: var(--red);
}
.group-link {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}
.group-card.blue .group-link { color: var(--blue); }
.group-card.green .group-link { color: var(--green); }
.group-card.gold .group-link { color: #8a5e09; }
.group-card.dark .group-link { color: var(--ink); }
.group-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 18px;
  max-width: none !important;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 24, 23, 0.16);
  font-size: 0.95rem !important;
  font-weight: 750;
}
.group-contact a { color: inherit; font-weight: 900; }
.general-contact {
  margin-top: 22px;
  padding: 26px 30px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.general-contact span, .general-contact strong { display: block; }
.general-contact span { opacity: 0.72; margin-bottom: 5px; }
.general-contact strong { font-size: 1.5rem; }
.general-contact a {
  color: var(--ink);
  background: var(--yellow);
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
}
.group-card.blue {
  border-color: var(--blue);
}
.group-card.blue b,
.group-card.blue .number {
  color: var(--blue);
}
.group-card.green {
  border-color: var(--green);
}
.group-card.green b,
.group-card.green .number {
  color: var(--green);
}
.group-card.gold {
  border-color: #ad7913;
}
.group-card.gold b,
.group-card.gold .number {
  color: #8a5e09;
}
.group-card.dark {
  border-color: var(--ink);
}
.group-card.dark b,
.group-card.dark .number {
  color: var(--ink);
}
.about-band {
  background: var(--red);
  color: #fff;
}
.courses-banner {
  background: var(--green);
  color: #fff;
  padding: clamp(52px, 7vw, 92px) max(6vw, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border-bottom: 14px solid var(--ink);
}
.courses-banner > div { max-width: 760px; }
.courses-banner .eyebrow { color: var(--yellow); margin-bottom: 12px; }
.courses-banner h2 {
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
}
.courses-banner p:last-child {
  margin: 24px 0 0;
  max-width: 650px;
  font-size: 1.18rem;
}
.courses-banner .button { flex: 0 0 auto; }
.courses-construction { background: var(--green); }
.courses-construction section { border-top: 14px solid var(--yellow); }
.about-band .section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.about-band h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  margin: 0;
}
.about-band p {
  font-size: 1.18rem;
}
.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-numbers div {
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 28px;
}
.about-numbers strong {
  font-size: 3rem;
  display: block;
  line-height: 1;
}
.spaces-section {
  background: #ece3d3;
}
.spaces-head {
  align-items: end;
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.space-card {
  grid-column: span 4;
  min-height: 280px;
  padding: 34px;
  background: #fff;
  border-top: 10px solid var(--red);
  display: flex;
  flex-direction: column;
}
.space-card:nth-child(2) {
  border-color: var(--yellow);
}
.space-card:nth-child(3) {
  border-color: var(--blue);
}
.space-card:nth-child(4) {
  border-color: var(--green);
}
.space-card:nth-child(5) {
  border-color: var(--ink);
}
.space-card:nth-child(6) {
  border-color: #ad7913;
}
.space-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.space-card h3 {
  margin: auto 0 14px;
  font-size: 2rem;
  line-height: 1.05;
}
.space-card p {
  margin: 0;
  font-size: 1.03rem;
}
.visit {
  max-width: var(--max);
  margin: 90px auto;
  padding: 60px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  border-left: 16px solid var(--red);
}
.visit h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 20px;
}
.visit p {
  font-size: 1.1rem;
  max-width: 700px;
}
.visit-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}
.ticker {
  overflow: hidden;
  background: var(--yellow);
  padding: 15px 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 24s linear infinite;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
footer {
  background: var(--ink);
  color: #fff;
  padding: 50px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 26px;
}
footer img {
  width: 160px;
  background: #fff;
  padding: 8px;
}
footer div {
  display: flex;
  flex-direction: column;
}
.footer-links {
  margin-left: auto;
  text-align: right;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.page-hero {
  min-height: 510px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--red);
  color: #fff;
}
.page-hero-copy {
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  padding-right: 45px;
  align-self: center;
}
.page-hero .eyebrow {
  color: var(--yellow);
}
.page-hero p:last-child {
  font-size: 1.25rem;
  max-width: 650px;
}
.page-symbol {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--red);
  font-weight: 950;
  font-size: clamp(9rem, 20vw, 19rem);
  letter-spacing: -0.12em;
}
.page-symbol:before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 55px solid currentColor;
  border-radius: 50%;
  opacity: 0.13;
}
.page-symbol span {
  position: relative;
}
.page-symbol.logo-symbol img {
  position: relative;
  z-index: 1;
  width: min(72%, 430px);
  max-height: 430px;
  object-fit: contain;
  border-radius: 50%;
}
.coming-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border: 2px dashed currentColor;
  font-weight: 850;
  opacity: 0.72;
}
.group-channels {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--line);
}
.group-channels img {
  width: 190px;
  background: #fff;
  padding: 8px;
  border: 1px solid var(--line);
}
.group-channels h2 {
  margin: 2px 0 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}
.group-channels > div > p:last-of-type { max-width: 720px; }
.channel-status { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.channel-status span {
  padding: 9px 12px;
  background: #fff;
  border: 1px dashed var(--line);
  font-weight: 800;
}
@media (max-width: 620px) {
  .group-channels { grid-template-columns: 1fr; gap: 26px; }
  .group-channels img { width: 150px; }
}
.theme-blue .page-hero {
  background: var(--blue);
}
.theme-blue .page-symbol {
  color: var(--blue);
}
.theme-green .page-hero {
  background: var(--green);
}
.theme-green .page-symbol {
  color: var(--green);
}
.theme-gold .page-hero {
  background: #6f2118;
}
.theme-gold .page-symbol {
  color: #ad7913;
  background: #efe0bd;
}
.theme-black .page-hero {
  background: #111;
}
.theme-black .page-symbol {
  color: #111;
}
.content-section {
  max-width: var(--max);
  margin: auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.content-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 0;
}
.prose {
  font-size: 1.14rem;
}
.prose h3 {
  font-size: 1.8rem;
  margin-top: 40px;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 35px;
}
.feature {
  background: #fff;
  padding: 25px;
  border-top: 7px solid var(--red);
}
.feature b {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.cta-band {
  background: var(--red);
  color: #fff;
  padding: 70px 24px;
}
.cta-band > div {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin: 0;
}
.theme-blue .cta-band {
  background: var(--blue);
}
.theme-green .cta-band {
  background: var(--green);
}
.theme-gold .cta-band {
  background: #6f2118;
}
.theme-black .cta-band {
  background: #111;
}
.back-link {
  font-weight: 900;
  color: var(--red);
  text-decoration: none;
}
.detail-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 100px;
  gap: 16px;
}
.detail-strip div {
  background: #fff;
  padding: 28px;
}
.detail-strip strong {
  display: block;
  font-size: 1.45rem;
}
.detail-strip span {
  color: #666;
}
.site-header .active {
  color: var(--red);
}
@media (max-width: 900px) {
  .site-header nav,
  .site-header > .button {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: var(--red);
    border: 0;
    color: #fff;
    padding: 13px 20px;
    font-size: 1.12rem;
    font-weight: 900;
  }
  .site-header.open nav {
    display: flex;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .hero,
  .page-hero {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .page-hero-copy {
    padding: 70px 24px;
  }
  .hero-art {
    min-height: 440px;
  }
  .inauguration {
    margin: 0;
    grid-template-columns: 1fr;
  }
  .inauguration-poster-wrap {
    width: min(560px, calc(100% - 48px));
    min-height: 0;
    margin: 0 auto 28px;
  }
  .inauguration-poster img { height: auto; }
  .inauguration-actions {
    padding-top: 0;
  }
  .section-head,
  .about-band .section,
  .content-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .space-card {
    grid-column: span 6;
  }
  .visit {
    margin: 60px 24px;
  }
  .cta-band > div {
    grid-template-columns: 1fr;
  }
  .detail-strip {
    grid-template-columns: 1fr 1fr;
  }
  .courses-banner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .site-header {
    min-height: 76px;
  }
  .brand {
    width: 142px;
  }
  .site-header.open nav {
    top: 75px;
  }
  .hero h1 {
    font-size: 4.2rem;
  }
  .hero-art {
    min-height: 360px;
  }
  .inauguration {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .date-block strong {
    font-size: 3rem;
  }
  .group-grid,
  .feature-list,
  .detail-strip {
    grid-template-columns: 1fr;
  }
  .group-card {
    min-height: 310px;
  }
  .about-numbers {
    grid-template-columns: 1fr;
  }
  .space-card {
    grid-column: 1 / -1;
    min-height: 245px;
  }
  .visit {
    padding: 38px 25px;
    grid-template-columns: 1fr;
  }
  .visit-actions {
    min-width: 0;
  }
  .page-symbol {
    min-height: 330px;
  }
  .content-section,
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  footer {
    flex-wrap: wrap;
  }
  .footer-links {
    width: 100%;
    margin: 8px 0 0;
    text-align: left;
  }
}
.hero .button.ghost {
  color: #fff;
  border-color: #fff;
}

/* Apertura chiara: il rosso diventa protagonista nel banner inaugurazione. */
.hero {
  background: var(--paper);
  color: var(--ink);
}
.hero .lead {
  color: #4b473f;
}
.hero .eyebrow {
  color: var(--red);
}
.hero .button.inverse {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.hero .button.ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.hero-art {
  background: var(--yellow);
  min-height: 680px;
}
.hero-art:before {
  display: none;
}
.hero-art:after {
  display: none;
}
.hero-illustration {
  width: 100%;
  height: 100%;
  min-height: 680px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-slogan {
  position: absolute;
  left: clamp(24px, 6vw, 64px);
  right: clamp(24px, 6vw, 64px);
  bottom: clamp(24px, 5vw, 52px);
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 18px 22px;
  background: rgba(255, 250, 237, .94);
  border-left: 9px solid var(--red);
  box-shadow: 10px 10px 0 rgba(199, 24, 43, .92);
}
.hero-slogan span,
.hero-slogan strong {
  display: block;
  line-height: 1.02;
}
.hero-slogan span {
  color: #b64625;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 850;
}
.hero-slogan strong {
  color: var(--red);
  margin-top: 4px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -.045em;
}
}
.community-band {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  background: #fff;
  border-top: 14px solid var(--red);
}
.community-copy { padding: clamp(42px, 6vw, 76px); }
.community-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.055em;
}
.community-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 25px 0 30px;
  font-size: 1.18rem;
}
.whatsapp-main {
  background: #1fa855;
  border-color: #1fa855;
}
.whatsapp-main:hover { background: #147b3d; border-color: #147b3d; }
.social-side {
  padding: clamp(38px, 5vw, 62px);
  background: #e86d2b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-side > span { color: #fff2b7; font-weight: 900; font-size: 1.25rem; }
.social-side p { color: rgba(255,255,255,.78); }
.social-side div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.social-side a {
  padding: 11px 15px;
  border: 2px solid rgba(255,255,255,.72);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.volunteer-section {
  max-width: var(--max);
  margin: 90px auto;
  padding: clamp(48px, 7vw, 88px);
  background: var(--yellow);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(38px, 7vw, 90px);
  border-left: 16px solid var(--red);
}
.volunteer-section h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .86;
  letter-spacing: -.06em;
}
.volunteer-lead {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}
.volunteer-copy > p:not(.volunteer-lead) { font-size: 1.12rem; }
.volunteer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.volunteer-whatsapp {
  gap: 11px;
  background: #1fa855;
  border-color: #1fa855;
}
.volunteer-whatsapp:hover { background: #147b3d; border-color: #147b3d; }
.whatsapp-icon { width: 25px; height: 25px; fill: currentColor; flex: 0 0 auto; }
.volunteer-button-copy { display: block; text-align: left; line-height: 1.05; }
.volunteer-button-copy strong,
.volunteer-button-copy small { display: block; }
.volunteer-button-copy small { margin-top: 4px; font-size: .78rem; font-weight: 750; }
@media (max-width: 900px) {
  .community-band, .volunteer-section { grid-template-columns: 1fr; }
  .volunteer-section { margin: 60px 24px; }
}
@media (max-width: 620px) {
  .hero-art,
  .hero-illustration { min-height: 500px; }
  .hero-illustration { object-position: center; }
  .hero-slogan {
    left: 20px;
    right: 28px;
    bottom: 24px;
    max-width: none;
    padding: 15px 17px;
    border-left-width: 7px;
    box-shadow: 8px 8px 0 rgba(199, 24, 43, .92);
  }
  .hero-slogan span { font-size: 1.05rem; }
  .hero-slogan strong { font-size: 2.1rem; }
  .community-copy, .social-side { padding: 38px 25px; }
  .volunteer-section { padding: 42px 25px; border-left-width: 10px; }
}
.construction-page {
  min-height: calc(100vh - 86px);
  padding: 70px 24px;
  display: grid;
  place-items: center;
  background: var(--paper);
}
.construction-page section {
  width: min(900px, 100%);
  padding: clamp(42px, 8vw, 90px);
  background: #fff;
  border-top: 16px solid var(--red);
}
.construction-page h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.construction-page p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.18rem;
}
.inauguration {
  background: var(--red);
}
.date-block {
  background: var(--red-dark);
  color: #fff;
}
.inauguration-copy b {
  color: var(--yellow);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  letter-spacing: -0.035em;
}
.inauguration .button {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.inauguration .button.ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.president-letter {
  max-width: var(--max);
  margin: auto;
  padding: 120px 24px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}
.letter-intro {
  position: sticky;
  top: 120px;
}
.letter-intro h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin: 0;
  position: relative;
}
.letter-welcome {
  display: inline-block;
  padding: 14px 22px;
  background: var(--red);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.letter-copy {
  background: #fff;
  padding: clamp(32px, 5vw, 68px);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.8;
  border-top: 12px solid var(--red);
  box-shadow: 0 24px 70px rgba(24, 24, 23, 0.09);
}
.letter-copy p:first-child {
  font-size: 1.45rem;
}
.letter-copy blockquote {
  margin: 42px 0;
  padding: 26px 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.letter-copy blockquote span {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.48em;
  line-height: 1.15;
  letter-spacing: 0;
}
.signature {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  font-family: Arial, sans-serif;
}
.signature strong {
  font-size: 1.4rem;
}
.signature span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #68635b;
}

.five-hero {
  min-height: 620px;
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  background: #fff;
}
.five-hero h1 {
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.87;
  letter-spacing: -0.065em;
  margin: 0;
}
.five-hero p:last-child {
  font-size: 1.3rem;
  max-width: 690px;
}
.tax-code {
  background: var(--red);
  color: #fff;
  padding: 55px 38px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 22px 22px 0 var(--yellow);
}
.tax-code:before {
  content: "5×1000";
  position: absolute;
  right: 18px;
  top: -45px;
  color: rgba(199, 24, 43, 0.12);
  font-size: 7rem;
  font-weight: 950;
  white-space: nowrap;
}
.tax-code span,
.tax-code small {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.tax-code strong {
  font-size: clamp(2.25rem, 4.2vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 16px 0;
  word-break: break-all;
}
.five-steps {
  max-width: var(--max);
  margin: auto;
  padding: 110px 24px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps-grid article {
  background: #fff;
  padding: 34px;
  border-top: 10px solid var(--red);
}
.steps-grid b {
  font-size: 3rem;
  color: var(--red);
}
.steps-grid h3 {
  font-size: 1.8rem;
  margin: 20px 0 8px;
}
.steps-grid p {
  margin: 0;
  font-size: 1.06rem;
}
.five-impact {
  background: var(--red);
  color: #fff;
  padding: 95px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.five-impact .eyebrow {
  color: var(--yellow);
}
.five-impact h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 0;
}
.impact-list {
  display: grid;
  gap: 14px;
}
.impact-list span {
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 20px 24px;
  font-size: 1.14rem;
  font-weight: 900;
}
.impact-list span:before {
  content: "+";
  color: var(--yellow);
  font-size: 1.5rem;
  margin-right: 12px;
}
.five-note {
  max-width: var(--max);
  margin: 90px auto;
  padding: 55px;
  background: #fff;
  border-left: 16px solid var(--yellow);
}
.five-note > strong {
  font-size: 2rem;
}
.five-note p {
  font-size: 1.12rem;
}
.five-note .button {
  margin-top: 12px;
}
@media (max-width: 900px) {
  .president-letter,
  .five-hero,
  .five-impact {
    grid-template-columns: 1fr;
  }
  .letter-intro {
    position: static;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .five-hero {
    padding: 75px 24px;
  }
  .tax-code:before {
    font-size: 5rem;
  }
  .president-letter {
    gap: 45px;
  }
}
@media (max-width: 620px) {
  .hero h1,
  .five-hero h1 {
    font-size: 3.7rem;
  }
  .letter-welcome {
    font-size: 1rem;
  }
  .five-note {
    margin: 55px 24px;
    padding: 34px 24px;
  }
  .tax-code {
    padding: 42px 24px;
  }
  .tax-code strong {
    font-size: 2.15rem;
  }
  .president-letter {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Intestazione di associazione */
.site-header {
  min-height: 108px;
  background: var(--red);
  border-bottom: 0;
}
.brand {
  width: 225px;
}
.site-header nav a {
  color: #fff;
}
.site-header nav a:hover,
.site-header .active {
  color: var(--yellow);
}
.site-header > .button {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

/* Loghi reali dei gruppi */
.group-card {
  min-height: 410px;
}
.group-logo {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 26px;
}
.group-logo img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 230px;
  object-fit: contain;
}
.group-logo.round img {
  border-radius: 50%;
}
.group-logo.movie img {
  max-width: 280px;
  height: auto;
  max-height: 145px;
}
.group-card h3 {
  margin: 0 0 10px;
  max-width: 80%;
}
.group-card p {
  max-width: 88%;
}
@media (max-width: 900px) {
  .site-header {
    min-height: 98px;
  }
  .brand {
    width: 195px;
  }
  .site-header.open nav {
    top: 97px;
    background: var(--red-dark);
    border-bottom: 0;
  }
}
@media (max-width: 620px) {
  .site-header {
    min-height: 88px;
  }
  .brand {
    width: 178px;
  }
  .site-header.open nav {
    top: 87px;
  }
  .group-card {
    min-height: 385px;
  }
  .group-logo {
    height: 130px;
  }
  .general-contact { align-items: stretch; flex-direction: column; }
  .general-contact a { text-align: center; }
}

/* Pagina corsi */
.courses-page { background: #f6e5bd; }
.courses-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) clamp(24px, 6vw, 76px);
  background: var(--red);
  color: #fff;
}
.courses-hero .eyebrow { color: #ffd273; }
.courses-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: .86;
  letter-spacing: -.06em;
}
.courses-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 750;
}
.courses-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.courses-jump a {
  padding: 13px 18px;
  background: #fff;
  color: var(--red);
  text-decoration: none;
  font-weight: 900;
}
.courses-category {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) clamp(24px, 5vw, 64px);
  background: #fffaf0;
  scroll-margin-top: 110px;
}
.courses-category-adults {
  background: #fff;
  border-top: 16px solid #ed7b2f;
}
.courses-category-head {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}
.courses-category-head .eyebrow { color: var(--red); }
.courses-category-head h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .88;
  letter-spacing: -.055em;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.courses-register {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: -14px 0 34px;
  padding: 18px 20px;
  background: #fff0c7;
  border-left: 8px solid #ed7b2f;
}
.courses-register p { margin: 0; font-weight: 850; }
.courses-register .button { flex: 0 0 auto; }
.courses-register-bottom { margin: 26px 0 0; }
.course-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 2px solid rgba(199, 24, 43, .18);
  border-top: 9px solid var(--red);
  box-shadow: 8px 8px 0 rgba(237, 123, 47, .18);
}
.courses-category-adults .course-card {
  background: #fffaf0;
  border-top-color: #ed7b2f;
}
.course-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.course-card h3 {
  margin: 3px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.course-card h3 small {
  display: block;
  margin-top: 8px;
  font-size: .42em;
  line-height: 1.15;
  letter-spacing: .035em;
}
.course-module {
  display: block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.course-age {
  flex: 0 0 auto;
  padding: 7px 10px;
  background: #f6e5bd;
  color: #7e241a;
  font-size: .82rem;
  font-weight: 900;
}
.course-card > p { margin: 8px 0; }
.course-schedule {
  margin-bottom: 12px;
  padding: 14px 16px;
  background: var(--red);
  color: #fff;
}
.courses-category-adults .course-schedule { background: #b94625; }
.course-schedule p { margin: 4px 0; }
.sold-out {
  display: inline-block;
  margin: 5px 0 0 5px;
  padding: 3px 7px;
  background: #ffd273;
  color: #7a161d;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}
.sold-out-row {
  opacity: .76;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #ffd273;
}
.course-dates {
  color: #5c554d;
  font-size: .94rem;
  overflow-wrap: anywhere;
}
.course-trial {
  padding: 10px 12px;
  background: #fff0c7;
  color: #8f2b1e;
  font-weight: 900;
}
.course-place {
  padding-left: 22px;
  color: #6c251b;
  font-weight: 800;
  position: relative;
}
.course-place:before {
  content: "●";
  position: absolute;
  left: 2px;
  color: #ed7b2f;
}
.course-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid rgba(199, 24, 43, .16);
}
.course-price span {
  color: #6f6257;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.course-price strong {
  color: var(--red);
  font-size: 2rem;
}
.course-price small { width: 100%; font-size: .9rem; font-weight: 800; }
.course-price.free strong { color: #b94625; }
.arci-note {
  display: grid;
  grid-template-columns: .8fr 2.2fr;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
  padding: 28px 30px;
  background: var(--red);
  color: #fff;
  border-left: 12px solid #ffd273;
}
.arci-note div { display: grid; }
.arci-note span {
  color: #ffd273;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.arci-note strong { font-size: 2.2rem; line-height: 1; }
.arci-note small { font-size: .82rem; font-weight: 800; }
.arci-note p { margin: 0; font-weight: 700; }
.courses-contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #ed7b2f;
  color: #fff;
}
.courses-contact .eyebrow { color: #fff5d9; }
.courses-contact h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: .94;
}
@media (max-width: 800px) {
  .courses-category-head { grid-template-columns: 1fr; gap: 10px; }
  .courses-grid { grid-template-columns: 1fr; }
  .arci-note { grid-template-columns: 1fr 1fr; }
  .arci-note p { grid-column: 1 / -1; }
  .courses-contact { align-items: flex-start; flex-direction: column; }
  .courses-register { align-items: stretch; flex-direction: column; }
  .courses-register .button { text-align: center; }
}
@media (max-width: 520px) {
  .courses-hero h1 { font-size: 3.8rem; }
  .courses-category-head h2 { font-size: 3rem; }
  .course-card-head { flex-direction: column; }
  .course-age { align-self: flex-start; }
  .arci-note { grid-template-columns: 1fr; }
  .arci-note p { grid-column: auto; }
}

/* Locandine e racconti dei nove corsi */
.courses-page { background: #fffaf0; }
.courses-category:nth-of-type(odd) { background: #fff; }
.courses-category-head { margin-bottom: 38px; }
.course-detail-list { display: grid; gap: clamp(32px, 5vw, 70px); }
.course-detail {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: start;
  padding: clamp(18px, 2.5vw, 34px);
  background: #fff;
  border: 1px solid #eee1d3;
  box-shadow: 0 18px 50px rgba(81, 47, 34, .08);
  scroll-margin-top: 100px;
}
.course-detail:nth-child(even) { background: #fff9f1; }
.course-poster {
  display: block;
  padding: 10px;
  background: #fff;
  box-shadow: 0 8px 27px rgba(53, 34, 35, .16);
  color: #722e31;
  text-decoration: none;
}
.course-poster img { display: block; width: 100%; height: auto; }
.course-poster span { display: block; padding: 10px 5px 2px; text-align: right; font-size: .85rem; font-weight: 800; }
.course-poster:hover span, .course-poster:focus-visible span { text-decoration: underline; }
.course-detail-body { min-width: 0; padding: clamp(5px, 1vw, 18px) 0; }
.course-detail-label {
  display: inline-block;
  margin: 0 0 15px;
  color: #a34439;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.course-detail h3 { margin: 0 0 18px; font-size: clamp(2.2rem, 3.8vw, 4.1rem); line-height: .97; letter-spacing: -.045em; }
.course-detail-intro { margin: 0 0 22px; color: #8a2d31; font-size: clamp(1.25rem, 1.7vw, 1.65rem); line-height: 1.28; font-weight: 800; }
.course-description { max-width: 66ch; }
.course-description p { margin: 0 0 16px; line-height: 1.68; }
.course-practical { margin-top: 28px; padding: 22px 24px; background: #f7eee4; border-left: 5px solid #bb5441; }
.course-practical h4 { margin: 0 0 12px; font-size: 1.15rem; }
.course-practical ul { margin: 0; padding-left: 20px; }
.course-practical li { margin: 8px 0; line-height: 1.45; overflow-wrap: anywhere; }
.course-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.course-detail-actions .button { text-align: center; }
.courses-membership { max-width: var(--max); margin: 0 auto; }
@media (max-width: 850px) {
  .course-detail { grid-template-columns: 1fr; }
  .course-poster { width: min(100%, 440px); margin: 0 auto; }
  .course-detail-body { padding: 4px 4px 10px; }
}
@media (max-width: 520px) {
  .course-detail-actions { flex-direction: column; }
  .course-detail h3 { font-size: 2.5rem; }
  .course-practical { padding: 18px; }
}
