/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 14, 0.5) 0%,
    rgba(10, 18, 14, 0.7) 60%,
    rgba(10, 18, 14, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin-bottom: var(--space-md);
  line-height: 0.95;
}

.hero__title-gold {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--gold);
  display: block;
  line-height: 0.95;
}

.hero__title-cream {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  color: var(--cream);
  display: block;
  line-height: 1.05;
  margin: 0.05em 0;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: var(--space-lg);
  max-width: 50ch;
  line-height: 1.7;
}

.hero__cta {
  font-size: 0.95rem;
  padding: 18px 40px;
}

/* ========================================
   ADVANTAGES
   ======================================== */
.advantages {
  background: var(--green-deep);
  padding: var(--space-lg) 0 var(--space-2xl);
}

.advantages__title {
  text-align: left;
  margin-bottom: var(--space-md);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.advantages__title .heading-serif {
  font-size: 1.15em;
}

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.advantage-card {
  padding: var(--space-md);
}

.advantage-card__icon {
  margin-bottom: var(--space-xs);
}

.advantage-card__icon svg {
  width: 28px;
  height: 28px;
}

.advantage-card__title {
  font-family: var(--font-display-sans);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 4px;
}

.advantage-card__text {
  color: var(--cream);
  opacity: 0.75;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 35ch;
}
