* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2f2a24;
  background: #f7f4ef;
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background: #ffffff;
  border-bottom: 1px solid #ddd6cc;
  position: sticky;
  top: 0;
}

.logo h1 {
  margin: 0;
  font-size: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.logo p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6f665b;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #2f2a24;
  font-weight: bold;
}

nav a:hover {
  color: #7a5c3e;
}

.hero {
  padding: 110px 8%;
  background: linear-gradient(135deg, #efe7dc, #d9c7b3);
}

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

.tagline {
  font-weight: bold;
  color: #6f4e37;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.hero h2 {
  font-size: 56px;
  line-height: 1.1;
  margin: 20px 0;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 24px;
  background: #2f2a24;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.button:hover {
  background: #4a3f35;
}

.section {
  padding: 80px 8%;
}

.section h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 700px;
  font-size: 18px;
  margin-bottom: 36px;
}

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

.card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  color: #3b3028;
}

.about {
  background: #ffffff;
}

.contact {
  background: #2f2a24;
  color: white;
}

footer {
  text-align: center;
  padding: 24px;
  background: #1f1b17;
  color: white;
  font-size: 14px;
}

.contact a {
  color: white;
  font-weight: bold;
}

.contact a:hover {
  color: #d9c7b3;
}

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 16px;
  }

  nav a {
    display: inline-block;
    margin: 0 16px 8px 0;
  }

  .hero h2 {
    font-size: 40px;
  }

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