/* ============================================
   HOME PAGE — Hero & Sections
   ============================================ */

/* ---- Hero ---- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero-slide-bg.active { opacity: 1; }

.hero-slide-bg:nth-child(1) { background-image: url('../images/slide1.jpg'); }
.hero-slide-bg:nth-child(2) { background-image: url('../images/slide2.jpg'); }
.hero-slide-bg:nth-child(3) { background-image: url('../images/slide3.jpg'); }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-arch-line {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 100px 32px 32px;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  position: relative;
}

.hero-title {
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 1px;
  margin: 0 0 16px 0;
  color: #fff;
  position: relative;
  z-index: 5;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: titleReveal 0.7s ease forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.16s; }
.hero-title span:nth-child(3) { animation-delay: 0.22s; }
.hero-title span:nth-child(4) { animation-delay: 0.28s; }
.hero-title span:nth-child(5) { animation-delay: 0.34s; }
.hero-title span:nth-child(6) { animation-delay: 0.40s; }
.hero-title span:nth-child(7) { animation-delay: 0.46s; }
.hero-title span:nth-child(8) { animation-delay: 0.52s; }
.hero-title span:nth-child(9) { animation-delay: 0.58s; }
.hero-title span:nth-child(10) { animation-delay: 0.64s; }
.hero-title span:nth-child(11) { animation-delay: 0.70s; }
.hero-title span:nth-child(12) { animation-delay: 0.76s; }
.hero-title span:nth-child(13) { animation-delay: 0.82s; }

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
  line-height: 1.6;
  margin: 0 0 28px 0;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.8s forwards;
}

#heroCta {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.95s forwards;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.hero-dots {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 36px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: #B8956A;
  width: 24px;
  border-radius: 4px;
}

.hero-slide-info {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}

/* ---- Intro Section ---- */
.intro {
  padding: 100px 32px;
  background: #0a0a0a;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-text { padding-right: 24px; }

.intro-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

/* ---- Stats Section ---- */
.stats {
  padding: 80px 32px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #B8956A;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 100px 32px;
  background: #0a0a0a;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-content { padding: 90px 20px 24px; }
  .hero-title { font-size: clamp(32px, 12vw, 52px); }
  .intro-inner { grid-template-columns: 1fr; }
  .intro-text { padding-right: 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
