/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 85vh;
  background-color: var(--color-navy);
  background-image: url('/static/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--logo-bar-h) + var(--nav-height) + 5rem);
  text-align: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 42, 58, 0.82) 0%,
    rgba(30, 42, 58, 0.70) 60%,
    rgba(30, 42, 58, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  padding: 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---- Newsletter inline form in hero ---- */
.hero__newsletter {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.hero__newsletter input[type="email"] {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.95);
  color: var(--color-text);
  outline: none;
  min-width: 0;
}

.hero__newsletter input[type="email"]::placeholder {
  color: #999;
}

.hero__newsletter button {
  padding: 0.75rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.hero__newsletter button:hover {
  background: var(--color-gold-light);
}

.hero__newsletter-confirm {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  min-height: 1.2rem;
}

/* ---- Featured boxes ---- */
.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 4rem;
}

.hero__feature-box {
  background: rgba(21, 31, 45, 0.92);
  border-top: 3px solid var(--color-gold);
  padding: 2rem 2.5rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}

.hero__feature-box:hover {
  background: rgba(197, 164, 78, 0.15);
}

.hero__feature-box + .hero__feature-box {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.hero__feature-icon {
  font-size: 1.75rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.hero__feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.hero__feature-text p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.hero__feature-arrow {
  margin-left: auto;
  color: var(--color-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--logo-bar-h) + var(--nav-height) + 3rem);
  }

  .hero__features {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .hero__feature-box + .hero__feature-box {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .hero__newsletter {
    flex-direction: column;
    max-width: 100%;
  }

  .hero__newsletter button {
    padding: 0.75rem;
  }
}
