* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #2d261f;
  background: #f8f2e8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: rgba(248, 242, 232, 0.95);
  border-bottom: 1px solid #e3d6c4;
}

.brand {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: bold;
}

nav a {
  color: #2d261f;
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 8%;
  background:
    linear-gradient(rgba(45, 38, 31, 0.28), rgba(45, 38, 31, 0.28)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}

.hero-card {
  max-width: 680px;
  padding: 48px;
  background: rgba(255, 251, 245, 0.88);
  border: 1px solid rgba(211, 188, 154, 0.7);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9b7b4f;
  font-size: 13px;
  font-family: Arial, sans-serif;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  margin: 12px 0;
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin: 0 0 15px;
}

h3 {
  font-size: 28px;
  margin-top: 0;
}

.subtext, p {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  font-size: 17px;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

input, textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d1bea5;
  background: #fffaf3;
  font-size: 16px;
}

.search-box button, form button {
  padding: 16px 24px;
  border: none;
  background: #2d261f;
  color: white;
  font-size: 15px;
  cursor: pointer;
}

.section {
  padding: 90px 8%;
  text-align: center;
}

.intro {
  background: #fffaf3;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 8% 90px;
  background: #fffaf3;
}

.card {
  background: #f8f2e8;
  padding: 36px;
  border: 1px solid #dfcfb9;
  min-height: 230px;
}

.about {
  text-align: left;
  background: #efe2cf;
}

.about div {
  max-width: 820px;
}

.contact form {
  max-width: 620px;
  margin: 30px auto 0;
  display: grid;
  gap: 14px;
}

textarea {
  min-height: 130px;
}

footer {
  padding: 30px 8%;
  text-align: center;
  background: #2d261f;
  color: white;
}

@media (max-width: 800px) {
  .site-header {
    display: block;
  }

  nav {
    margin-top: 16px;
  }

  nav a {
    display: inline-block;
    margin: 0 12px 10px 0;
  }

  .hero-card {
    padding: 30px;
  }

  .search-box {
    display: block;
  }

  .search-box button {
    width: 100%;
    margin-top: 10px;
  }

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