* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f2eb;
  color: #2b241d;
}

header {
  background: linear-gradient(135deg, #2b241d, #4a3728);
  color: white;
  padding: 22px 8%;
}

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

.logo img {
  width: 260px;
  max-width: 70vw;
  height: auto;
  display: block;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
}

.btn {
  background: #c78b3b;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

.hero {
  text-align: center;
  padding: 75px 20px 65px;
}

.hero h1 {
  font-size: 46px;
  margin: 0 0 14px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 28px;
}

.services {
  text-align: center;
  padding: 60px 8%;
}

.services h2, .quote h2 {
  font-size: 34px;
  margin-bottom: 28px;
}

.cards {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  width: 280px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.card h3 {
  color: #8a5a24;
  margin-top: 0;
}

.quote {
  text-align: center;
  padding: 60px 8%;
  background: white;
}

.subtitle {
  color: #6b6258;
  margin-top: -15px;
  margin-bottom: 30px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
  margin: auto;
}

input, select, textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
}

textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

button {
  grid-column: 1 / -1;
  background: #2b241d;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  cursor: pointer;
}

button:hover, .btn:hover {
  opacity: 0.88;
}

.hidden {
  display: none;
}

.email-note {
  margin-top: 22px;
  color: #6b6258;
}

.email-note a {
  color: #8a5a24;
  font-weight: bold;
}

footer {
  background: #2b241d;
  color: white;
  text-align: center;
  padding: 24px;
}

.thank-you {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 30px;
}

.thank-you img {
  width: 320px;
  max-width: 85vw;
  background: white;
  padding: 10px 14px;
  border-radius: 14px;
}

.thank-you h1 {
  font-size: 46px;
  margin: 10px 0 0;
}

.thank-you p {
  font-size: 20px;
  margin: 0;
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
  }

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

  form {
    grid-template-columns: 1fr;
  }

  .logo img {
    width: 220px;
  }
}
