* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #241f21;
  background: #fff9f5;
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(36, 31, 33, 0.72), rgba(36, 31, 33, 0.72)),
    radial-gradient(circle at top left, #c68a64, #3c2f35);
  color: white;
  padding: 28px 7%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.92;
}

.hero-content {
  max-width: 850px;
  padding: 120px 0 60px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: bold;
  color: #d7a77d;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1;
  margin: 10px 0 22px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 720px;
}

.button {
  display: inline-block;
  margin-top: 24px;
  background: #d7a77d;
  color: #241f21;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 82px 7%;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: center;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 8px 0 22px;
}

h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.card,
.service-card,
.contact-box {
  background: white;
  border: 1px solid #ead8ca;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(61, 47, 53, 0.08);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.service-card {
  min-height: 205px;
}

.impact {
  background: #3c2f35;
  color: white;
}

.impact .section-label {
  color: #d7a77d;
}

.impact p {
  max-width: 900px;
  font-size: 1.12rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.stats div {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 24px;
}

.stats strong {
  display: block;
  font-size: 2rem;
  color: #d7a77d;
}

.stats span {
  display: block;
  margin-top: 4px;
}

.highlight {
  background: #f2dfd0;
}

.highlight li {
  margin-bottom: 10px;
}

.contact {
  text-align: center;
}

.contact p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-box {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: left;
}

footer {
  text-align: center;
  padding: 28px 7%;
  background: #241f21;
  color: white;
}

@media (max-width: 850px) {
  nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    padding-top: 80px;
  }

  .two-column,
  .grid,
  .stats {
    grid-template-columns: 1fr;
  }
}
