/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 120px 24px 80px;

  background:
    linear-gradient(
    rgba(0,0,0,.70),
    rgba(0,0,0,.45)
    ),
    url("/assets/pince2.jpg");

  background-size: cover;
  background-position: center;

  color: white;

  overflow: hidden;
}


/* =========================
   CONTENT
========================= */

.hero-content {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;
  text-align: center;

  position: relative;
  z-index: 2;
}


/* =========================
   EYEBROW
========================= */

.hero-eyebrow {
  margin-bottom: 20px;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.75);
}


/* =========================
   TITLE
========================= */

.hero h1 {
  margin-bottom: 28px;

  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  font-weight: 700;

  letter-spacing: -0.03em;

  font-family: "Cormorant Garamond", serif;
}


/* =========================
   TEXT
========================= */

.hero-text {
  max-width: 620px;

  margin: 0 auto 42px;

  font-size: 1.15rem;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.88);
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;

  flex-wrap: wrap;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    line-height: 1.02;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}