* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #11100f;
  color: #f2e7d8;
}

.hero {
  min-height: 500px;
  background:
    linear-gradient(rgba(20, 17, 14, 0.45), rgba(20, 17, 14, 0.72)),
    url("../images/hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  padding: 60px 24px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: #d7b890;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.1;
  color: #fff8ef;
}

.intro {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.6;
  color: #f1e4d2;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary {
  background: #8a5a36;
  color: #ffffff;
}

.btn-primary:hover {
  background: #9a6840;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.weather-panel {
  background: #1c1815;
  border: 1px solid #352b24;
  border-radius: 16px;
  padding: 24px;
}

.weather-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.weather-header h2 {
  margin: 0 0 4px;
  color: #fff8ef;
}

.weather-location {
  margin: 0;
  color: #c9b097;
  font-size: 14px;
}

.weather-status {
  color: #d8c3ab;
  font-size: 15px;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.weather-card {
  background: #2a241f;
  border-radius: 12px;
  padding: 16px;
}

.weather-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bfa489;
  margin-bottom: 8px;
}

.weather-value {
  font-size: 28px;
  line-height: 1.2;
  color: #ffffff;
}

.weather-sub {
  margin-top: 8px;
  color: #eadbc9;
  font-size: 15px;
}

.weather-note {
  margin: 16px 0 0;
  color: #bfa489;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 38px;
  }

  .weather-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 400px;
  }

  .hero-overlay {
    padding: 44px 18px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .intro {
    font-size: 17px;
  }

  .weather-grid {
    grid-template-columns: 1fr;
  }
}