/**
 * JaxBeachTech — Hero / Front Page
 */

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem var(--space-lg);
  position: relative;
  min-height: 60vh;
}

/* Large decorative background word */
.hero__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,146,42,.1);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.03em;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__kicker {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  opacity: 0;
  animation: fadeUp .8s .4s ease forwards;
}

.hero__kicker::before,
.hero__kicker::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .9s .55s ease forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold2));
  margin: 0 auto 1.8rem;
  opacity: 0;
  animation: fadeUp .7s .7s ease forwards;
}

.hero__text {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp .9s .8s ease forwards;
}

/* ── CTA button ── */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,146,42,.4);
  padding: .9rem 2rem;
  border-bottom: 1px solid rgba(184,146,42,.4);
  transition: all .3s var(--ease);
  opacity: 0;
  animation: fadeUp .8s 1.0s ease forwards;
}

.hero__cta:hover {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}
