/* ============================================================
   HERO — Cinematic full-viewport section
   ============================================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 50px;
  background: var(--color-charcoal-deep);
}

/* ── Background layers ── */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* Atmospheric light orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: floatOrb 90s ease-in-out infinite;
  will-change: transform;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.04) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation: floatOrb 120s ease-in-out infinite reverse;
  will-change: transform;
}

/* ── Inner layout ── */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-10);
  padding-block: var(--space-8);
  min-height: calc(92vh - var(--nav-height));
}

/* ── Left: Content ── */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__label {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
}

.hero__name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-cream);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-champagne-light);
  line-height: var(--leading-snug);
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-cream-muted);
  line-height: var(--leading-relaxed);
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ── Right: Photo ── */
.hero__photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cinematic bloom behind photo */
.hero__bloom {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 70% 80% at 50% 50%,
    rgba(200, 169, 110, 0.14) 0%,
    rgba(200, 169, 110, 0.04) 40%,
    transparent 70%
  );
  filter: blur(30px);
  border-radius: 50%;
  pointer-events: none;
}

.hero__photo-wrap .photo-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(200, 169, 110, 0.25);
  box-shadow:
    0 0 60px rgba(200, 169, 110, 0.12),
    0 20px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

/* When a real <img> is inside the photo-wrap */
.hero__photo-wrap img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(200, 169, 110, 0.25);
  box-shadow:
    0 0 60px rgba(200, 169, 110, 0.12),
    0 20px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  display: block;
}

/* ── Photo placeholder inner ── */
.photo-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--color-cream-muted);
  font-size: var(--text-sm);
  font-family: var(--font-sans);
  opacity: 0.6;
}

.photo-placeholder__inner svg {
  width: 64px;
  height: 64px;
}

/* ── Scroll indicator ── */
.hero__scroll {
  position: absolute;
  bottom: calc(var(--space-12) + 60px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream-faint);
}

.hero__scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-champagne), transparent);
  animation: scrollLine 2.4s ease-in-out 2s infinite;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
    padding-block: var(--space-8);
    min-height: unset;
  }

  .hero__content {
    align-items: center;
    order: 2;
  }

  .hero__photo-wrap {
    order: 1;
  }

  .hero__sub {
    max-width: 480px;
    margin-inline: auto;
  }

  .hero__name {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero__inner {
    padding-block: var(--space-6);
  }

  .hero__photo-wrap .photo-placeholder,
  .hero__photo-wrap img {
    max-width: 180px;
    max-height: 42vh;
    object-fit: cover;
    object-position: top center;
  }

  .hero__scroll {
    bottom: calc(var(--space-6) + 60px);
  }
}
