.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 0 0 6%;
  background-image: url('../assets/images/heroimg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero-canvas {
  display: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-top: var(--nav-height);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  width: 50%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
  padding: 0;
}

.hero-visual {
  display: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.hero-eyebrow::after {
  display: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  text-align: left;
}

.hero-title .gold-line {
  display: block;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-subhead);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  text-align: left;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  justify-content: flex-start;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201, 168, 76, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 11px;
  position: relative;
}

.hero-scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(201, 168, 76, 0.5);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    align-items: flex-end;
    padding: 0 0 40px 0;
    background-attachment: scroll;
  }

  .hero-inner {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0;
  }

  .hero-content {
    width: 92%;
    max-width: 100%;
    text-align: center;
    padding: 28px 24px;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-cta,
  .hero-stats {
    justify-content: center;
  }
}
