/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: var(--hero-height);
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax background */
.hero__bg {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  background-image: url('../images/home-page-image.jpeg');
  background-size: cover;
  background-position: center top;
  will-change: transform;
  transform: translateZ(0);
}

/* Dark gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.45) 40%,
    rgba(10, 10, 10, 0.2)  70%,
    rgba(10, 10, 10, 0.08) 100%
  );
}

/* Left social rail — desktop only */
.hero__social {
  position: absolute;
  left: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color 300ms var(--ease-luxury), transform 300ms var(--ease-luxury);
  line-height: 0;
}

.hero__social a:hover {
  color: var(--color-gold);
  transform: scale(1.15);
}

.hero__social svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Centered content */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--section-pad-x);
  max-width: 860px;
  width: 100%;
}

.hero__name {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 0.15em;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-gold) 50%, var(--color-beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold divider with diamond */
.hero__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-bottom: var(--space-4);
}

.hero__divider-line {
  flex: 1;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.65;
}

.hero__divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-beige);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.hero__subtagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--color-silver);
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: var(--space-6);
}

/* CTA button */
.hero__cta {
  display: inline-block;
  padding: 13px 44px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 300ms var(--ease-luxury), color 300ms var(--ease-luxury), transform 200ms var(--ease-luxury);
  margin-bottom: var(--space-6);
}

.hero__cta:hover {
  background: var(--color-gold);
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Location badges */
.hero__locations {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__locations span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__locations svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Bottom-center scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 300ms;
}

.hero__scroll-cue:hover {
  opacity: 1;
}

.hero__scroll-arrow {
  width: 26px;
  height: 26px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scroll-arrow 1.8s ease-in-out infinite;
}

.hero__scroll-arrow--2 {
  margin-top: -14px;
  animation-delay: 0.3s;
}

@keyframes scroll-arrow {
  0%   { opacity: 0.25; transform: translateY(-4px); }
  50%  { opacity: 1;    transform: translateY(4px); }
  100% { opacity: 0.25; transform: translateY(-4px); }
}

/* ══════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════ */
.hero__social-mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero__social {
    display: none;
  }

  .hero__social-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 2rem;
  }

  .hero__social-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 300ms var(--ease-luxury), transform 300ms var(--ease-luxury);
    line-height: 0;
  }

  .hero__social-mobile a:hover {
    color: var(--color-gold);
    transform: scale(1.15);
  }

  .hero__social-mobile svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hero__content {
    padding: var(--space-6) var(--space-4);
  }

  .hero__locations {
    flex-direction: column;
    gap: var(--space-2);
  }
}
