/* -----------------------------------------------
   Animations
   ----------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* -----------------------------------------------
   Hero Section
   ----------------------------------------------- */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 2rem;
  margin-top: -70px;
  padding-top: 70px;
}

.hero__content {
  animation: fadeIn 1.5s ease forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.5s forwards;
}

/* -----------------------------------------------
   Scroll Indicator
   ----------------------------------------------- */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease infinite;
}

.hero__chevron {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* -----------------------------------------------
   Quote Section
   ----------------------------------------------- */
.quote {
  padding: 8rem 2rem;
  text-align: center;
}

.quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* -----------------------------------------------
   CTA Section
   ----------------------------------------------- */
.cta {
  padding: 6rem 2rem;
}

.cta__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

/* -----------------------------------------------
   Teaser Cards Grid
   ----------------------------------------------- */
.teasers {
  padding: 6rem 2rem;
}

.teasers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.teaser-card {
  display: block;
  background-color: #111;
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.teaser-card:hover {
  border-bottom-color: var(--gold);
  color: inherit;
}

.teaser-card__title {
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: 1rem;
}

.teaser-card__description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.teaser-card__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* -----------------------------------------------
   Mobile — max-width 768px
   ----------------------------------------------- */
@media (max-width: 768px) {
  .teasers__grid {
    grid-template-columns: 1fr;
  }
}
