/* ─── HERO ─── */
.hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0e0c0a 0%, #080808 60%, #0a0d0f 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 15%; right: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.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(4rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s ease .4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-bio {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp .8s ease .6s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .8s ease .9s forwards;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--muted));
}

/* ─── GALLERY CTA ─── */
.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

.gallery-cta-link {
  display: inline-flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero { padding: 0 28px 64px; }
}
@media (max-width: 600px) {
  .hero { padding: 0 20px 56px; }
}
