/* ═══════════════════════════════════════
   PAGES.CSS — Hero & page-specific styles
   ═══════════════════════════════════════ */

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  animation: hGlow 15s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hGlow {
  from { transform: translate(0,0) scale(1); opacity: 1; }
  to   { transform: translate(-3%,5%) scale(1.08); opacity: .7; }
}

.hero-c { position: relative; z-index: 1; padding-left: clamp(20px,4vw,48px); }
.hero-lb { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.hero-lb::before { content: ''; width: 48px; height: 1px; background: var(--gold); }
.hero-sub {
  font-family: var(--fd);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-m);
  margin: 12px 0 24px;
}
.hero-d {
  font-size: .92rem;
  font-weight: 300;
  color: var(--text-m);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-a { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-st { display: flex; gap: 56px; }

.stn {
  font-family: var(--fd);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stl {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-d);
  margin-top: 6px;
}

.hero-iw {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px,4vw,48px);
}
.hero-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
