/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1400px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&q=80&w=2069') center / cover no-repeat;
  transform: translateY(calc(var(--hero-offset) * 0.24px)) scale(1.12);
  filter: brightness(0.2) saturate(0.54);
  will-change: transform;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 32%), linear-gradient(180deg, rgba(6, 6, 6, 0.08), transparent 30%, rgba(0, 0, 0, 0.82));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0.22) 0%, rgba(6, 6, 6, 0.08) 42%, rgba(6, 6, 6, 0.9) 100%);
}

.hero-side-bar {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.hero-side-text {
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-side-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  animation: heroFade 1.6s cubic-bezier(0.4, 0, 0.2, 1) both;
  transform-style: preserve-3d;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-logo-img {
  height: 92px;
  width: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.45));
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 300;
  letter-spacing: 18px;
  color: #ffffff;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-title .accent {
  color: #ff3b3b;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text);
  letter-spacing: 3px;
  margin-bottom: 44px;
}

.hero-cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-row a,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 46px;
  padding: 14px 32px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px) translateZ(0);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-2px) translateZ(0);
}

.hero-cta-row a.waze::before,
.hero-cta-row a.google::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-cta-row a.waze::before {
  content: '';
  background-image: url("../images/waze.png");
}

.hero-cta-row a.google::before {
  content: '📍';
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

