/* ============================================================
   SILVER KEY REALTY — HERO
   Full viewport, breathing circles, staggered fade-up
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 var(--padding-desktop);
}

/* ── BACKGROUND PANEL ── */
.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: var(--cream);
  z-index: 0;
  pointer-events: none;
}

/* ── PATHWAY PAGE HERO (shorter, softer bg) ── */
.hero.hero-pathway {
  min-height: var(--pathway-hero-height);
}

.hero-pathway .hero-bg {
  opacity: var(--pathway-hero-bg-opacity);
}

.hero-bg .hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-bg .hero-logo-watermark img {
  width: 360px;
  opacity: 0.06;
  filter: grayscale(40%);
}

/* ── BREATHING CIRCLES ── */
.hero-bg .breath-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--skr-green-glow) 0%, transparent 70%);
  animation: breathe var(--breath-duration) ease-in-out infinite;
}

.hero-bg .breath-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  top: 35%;
  left: 40%;
}

.hero-bg .breath-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 55%;
  left: 55%;
  animation-delay: -4s;
}

/* ── CONTENT ── */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-top: 120px;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--skr-green-light);
  opacity: 0;
  margin-bottom: var(--space-md);
  transform: translateY(30px);
  animation: fadeUp var(--duration-reveal) var(--ease-out) 0.3s forwards;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp var(--duration-reveal) var(--ease-out) 0.5s forwards;
}

.hero-sub {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 16px;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp var(--duration-reveal) var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp var(--duration-reveal) var(--ease-out) 0.9s forwards;
}
