/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 15%;
  z-index: 0;
  animation: heroImageScale 30s ease-in-out infinite alternate;
}
@keyframes heroImageScale {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(0,83,76,0.82) 0%,
      rgba(0,83,76,0.45) 35%,
      rgba(0,83,76,0.18) 65%,
      rgba(0,60,55,0.10) 100%
    ),
    linear-gradient(
      160deg,
      rgba(185,220,210,0.12) 0%,
      transparent 50%,
      rgba(111,162,135,0.08) 100%
    );
}

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

.hero-arc {
  position: absolute; z-index: 2;
  border-radius: 50%;
  border: 1px solid rgba(247,243,238,0.07);
  pointer-events: none;
}
.hero-arc-1 { width: 700px; height: 700px; top: -200px; right: -200px; }
.hero-arc-2 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-arc-3 { width: 300px; height: 300px; top: 0; right: 0; }

.hero-content {
  position: relative; z-index: 3;
  padding: 140px 60px 100px;
  max-width: 800px;
}
.hero-tag {
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 0.85rem; font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(247,243,238,0.6);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.btn-primary {
  display: inline-block;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 40px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  color: rgba(247,243,238,0.7);
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost .arrow {
  width: 32px; height: 1px; background: currentColor;
  position: relative; transition: width 0.3s;
}
.btn-ghost:hover .arrow { width: 48px; }

/* scroll indicator */
.hero-scroll {
  position: absolute; right: 60px; bottom: 80px;
  z-index: 3;
  writing-mode: vertical-lr;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(247,243,238,0.35);
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(111,162,135,0.6), transparent);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
