/* === Sezioni home === */

section{
  position: relative;
  z-index: 1;
}

/* --- Quote band --- */
.quote-band{
  padding: 100px 48px;
  background: var(--bg-soft);
  text-align: center;
}
.quote-band blockquote{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.quote-band blockquote::before{
  content: '\201C';
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -60px; left: -20px;
  font-family: 'Cormorant Garamond', serif;
}
.quote-band-source{
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* --- Section header pattern --- */
.section-pad{ padding: 120px 48px; }

.section-header{
  max-width: 1300px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
}
.section-eyebrow{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before{
  content:'';
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.section-title em{
  font-style: italic;
  color: var(--gold);
}
.section-intro{
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* --- Tre pilastri --- */
.pillars{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar{
  background: var(--bg);
  padding: 56px 40px;
  transition: background 0.4s;
}
.pillar:hover{ background: var(--bg-soft); }
.pillar-num{
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 400;
}
.pillar-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.pillar-desc{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* --- Sections grid (le 4 card scure) --- */
.sections-grid{
  padding: 120px 48px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.sections-grid::before{
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 134, 61, 0.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(196, 106, 47, 0.1), transparent 40%);
}
.sections-grid-inner{
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.sections-grid .section-eyebrow{ color: var(--gold-light); }
.sections-grid .section-title{ color: var(--bg); }
.sections-grid .section-title em{ color: var(--gold-light); }

.section-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.section-card{
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  text-decoration: none;
  color: var(--bg);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.section-card::before{
  content:'';
  position: absolute;
  top:0; left:0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s;
}
.section-card:hover{
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}
.section-card:hover::before{ width: 100%; }

.section-card-num{
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 2px;
}
.section-card-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
}
.section-card-desc{
  font-size: 14px;
  color: rgba(250, 246, 239, 0.7);
  line-height: 1.6;
  margin-top: 8px;
}
.section-card-arrow{
  margin-top: auto;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.section-card:hover .section-card-arrow{ gap: 16px; }

/* --- CTA band finale --- */
.cta-band{
  padding: 120px 48px;
  text-align: center;
  background:
    linear-gradient(rgba(250, 246, 239, 0.92), rgba(250, 246, 239, 0.92)),
    radial-gradient(circle at 50% 50%, var(--gold-light), var(--bg));
}
.cta-band h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band h2 em{ color: var(--gold); font-style: italic; }
.cta-band p{
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-band-btns{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .section-pad, .sections-grid, .cta-band, .quote-band{
    padding: 80px 20px;
  }
  .section-header{
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }
  .pillars{ grid-template-columns: 1fr; }
  .section-cards{ grid-template-columns: 1fr; gap: 16px; }
  .section-card{ padding: 32px 24px; }
  .section-card-title{ font-size: 28px; }
  .quote-band blockquote::before{ left: 0; top: -40px; font-size: 80px; }
}
