/* ─── HERO: riga principale (2/3 sinistra + 1/3 foto) ─── */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0e0c0a 0%, #080808 60%, #0a0d0f 100%);
}

/* ── Blocco sinistro 2/3 ── */
.hero-left {
  flex: 0 0 66.666%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px 48px 80px;
  position: relative;
  z-index: 1;
}

/* Riga 1: due colonne (titolo | bio) */
.hero-row-top {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex: 0 0 auto;
}

.hero-title-block {
  flex: 0 0 auto;
}

.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s ease .2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp .8s ease .4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-bio {
  flex: 1;
  font-size: 1.40rem;
  color: var(--text);
  line-height: 1.9;
  padding-top: 28px;
  padding-left: 24px;
  border-left: 1px solid var(--accent);
  opacity: 0;
  animation: fadeUp .8s ease .5s forwards;
}

/* Riga 2: citazione intera */
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  padding-left: 24px;
  border-left: 1px solid var(--accent);
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp .8s ease .6s forwards;
}

/* ── Foto destra 1/3 ── */
.hero-portrait {
  flex: 0 0 33.333%;
  position: relative;
  overflow: hidden;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) saturate(0.75);
}
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
  z-index: 1;
}

/* ─── GALLERY CTA ─── */
.gallery-cta {
  text-align: center;
  margin-top: 48px;
}
.gallery-cta-link {
  display: inline-flex;
  gap: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-left { padding: 130px 28px 64px; }
  .hero-row-top { flex-direction: column; gap: 20px; }
  .hero-bio { padding-top: 0; }
  .hero-portrait { flex: 0 0 30%; }
}

@media (max-width: 600px) {
  .hero { flex-direction: column-reverse; }
  .hero-left { flex: 1; padding: 32px 20px 56px; }
  .hero-portrait { flex: 0 0 auto; height: 70vw; }
  .hero-portrait::before {
    background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
  }
}
