* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #263238;
  background: #f6f2ea;
  line-height: 1.65;
}

.hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background:
    linear-gradient(rgba(52, 35, 24, 0.62), rgba(52, 35, 24, 0.62)),
    radial-gradient(circle at top left, #d8bfa5, #6d7f72);
  color: #fff;
  text-align: center;
}

.hero-box {
  max-width: 860px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.65);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.05;
}

.subtitle {
  max-width: 680px;
  margin: 24px auto 34px;
  font-size: 1.25rem;
  color: #fff7ed;
}

.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  background: #fff;
  color: #4c392d;
  text-decoration: none;
  font-weight: bold;
}

main {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 52px 0;
}

.notice,
.intro,
.card,
.highlight,
.quote-section,
.sources {
  background: #fffaf2;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(74, 58, 45, 0.10);
}

.notice {
  padding: 24px 28px;
  margin-bottom: 28px;
  border-left: 7px solid #8aa083;
}

.notice h2,
.intro h2,
.card h2,
.highlight h2,
.quote-section h2,
.sources h2 {
  margin-top: 0;
  color: #4c392d;
}

.intro {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  padding: 32px;
  margin-bottom: 28px;
}

.profile-card {
  padding: 24px;
  border-radius: 18px;
  background: #efe5d6;
}

.profile-card h3 {
  margin-top: 0;
  color: #4c392d;
}

.profile-card ul {
  padding-left: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.card {
  padding: 28px;
}

.number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #8aa083;
  color: white;
  font-weight: bold;
  margin-bottom: 12px;
}

.highlight,
.quote-section,
.sources {
  padding: 32px;
  margin-bottom: 28px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #efe5d6;
  color: #4c392d;
  font-weight: bold;
}

.quote-section p {
  font-size: 1.18rem;
  margin-bottom: 0;
}

.sources a {
  color: #546f52;
}

footer {
  padding: 30px 20px;
  text-align: center;
  color: #66584d;
  background: #e7ddcf;
}

@media (max-width: 820px) {
  .intro,
  .cards {
    grid-template-columns: 1fr;
  }
}
