/* ============================================================
   HERO.CSS — Full-screen hero section
   To change the background photo, update images/hero.jpg
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero.jpg') center 40% / cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(26,28,32,0.82) 0%, rgba(26,28,32,0.45) 60%, rgba(26,28,32,0.2) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 0 5vw;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400; line-height: 1.04;
  color: var(--white); margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.75); }

.hero-sub {
  font-size: 0.92rem; line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 460px; margin-bottom: 2.6rem;
  font-weight: 300;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
