#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 40%, rgba(201,162,39,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 5% 80%, rgba(36,54,113,0.5) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,162,39,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* ── Left: text ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.28);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-eyebrow span:last-child {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: hero-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,162,39,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(201,162,39,0); }
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,0.62);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 52ch;
}

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.cred-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Right: photo ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4 ;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 3px solid rgba(201,162,39,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,162,39,0.1);
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 1rem;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  max-width: 200px;
}

.hero-photo-badge svg { flex-shrink: 0; margin-top: 2px; }

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 380px;
}

.hero-stat { text-align: center; flex: 1; }

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stat-lbl {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,162,39,0.2);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { max-width: 100%; }
  .hero-creds, .hero-btns { justify-content: center; }
  .hero-right { display: none; }
}
