.hero {
  min-height: 720px;
  background:
    linear-gradient(
      90deg,
      rgba(42, 24, 12, 0.82) 0%,
      rgba(42, 24, 12, 0.62) 42%,
      rgba(42, 24, 12, 0.18) 100%
    ),
    url("../img/town_2.webp") center / cover no-repeat;
  color: #fff7e8;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  margin-left: 64px;
  padding: 42px;
  background: rgba(39, 22, 11, 0.36);
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(3px);
}

.hero-tagline {
  font-size: clamp(1.35rem, 2.4vw, 3.4rem);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  color: #f0c77b;
  margin-bottom: 22px;
  text-align: center;
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #f8ead2;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.btn-primary {
  background: #d6a85d;
  color: #241207;
}

.btn-secondary {
  border: 1px solid rgba(255, 247, 232, 0.65);
  color: #fff7e8;
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 768px) {
.hero {
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(42,24,12,.20),
            rgba(42,24,12,.20)
        ),
        url("../img/town_2.webp") center center / cover no-repeat;
    align-items: flex-start;
    padding-top: 70px;
}

.hero-content {
    max-width: 100%;
    margin: 25px 20px 50px;
    padding: 28px 24px;
    text-align: center;
    background: rgba(39,22,11,.45);
    backdrop-filter: blur(2px);
}

.hero-tagline {
    font-size: 1.7rem;
    margin-bottom: 26px;
    line-height: 1.35;
}

.hero p {
    max-width: none;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
    text-align: center;
}

.hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.hero-actions .btn {
    width: 220px;
    justify-content: center;
}
}
