/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c0152a;
  --red-dark:  #8e0f1f;
  --red-light: #e8c0c5;
  --white:     #ffffff;
  --off-white: #f7f4f2;
  --gray-100:  #f0ecea;
  --gray-700:  #3a3030;
  --gray-900:  #1a1010;
  --text:      #2d2020;
  --radius:    8px;
  --shadow:    0 2px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.14);
  --transition: .25s ease;
  --max-w:     1100px;
  --font:      'Georgia', 'Times New Roman', serif;
  --font-ui:   system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
/* allow clickable images inside links */
a img { pointer-events: auto; }

/* Disable text selection globally (deterrent) */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Keep contacts and key data selectable so users can copy phone/email/address */
.contact-list, .contact-list *,
.codice-fiscale,
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
a  { color: var(--red); text-decoration: underline; }
a:hover { color: var(--red-dark); }

ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.25;
  color: var(--gray-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--red);
  margin-bottom: 1.5rem;
  text-align: center;
}
h3 { font-size: 1.2rem; margin-bottom: .6rem; }
h4 { font-size: 1rem; margin-bottom: .4rem; }

p + p { margin-top: 1rem; }

.section-intro {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.impact-callout {
  max-width: 760px;
  margin: 1.5rem auto 0;
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.impact-callout p { margin: 0; }
.impact-callout-lead {
  font-size: 1.15rem;
  color: var(--gray-900);
  line-height: 1.5;
}
.impact-callout-lead strong { color: var(--red); }
.impact-callout-body {
  margin-top: .7rem !important;
  color: var(--gray-700);
  font-size: 1rem;
}
.impact-callout-body strong { color: var(--red-dark); }
.section-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--red-dark);
  margin: 0 auto 1rem;
  font-family: var(--font);
  font-style: italic;
}
.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--red-dark);
  margin-bottom: 1rem;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}

.section       { padding: 5rem 0; }
.section-alt   { background: var(--gray-100); }
.section-dark  { background: var(--red); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark a  { color: var(--red-light); }
.section-dark a:hover { color: var(--white); }

.section-cta   { text-align: center; margin-top: 2.5rem; }

.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .two-col   { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .four-col  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .three-col, .four-col { grid-template-columns: 1fr; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover  { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline  { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover  { background: var(--red); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-secondary:hover { background: var(--off-white); }

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 6px 20px rgba(192, 21, 42, .35);
  animation: donate-pulse 2.6s ease-in-out infinite;
}
.btn-donate:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  box-shadow: 0 12px 28px rgba(192, 21, 42, .5);
  transform: translateY(-2px);
}
.btn-donate-heart {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transform-origin: center;
  animation: donate-heartbeat 1.6s ease-in-out infinite;
}

@keyframes donate-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(192, 21, 42, .35); }
  50%      { box-shadow: 0 8px 28px rgba(192, 21, 42, .55); }
}
@keyframes donate-heartbeat {
  0%, 100% { transform: scale(1); }
  14%      { transform: scale(1.22); }
  28%      { transform: scale(1); }
  42%      { transform: scale(1.14); }
  56%      { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-donate, .btn-donate-heart { animation: none; }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 6px 20px rgba(192, 21, 42, .25);
}
.btn-cta:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  box-shadow: 0 12px 28px rgba(192, 21, 42, .4);
  transform: translateY(-2px);
}
.btn-cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn-cta:hover .btn-cta-arrow { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
  .btn-cta-arrow { transition: none; }
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--red-light);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: .75rem;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
.logo { text-decoration: none; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.main-nav a:hover { color: var(--red); border-bottom-color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .header-inner > .btn { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--red-light);
    padding: 1.5rem;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 1rem; }
  .main-nav a { font-size: 1.1rem; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--white);
  padding: 0;
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
   CARDS (Chi Siamo)
   =========================== */
.cards-small { display: flex; flex-direction: column; gap: 1.2rem; }
.card-small {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--red-light);
}
.card-small.highlight { border-left-color: var(--red); background: #fff0f2; }
.setticlavio-quote {
  font-family: var(--font);
  font-style: italic;
  color: var(--red-dark);
  border-top: 1px solid var(--red-light);
  padding-top: .8rem;
  margin-top: .8rem;
  font-size: 1rem;
}
.card-small .card-icon {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: .6rem;
}

/* ===========================
   TIMELINE (Chi Siamo)
   =========================== */
.timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--red-light);
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.2rem;
  padding: 0 0 1.8rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--red);
  text-align: right;
  padding-right: 1.4rem;
  position: relative;
  line-height: 1.3;
}
.timeline-year::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red-light);
}
.timeline-body h3 {
  margin: 0 0 .4rem;
  font-size: 1.1rem;
  color: var(--gray-900);
}
.timeline-body p {
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 540px) {
  .timeline::before { left: 50px; }
  .timeline li { grid-template-columns: 70px 1fr; gap: .8rem; }
  .timeline-year { font-size: 1rem; padding-right: 1rem; }
}

/* ===========================
   VALUES
   =========================== */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.value-card p {
  font-size: .95rem;
  line-height: 1.7;
  text-align: left;
}
.value-card p + p { margin-top: .8rem; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 0 auto 1rem;
  color: var(--red);
  background: #fff0f2;
  border-radius: 50%;
}
.value-icon svg { width: 60px; height: 60px; }
.value-img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

/* ===========================
   PROJECTS
   =========================== */
.project-list { display: flex; flex-direction: column; gap: 3rem; margin-top: 1rem; }
.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.project-card--reverse .project-img { order: 2; }

.project-img {
  min-height: 320px;
  background: var(--white) url('../images/atempo.png') center/contain no-repeat;
}
.project-img--onde { background-image: url('../images/traleonde.png'); }
.project-img--mfl  { background-image: url('../images/musicforlife.png'); }

.project-body { padding: 2.5rem 2rem; }
.project-body h3 { font-size: 1.5rem; color: var(--red); margin-bottom: 1rem; }

@media (max-width: 700px) {
  .project-card { grid-template-columns: 1fr; }
  .project-card--reverse .project-img { order: 0; }
  .project-img { min-height: 220px; }
}

/* ===========================
   SERVICES (Aziende)
   =========================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2rem; margin-bottom: .8rem; }
.service-img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto .8rem;
}
.service-card h4 { color: var(--red-dark); }
.service-card p { font-size: .95rem; color: var(--gray-700); }

/* ===========================
   SUPPORT CARDS
   =========================== */
.support-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.support-card h3 {
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: .4rem;
}
.support-img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: .4rem;
}
.support-card .btn { margin-top: auto; align-self: flex-start; }

.donate-prompt {
  margin: .2rem 0 -.2rem;
  font-size: .98rem;
  color: var(--gray-900);
}
.donate-prompt strong { color: var(--red-dark); }

.section-cta .donate-prompt {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.payment-methods {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 0;
  margin: .7rem 0 0;
  align-self: flex-start;
}
.payment-methods li { display: flex; }
.payment-methods svg {
  height: 22px;
  width: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.join-block {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.join-icon {
  width: 80px;
  height: 80px;
  color: var(--white);
  opacity: .92;
  flex-shrink: 0;
}
.join-icon svg { width: 100%; height: 100%; }
.join-content h3 {
  color: var(--white);
  margin: 0 0 .6rem;
  font-size: 1.4rem;
}
.join-content p {
  margin: 0 0 .6rem;
  color: rgba(255, 255, 255, .92);
  line-height: 1.55;
}
.join-content p:last-child { margin-bottom: 0; }
.join-content strong { color: var(--white); }
.join-content .donate-prompt {
  font-size: 1rem;
  color: rgba(255, 255, 255, .92);
  margin: .2rem 0 0;
}
.join-content .donate-prompt strong { color: var(--white); }

.join-cta {
  background: var(--white) !important;
  color: var(--red) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}
.join-cta:hover {
  background: var(--off-white) !important;
  color: var(--red-dark) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

@media (max-width: 700px) {
  .join-block {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
  }
  .join-icon { margin: 0 auto; width: 64px; height: 64px; }
  .join-cta { justify-self: center; }
}

.bullet-list {
  list-style: none;
  padding-left: 0;
}
.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .4rem;
}
.bullet-list li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.note { font-size: .85rem; color: var(--gray-700); font-style: italic; }
.note-with-icon {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-style: normal;
  color: var(--red-dark);
  font-weight: 500;
}
.note-with-icon svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.codice-fiscale {
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--red);
  background: var(--white);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: 1px;
  border: 2px dashed var(--red-light);
}
.cinque-x-mille-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: .4rem 0;
}
.cinque-x-mille-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2rem;
  margin-bottom: .6rem;
  font-size: .95rem;
  line-height: 1.5;
}
.cinque-x-mille-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--red);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.social-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-links a:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}
.social-links--dark a {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.social-links--dark a:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

/* ===========================
   PARTNERS
   =========================== */
.partners-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.partner-featured {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  border-top: 4px solid var(--red);
}
.partner-featured img {
  max-width: 220px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: .5rem 0;
}
.partner-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .8rem;
  border-radius: 20px;
}
.partner-featured h3 {
  color: var(--red);
  font-size: 1.25rem;
  margin: 0;
}
.partner-featured p {
  color: var(--gray-700);
  font-size: .95rem;
  margin: 0;
}

.partners-history {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 0;
}
.partners-history-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin-bottom: .8rem;
}
.partners-history-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.partners-history-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  margin: 0 auto 2.5rem;
}
.partners-history-block {
  margin-bottom: 2rem;
}
.partners-history-block:last-child { margin-bottom: 0; }
.partners-history-block h4 {
  font-family: var(--font);
  font-size: 1.15rem;
  color: var(--red);
  margin-bottom: .6rem;
  letter-spacing: .02em;
}
.partners-history p {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}
.partners-history strong { color: var(--gray-900); font-weight: 600; }

.partners-block-intro {
  margin: 0 auto .9rem !important;
  font-size: .98rem !important;
  line-height: 1.5 !important;
  color: var(--gray-700);
}

.partners-chips {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  max-width: 820px;
}
.partners-chips li {
  background: var(--white);
  color: var(--red-dark);
  padding: .5rem .95rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  border: 1px solid var(--red-light);
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.partners-chips li:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-1px);
}
.partners-chips .more {
  background: transparent;
  border-style: dashed;
  font-weight: 400;
  font-style: italic;
  color: var(--gray-700);
}
.partners-chips .more:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  transform: none;
}

@media (max-width: 700px) {
  .partners-featured { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===========================
   CONSIGLIO DIRETTIVO
   =========================== */
.board-lead-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.board-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--red-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.board-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.board-card--lead {
  background: #fff0f2;
  border-top: none;
  border: 2px solid var(--red);
  padding: 2rem 2.5rem;
  min-width: 320px;
  text-align: center;
}
.board-card--lead h3 {
  font-size: 1.5rem;
  color: var(--red);
}
.board-role {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: .6rem;
}
.board-card--lead .board-role {
  font-size: .85rem;
}
.board-card h3 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 700px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .board-grid { grid-template-columns: 1fr; } }

/* ===========================
   DOCUMENTS
   =========================== */
.doc-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  max-width: 560px;
  margin: 2rem auto 0;
}
.contact-info a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); transition: border-color var(--transition); }
.contact-info a:hover { color: var(--white); border-bottom-color: var(--white); }

.contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list li > div { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.contact-list li > div > span:not(.contact-label),
.contact-list li > div > a { word-break: break-word; }
.contact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red-light);
}


/* ===========================
   SEGUICI + CONDIVIDI
   =========================== */
.section-share { padding: 3rem 0; }
.engage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.engage-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.engage-block .follow-links,
.engage-block .share-actions {
  margin-top: auto;
}
.share-title {
  font-family: var(--font);
  font-size: 1.35rem;
  color: var(--gray-900);
  margin: 0 0 .3rem;
  text-align: left;
}
.share-sub {
  margin: 0 0 1.2rem;
  color: var(--gray-700);
  font-size: .95rem;
}

.follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.follow-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--red);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.follow-links a svg { width: 22px; height: 22px; fill: currentColor; }
.follow-links a:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--gray-900);
  border: 1px solid var(--red-light);
  border-radius: 30px;
  padding: .55rem 1rem;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.share-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}
.share-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.share-btn.is-copied {
  background: #1c7430;
  color: var(--white);
  border-color: #1c7430;
}

@media (max-width: 800px) {
  .engage-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.site-footer nav ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer a {
  color: var(--red-light);
  text-decoration: none;
  font-size: .9rem;
}
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-copy { font-size: .85rem; opacity: .8; }

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); color: var(--white); }

/* ===========================
   ACCESSIBILITY
   =========================== */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================
   FADE-IN ON SCROLL
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
