img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  align-items: stretch;
  min-height: 520px;
}

.hero-text {
  padding: clamp(24px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(52px, 7.5vw, 94px);
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.hero-photo { min-height: 340px; }
.hero-photo img { aspect-ratio: 4 / 5; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 4 / 5; }
  .hero-photo img { aspect-ratio: auto; height: 100%; }
}

/* ---------------- Secciones ---------------- */
.about-section {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 64px);
  scroll-margin-top: 90px;
}

.about-section.alt {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head .eyebrow { margin: 0 0 0.6rem; }

.about-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.about-text {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 1.1rem;
}

.about-text:last-child { margin-bottom: 0; }

/* ---------------- About: foto + copy ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-grid img { aspect-ratio: 4 / 5; }

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------------- Trabajo: grid de fotos full-bleed ---------------- */
.project-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.6vw, 20px);
}

.project-photos .tall { aspect-ratio: 2 / 3; }

@media (max-width: 760px) {
  .project-photos { grid-template-columns: 1fr; }
}

.project-caption {
  margin-top: 20px;
  max-width: 60ch;
}

/* ---------------- Contacto ---------------- */
.contact-email {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--linea);
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.contact-email:hover { opacity: 0.7; }

@media (max-width: 640px) {
  .about-section { padding: 8vh 6vw; }
}
