.hero {
  min-height: 100vh;
  background-color: var(--color-navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* CSS noise texture overlay — no external image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Photo column */
.hero__image-col {
  position: relative;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 50%, var(--color-navy) 100%),
    linear-gradient(to top,   var(--color-navy) 0%, transparent 15%),
    linear-gradient(to bottom, var(--color-navy) 0%, transparent 12%);
}

/* Copy column */
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 40px;
  gap: 0;
}

.hero__eyebrow {
  margin-bottom: 28px;
}

.hero__headline {
  font-size: var(--text-7xl);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-cream);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__subheadline {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--color-cream-muted);
  margin-bottom: 44px;
  max-width: 440px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero__scroll-hint {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream-muted);
  opacity: 0.5;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__headline {
    font-size: var(--text-5xl);
  }

  .hero__copy {
    padding: 120px 32px 80px 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero__copy {
    order: 1;
    padding: 100px 24px 48px;
  }

  .hero__image-col {
    order: 2;
    height: 380px;
  }

  .hero__image-overlay {
    background: linear-gradient(to top, var(--color-navy) 0%, transparent 40%);
  }

  .hero__headline {
    font-size: var(--text-4xl);
  }

  .hero__subheadline {
    font-size: var(--text-base);
  }
}
