/* ═══════════════════════════════════════════════════════════════
   OZ AGENCY — HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.15) 25%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.92) 70%, rgba(10,10,10,0.98) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.95) 100%),
    url('../Assets/hero-bg.webp') left center / cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(181, 114, 75, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 114, 75, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  margin-left: auto;
  margin-right: 5%;
  max-width: 600px;
  text-align: right;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 114, 75, 0.1);
  border: 1px solid rgba(181, 114, 75, 0.25);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--copper-light);
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 .line2 {
  display: block;
  color: var(--warm-gray);
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  margin-top: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  justify-content: flex-end;
}

.hero-stat h3 {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.hero-stat p {
  font-size: 13px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── FLOATING SHAPES (disabled) ──────────────────────────── */
.hero-float {
  display: none;
}
