/* =========================================
   CENTER WITHOUT CENTRE — style.css
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Trirong:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Geist:wght@300;400;500&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:        #FFFFFF;
  --bg-alt:       #F7F6F4;
  --bg-dark:      #1A1A1A;
  --text:         #1A1A1A;
  --text-muted:   #595959;
  --border:       #E8E6E3;
  --accent:       #C8BFB0;
  --max-w:        1100px;
  --pad-v:        80px;
  --pad-v-mob:    60px;
  --radius:       12px;
  --transition:   0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   1. HEADER
   ========================================= */
.topbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  height: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar-inner::-webkit-scrollbar {
  display: none;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}

.topbar-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.topbar-icon-house {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
}

.topbar-link:hover {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-line1 {
  font-family: 'Trirong', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}

.logo-line2 {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 36px;
  list-style: none;
}

.site-nav a {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  width: 100%;
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  width: 100%;
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================
   1b. PAGE HEADER (sottopagine)
   ========================================= */
.page-header {
  background: var(--bg-alt);
  padding: 56px 0 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header-slim {
  padding: 20px 0 14px;
}

.page-header-slim h1 {
  font-size: 26px;
}

.page-header-slim p {
  margin-top: 4px;
  font-size: 14px;
}

.page-header-link {
  display: inline-flex;
  margin-left: 10px;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition);
}

.page-header-faq-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 14px auto 0;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.page-header-faq-mark {
  font-family: 'Trirong', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--text);
  transition: color var(--transition);
}

.page-header-faq-link:hover {
  color: var(--text);
}

.page-header-faq-link:hover .page-header-faq-mark {
  color: var(--accent);
}

.page-header-link:hover {
  border-color: var(--text);
}

.meaning {
  background: var(--bg-alt);
  padding: var(--pad-v) 0;
  border-top: 1px solid var(--border);
}

.meaning-inner {
  max-width: 640px;
}

.meaning-inner .section-title {
  margin-bottom: 40px;
}

.meaning-title {
  white-space: nowrap;
  font-size: clamp(15px, 4.2vw, 26px);
}

.meaning-inner p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
}

.meaning-inner p + p {
  margin-top: 18px;
}

.meaning-point + .meaning-point {
  margin-top: 40px;
}

.meaning-point h3 {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 12px;
}

.meaning-point em {
  font-style: italic;
  color: var(--text);
}

.meaning-quote {
  margin-top: 40px;
  font-family: 'Trirong', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.meaning-closing {
  margin-top: 32px;
}

.page-header h1 {
  font-family: 'Trirong', serif;
  font-weight: 300;
  font-size: 52px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.page-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =========================================
   2. HERO
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.hero-poem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 28px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  justify-self: end;
  align-self: start;
}

.hero-cta-sub {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  max-width: 180px;
}

.hero-cta-title {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--text);
  max-width: 240px;
}

.hero-cta-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 240px;
}

.hero-cta-link {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}

.hero-cta-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.hero-quote {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
}

.hero-quote .hero-cta-link {
  display: inline-block;
  margin-top: 14px;
}

.hero-quote blockquote {
  font-family: 'Trirong', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-title {
  font-family: 'Trirong', serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  width: 100%;
}

.btn-outline {
  display: inline-block;
  align-self: center;
  padding: 14px 32px;
  border: 1px solid var(--text);
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  background: transparent;
  border-radius: 2px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  align-self: center;
}

.btn-outline-ghost {
  border-color: var(--border);
  color: var(--text-muted);
}

.btn-outline-ghost:hover {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

/* =========================================
   3. INTRO
   ========================================= */
.intro {
  background: var(--white);
  padding: var(--pad-v) 0;
  text-align: center;
}

.intro-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.intro-line {
  width: 60px;
  height: 1px;
  background: var(--border);
  display: block;
}

.intro-quote {
  font-family: 'Trirong', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.6;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* =========================================
   3b. CHI SIAMO
   ========================================= */
.about {
  background: var(--white);
  padding: var(--pad-v) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-lead {
  font-family: 'Trirong', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.about-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.about-photo-slide.active {
  opacity: 1;
}

.section-sub {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* =========================================
   4. COSA ACCADE QUI
   ========================================= */
.activities {
  background: var(--bg-alt);
  padding: var(--pad-v) 0;
}

.activities-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 var(--pad-v);
}

.activities-hero-content {
  position: relative;
  z-index: 1;
}

.activities-hero .page-header-inline {
  text-align: center;
  margin-bottom: 40px;
}

.activities-hero .page-header-inline h1 {
  font-family: 'Trirong', serif;
  font-weight: 300;
  font-size: 52px;
  color: var(--white);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.activities-hero .page-header-inline p {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.activities-hero .activities-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 12px rgba(0,0,0,0.2);
}

.activities-hero .activities-cta {
  border-top-color: rgba(255,255,255,0.25);
}

.activities-hero .activities-cta p {
  color: rgba(255,255,255,0.85);
}

.activities-hero .activities-cta .btn-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

.activities-hero .activities-cta .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}

.activities-intro {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.activities-contact {
  background: var(--bg-alt);
}

.activities-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.activities-contact-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activities-contact-text .section-title {
  margin-bottom: 4px;
}

.activities-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-tag {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.card .card-tag {
  background: var(--white);
}

.activities-contact-note {
  font-size: 15px;
  color: var(--text-muted);
}

.activities-contact-note a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.activities-contact-note a:hover {
  border-color: var(--text);
}

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Trirong', serif;
  font-weight: 300;
  font-size: 40px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card-title {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
}

.card-note {
  margin-top: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--border);
  font-family: 'Trirong', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  opacity: 0.85;
}

.donate-btn {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.donate-btn:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.card-desc {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.card-desc p + p,
.card-desc p + dl,
.card-desc dl + p {
  margin-top: 10px;
}

.card-sublist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.card-sublist dt {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}

.card-sublist dd {
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   5. LO SPAZIO
   ========================================= */
.space {
  background: var(--white);
  padding: 32px 0 48px;
}

.space .container {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.space-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.space-text .section-title {
  margin-bottom: 4px;
}

.space-title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.space-title-row .section-title {
  margin-bottom: 0;
}

.space-title-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.space-title-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.space-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-muted);
}

.space-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.space-list li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.space-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.room-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.room-item h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
}

.room-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 4px;
}

.space-quote {
  font-family: 'Trirong', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.space-tour-link {
  align-self: flex-start;
  margin-top: 12px;
  color: var(--text-muted);
  border-color: var(--border);
}

.space-tour-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.space-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.space-photos img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.space-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.space-slides {
  position: absolute;
  inset: 0;
}

.space-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.space-slide.active {
  opacity: 1;
}

.space-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
}

.space-slide-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================
   5b. TOUR VIRTUALE
   ========================================= */
.tour-virtuale {
  background: var(--bg-alt);
  padding: 56px 0 var(--pad-v);
}

.tour-virtuale .section-header {
  text-align: center;
}

.tour-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.tour-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.tour-link {
  margin-top: 32px;
  text-align: center;
}

.tour-link .btn-ghost {
  display: inline-flex;
  color: var(--text-muted);
  border-color: var(--border);
}

.tour-link .btn-ghost:hover {
  color: var(--text);
  border-color: var(--text);
}

/* =========================================
   6. PERCHÉ
   ========================================= */
.why {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
  padding: var(--pad-v) 0;
}

.why-lead {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
}

.why .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.why-block:last-child {
  border-bottom: none;
}

.why-number {
  font-family: 'Trirong', serif;
  font-weight: 300;
  font-size: 120px;
  color: #F0EEEB;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-content h3 {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.why-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
}

/* =========================================
   4b. PARTECIPAZIONE (foto di sfondo + tessere di testo)
   ========================================= */
.participate {
  position: relative;
  overflow: hidden;
  padding: var(--pad-v) 0;
}

.participate-slides {
  position: absolute;
  inset: 0;
}

.participate-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.participate-slide.active {
  opacity: 1;
}

.participate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.participate-content {
  position: relative;
  z-index: 1;
}

.participate .section-title {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.participate .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.participate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.participate-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background var(--transition);
}

.participate-card:hover {
  background: rgba(255,255,255,1);
}

.participate-card h3 {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--text);
}

.participate-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.participate-card-link {
  display: inline-block;
  margin-top: 4px;
  align-self: flex-start;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.participate-card-link:hover {
  border-color: var(--text);
}

.participate-figure {
  color: var(--accent);
  margin-top: 56px;
  justify-self: end;
}

.participate-figure svg {
  width: 150px;
  height: auto;
}

/* =========================================
   5b. VIVERE GLI SPAZI (senza attività)
   ========================================= */
.vivere {
  background: var(--white);
  padding: 40px 0;
}

.vivere-layout {
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: start;
  gap: 40px;
  max-width: 780px;
}

.vivere-text .section-title {
  line-height: 1.15;
  margin-bottom: 20px;
}

.vivere-text .collettivo-text {
  text-align: left;
  margin: 0 0 16px;
}

/* =========================================
   5c. UN PROGETTO COLLETTIVO
   ========================================= */
.collettivo {
  background: var(--white);
  padding: var(--pad-v) 0;
  text-align: center;
}

.collettivo-inner {
  max-width: 640px;
  margin: 0 auto;
}

.collettivo-inner .section-title {
  margin-bottom: 20px;
}

.collettivo-text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.collettivo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.collettivo--alt {
  background: var(--bg-alt);
}

/* =========================================
   5d. DOVE VUOLE ARRIVARE (pagina futuro)
   ========================================= */
.futuro-section {
  padding: var(--pad-v) 0;
  background: var(--white);
}

.futuro-section--alt {
  background: var(--bg-alt);
}

.futuro-block {
  max-width: 640px;
}

.futuro-block .section-title {
  margin-bottom: 24px;
}

.futuro-block p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.futuro-block p:last-child {
  margin-bottom: 0;
}

.futuro-closing-line {
  font-family: 'Trirong', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--text);
  margin-top: 4px;
}

/* =========================================
   6b. COME ARRIVARE
   ========================================= */
.come-arrivare {
  background: var(--bg-alt);
  padding: 24px 0 var(--pad-v);
}

.card-icon-svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.arrivare-map-link {
  margin-top: 48px;
  text-align: center;
}

.arrivare-map-link .btn-ghost {
  display: inline-flex;
  color: var(--text-muted);
  border-color: var(--border);
}

.arrivare-map-link .btn-ghost:hover {
  color: var(--text);
  border-color: var(--text);
}

/* =========================================
   6c. INFORMAZIONI PRATICHE
   ========================================= */
.info-pratiche {
  background: var(--white);
  padding: var(--pad-v) 0;
}

.card-link {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  align-self: flex-start;
  transition: border-color var(--transition);
}

.card-link:hover {
  border-color: var(--text);
}

.contact-legal {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 4px;
}

/* =========================================
   7. COLLABORA
   ========================================= */
.collaborate {
  background: var(--bg-dark);
  padding: var(--pad-v) 0;
}

.collaborate .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.collaborate.collaborate-3 .container {
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.collaborate.collaborate-4 .container {
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}

.collaborate-lead {
  grid-column: 1 / -1;
  max-width: 100%;
  margin-bottom: 8px;
}

.collaborate-lead h2 {
  font-family: 'Trirong', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-bottom: 12px;
}

.collaborate-lead p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.collab-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collab-block h2 {
  font-family: 'Trirong', serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.collab-block p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.collab-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  display: block;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  align-self: flex-start;
  transition: color var(--transition), border-color var(--transition);
  margin-top: 8px;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.hero-poem .btn-ghost {
  color: var(--text-muted);
  border-color: var(--border);
  align-self: flex-start;
  margin-top: -8px;
}

.hero-poem .btn-ghost:hover {
  color: var(--text);
  border-color: var(--text);
}

.btn-ghost .arrow {
  transition: transform var(--transition);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* =========================================
   8. CONTATTI
   ========================================= */
.contacts {
  background: var(--white);
  padding: 48px 0 32px;
  text-align: center;
}

.contacts-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contacts-inner .section-title {
  font-size: 40px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.contacts-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.contacts-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.contacts-note a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.contacts-note a:hover {
  border-color: var(--text);
}

.card-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.card-bullets li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.card-bullets strong {
  font-weight: 500;
  color: var(--text);
}

.contact-item {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.contact-item a:hover {
  border-color: var(--text);
}

.contact-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}

.contact-quicklink:hover {
  border-color: var(--text);
  background: var(--bg-alt);
}

.contact-quicklink-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.contact-quicklink .arrow {
  transition: transform var(--transition);
}

.contact-quicklink:hover .arrow {
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.social-link:hover {
  color: var(--text);
  border-color: var(--text);
  background: var(--bg-alt);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-map {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   9. FOOTER
   ========================================= */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  text-align: center;
}

.footer-social-row {
  display: flex;
  justify-content: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.footer-legal {
  margin-top: 20px;
}

.footer-assoc {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-legal-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social .social-link {
  width: 32px;
  height: 32px;
}

.footer-social .social-link svg {
  width: 14px;
  height: 14px;
}

.site-footer p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-extra-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color var(--transition), border-color var(--transition);
}

.footer-extra-link:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.5);
}

/* =========================================
   9. AREA VOLONTARI (login + area riservata)
   ========================================= */
.login-section {
  background: var(--bg-alt);
  padding: var(--pad-v) 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.login-card {
  max-width: 360px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.form-field input {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color var(--transition);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color var(--transition);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Geist', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--text);
}

.linfa {
  background: var(--bg-alt);
  padding: 32px 0 var(--pad-v);
}

.linfa-intro {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

.linfa-intro-link {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  white-space: nowrap;
  transition: border-color var(--transition);
}

.linfa-intro-link:hover {
  border-color: var(--text);
}

#dona-tempo {
  scroll-margin-top: 100px;
}

.linfa-donate-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px 36px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.linfa-donate-card .card-title {
  margin-bottom: 2px;
}

.linfa-donate-card .card-desc {
  line-height: 1.8;
}

.linfa-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 32px auto;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.linfa-divider::before,
.linfa-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.linfa-form-lead {
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

[hidden] {
  display: none !important;
}

.linfa-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.linfa-form .btn-outline {
  width: 100%;
  text-align: center;
  border: 1px solid var(--text);
  margin-top: 8px;
}

.linfa-form .btn-outline:disabled {
  opacity: 0.5;
  cursor: default;
}

.linfa-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.linfa-note a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.linfa-note a:hover {
  border-color: var(--text);
}

.form-success {
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  line-height: 1.6;
}

.login-card .btn-outline {
  width: 100%;
  text-align: center;
  border: 1px solid var(--text);
}

.login-card .btn-outline:disabled {
  opacity: 0.5;
  cursor: default;
}

.form-error {
  font-size: 14px;
  color: #B23B3B;
}

.volunteer-area {
  background: var(--white);
  padding: var(--pad-v) 0;
}

.volunteer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.volunteer-hint {
  font-size: 15px;
  color: var(--text-muted);
}

.btn-ghost-dark {
  display: inline-block;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-ghost-dark:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.sheet-embed-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sheet-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================
   10. TESSERAMENTO
   ========================================= */
.tessera-intro {
  background: var(--white);
  padding: 20px 0 24px;
}

.tessera-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tessera-intro-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.tessera-lead {
  font-family: 'Trirong', serif;
  font-style: italic;
  font-size: 19px !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
}

.tessera-lead a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent);
  transition: text-decoration-color var(--transition);
}

.tessera-lead a:hover {
  text-decoration-color: var(--text);
}

.chi-group {
  margin: 16px 0 0;
}

.chi-group-label {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.chi-grid {
  display: grid;
  gap: 12px;
}

.chi-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.chi-card {
  background: var(--white);
  padding: 16px 18px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.chi-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: var(--text);
}

.chi-card .card-title {
  font-size: 17px;
}

.chi-card .card-desc {
  flex: 1;
  font-size: 15px;
}

.chi-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 4px;
  transition: color var(--transition);
}

.chi-card:hover .chi-card-link {
  color: var(--text);
}

.chi-card .arrow {
  transition: transform var(--transition);
}

.chi-card:hover .arrow {
  transform: translateX(4px);
}

.tessera-pricing {
  background: var(--bg-alt);
  padding: 56px 0 var(--pad-v);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-title {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
}

.pricing-amount {
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.pricing-amount-alt {
  font-size: 14px;
  font-family: 'Geist', sans-serif;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

.pricing-card .btn-outline {
  align-self: stretch;
  text-align: center;
  margin-top: 8px;
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.pricing-card .btn-outline:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.tessera-closing {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-muted);
}

.tessera-closing a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.tessera-closing a:hover {
  border-color: var(--text);
}

/* =========================================
   TESSERA — FAQ
   ========================================= */
.tessera-faq {
  background: var(--white);
  padding: var(--pad-v) 0;
}

.faq-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.faq-intro {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-muted);
}

.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-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: 'Trirong', serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: '';
}

.faq-toggle {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text);
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer p + p,
.faq-answer p + dl,
.faq-answer p + ul {
  margin-top: 12px;
}

.faq-tessere-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.faq-tessere-list dt {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 3px;
}

.faq-tessere-list dd {
  font-size: 15px;
  line-height: 1.7;
}

.faq-sublist {
  margin-top: 10px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-sublist li {
  list-style: disc;
}

.faq-answer a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.faq-answer a:hover {
  border-color: var(--text);
}

.faq-answer {
  padding: 0 4px 24px;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
}

/* =========================================
   RESPONSIVE — 768px
   ========================================= */
@media (max-width: 768px) {
  :root {
    --pad-v: var(--pad-v-mob);
  }

  .container {
    padding: 0 24px;
  }

  /* Top bar */
  .topbar-inner {
    justify-content: flex-start;
    gap: 20px;
    height: 36px;
  }

  .topbar-link {
    font-size: 12px;
  }

  /* Header */
  .site-header .container {
    height: 68px;
  }

  .logo-line1 {
    font-size: 16px;
  }

  .logo-line2 {
    font-size: 11px;
  }

  .logo-img {
    height: 30px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 4px 40px 16px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: block;
    padding: 14px 0;
  }

  /* Hero */
  .hero-content {
    padding-top: 56px;
    padding-bottom: 56px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-poem {
    max-width: 100%;
  }

  .hero-cta {
    justify-self: stretch;
    align-items: flex-start;
    text-align: left;
  }

  .hero-cta .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-quote {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 16px;
    text-align: left;
  }

  .hero-title {
    font-size: 36px;
    white-space: normal;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-lead {
    font-size: 17px;
  }

  /* FAQ card */
  .faq-card {
    padding: 32px 24px;
  }

  /* Activities contact */
  .activities-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Space */
  .space .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .space-photos {
    grid-template-columns: 1fr;
  }

  .space-slideshow {
    aspect-ratio: 3 / 4;
  }

  /* Why */
  .why-block {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }

  .why-number {
    font-size: 72px;
  }

  /* Participate */
  .participate-grid {
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }

  .participate-figure {
    display: none;
  }

  .vivere-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Collaborate */
  .collaborate .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .collaborate-lead h2 {
    white-space: normal;
    font-size: 26px;
  }

  .collab-divider {
    display: none;
  }

  /* Contacts */
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .contacts-left {
    align-items: center;
  }

  .contact-details {
    align-items: center;
  }

  /* Intro */
  .intro-quote {
    font-size: 21px;
  }

  /* Section title */
  .section-title {
    font-size: 32px;
  }

  /* Page header */
  .page-header {
    padding: 48px 0 36px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .activities-hero {
    padding: 64px 0 var(--pad-v-mob);
  }

  .activities-hero .page-header-inline h1 {
    font-size: 36px;
  }

  /* Area volontari */
  .login-card {
    padding: 32px 24px;
  }

  .volunteer-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sheet-embed-wrapper {
    aspect-ratio: 4/5;
  }

  /* Tesseramento */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================================
   RESPONSIVE — 480px
   ========================================= */
@media (max-width: 480px) {
  .logo-line1 {
    font-size: 14px;
  }

  .chi-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .space-photos {
    grid-template-columns: 1fr;
  }

  .intro-quote {
    font-size: 19px;
  }

  .contact-map {
    aspect-ratio: 4/3;
  }
}
