/* ─── Page hero ─── */
.page-hero {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-script {
  font-family: "Allura", cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 1.2rem;
}
.hero-lead-secondary {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { position: relative; }
.hero-photo {
  width: 100%;
  height: min(680px, 80vw);
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50% 50% var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* ─── Stats strip ─── */
.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 2.8rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 0 3rem; border-right: 1px solid var(--line); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.stat-desc { font-size: 0.82rem; color: var(--muted); }

/* ─── Bio ─── */
.bio-section { padding: 6rem 0; }
.bio-inner {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 6rem;
  align-items: start;
}
.bio-sticky { position: sticky; top: 7rem; }
.bio-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--accent-light);
}
.bio-divider { width: 48px; height: 2px; background: var(--accent); margin: 1.5rem 0; }
.bio-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
}
.bio-text p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.bio-text p:last-child { margin-bottom: 0; }

/* ─── Formazione — dark ─── */
.formazione-section { background: var(--dark); padding: 7rem 0; position: relative; overflow: hidden; }
.formazione-section::before {
  content: ""; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, oklch(66% 0.09 28 / 0.07) 0%, transparent 70%);
  bottom: -200px; left: -150px; pointer-events: none;
}
.formazione-section::after {
  content: ""; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, oklch(66% 0.09 28 / 0.06) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.formazione-header { margin-bottom: 4rem; position: relative; }
.formazione-kicker { color: var(--accent-light); margin-bottom: 0.6rem; }
.formazione-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500; line-height: 1.02;
  color: #fff; margin-bottom: 1rem;
}
.formazione-intro { font-size: 1rem; color: oklch(68% 0.01 45); max-width: 58ch; line-height: 1.7; }

.formazione-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5px; background: var(--line-dark);
  border-radius: var(--r-lg); overflow: hidden;
  position: relative;
}
.formazione-card { background: var(--dark-2); padding: 2.4rem 2rem; position: relative; }
.formazione-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem; font-weight: 300;
  color: oklch(66% 0.09 28 / 0.2);
  line-height: 1; margin-bottom: 0.8rem;
}
.formazione-card-kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.7rem; }
.formazione-card h3 { font-family: "Cormorant Garamond", serif; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 500; line-height: 1.02; color: #fff; margin-bottom: 0.75rem; }
.formazione-card p { font-size: 0.9rem; color: oklch(68% 0.01 45); line-height: 1.65; }

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .page-hero { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0; }
  .hero-right { order: -1; }
  .hero-photo { height: 60vw; min-height: 280px; border-radius: 40% 40% var(--r-lg) var(--r-lg); }
  .bio-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bio-sticky { position: static; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 1.6rem; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .formazione-grid { grid-template-columns: 1fr; }
  .formazione-section { padding: 4.5rem 0; }
  .bio-section { padding: 4rem 0; }
}
@media (max-width: 640px) {
  .page-hero { padding: 1.75rem 0 3rem; gap: 2rem; }
  .hero-photo { height: 68vw; min-height: 260px; border-radius: 38% 38% 22px 22px; }
  .hero-h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    letter-spacing: 0;
  }
  .hero-lead,
  .hero-lead-secondary { font-size: 0.98rem; }
  .hero-actions { width: 100%; gap: 0.75rem; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .formazione-header { margin-bottom: 2.4rem; }
  .formazione-card { padding: 1.8rem 1.4rem; }
  .formazione-n { font-size: 3.6rem; }
  .bio-big { font-size: 3.2rem; }
  .stats-strip { padding: 2.2rem 0; }
  .bio-section { padding: 3.5rem 0; }
  .formazione-title { overflow-wrap: anywhere; }
}

@media (max-width: 420px) {
  .hero-photo { min-height: 240px; }
  .stat-value { font-size: 2.6rem; }
}
