/* =========================
   HERO
========================= */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero .container {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 480px;
  min-width: 0;
}

.hero-title {
  font-family: "Noto Serif", serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #322214;
}

.hero-title span {
  display: block;
  font-weight: 300;
  font-style: italic;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #5e5e5f;
}

.btn {
  background: #322214;
  color: #ffffff;
  padding: 16px 24px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
  max-width: 100%;
}

.line {
  width: 0;
  height: 2px;
  background: #ffb956;
  transition: 0.3s;
}

.btn:hover .line {
  width: 24px;
}

.hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: grayscale(100%) contrast(1.1);
}

.hero-img:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.hero-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffffff;
  padding: 20px;
  max-width: calc(100% - 16px);
  z-index: 2;
}

.years {
  margin: 0;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #80756d;
}

.subtitle {
  margin: 8px 0 0;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  color: #322214;
  font-style: italic;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-grid {
    gap: 36px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    display: block;
    padding: 110px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero-text-overlay {
    display: block;
    left: 0;
    bottom: 0;
    padding: 16px 18px;
    max-width: 220px;
  }

  .years {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .subtitle {
    font-size: 20px;
    line-height: 1.1;
    margin-top: 6px;
  }
}