@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Jost:wght@300;400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: linear-gradient(to bottom, #eef2e6 0%, #f5f0e8 60%, #faf8f3 100%);
  color: #3a3a2e;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  min-height: 100vh;
}

.intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #eef2e6 0%, #f5f0e8 100%);
  background-image: none;
  text-align: center;
  padding: 40px;
}

.intro-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: #4a6741;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.intro-content p {
  font-size: 1.15rem;
  color: #6b7a5e;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  background: #7a9e6e;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

button:hover {
  background: #5c7d52;
  transform: translateY(-2px);
}

.form-section {
  max-width: 680px;
  margin: 60px auto;
  padding: 44px;
  background: #faf8f3;
  border: 1px solid #d9d4c4;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(90,80,60,0.07);
}

.form-section h2 {
  font-family: 'DM Serif Display', serif;
  color: #4a6741;
  margin-bottom: 20px;
  font-size: 2rem;
}

label {
  display: block;
  margin: 16px 0 6px;
  color: #7a9e6e;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 11px 14px;
  background: #f5f2ea;
  border: 1px solid #cdc8b4;
  border-radius: 4px;
  color: #3a3a2e;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #7a9e6e;
}

textarea {
  height: 100px;
  resize: vertical;
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0;
}

input[type="range"] {
  flex: 1;
  accent-color: #7a9e6e;
}

.confirm-msg {
  margin-top: 24px;
  padding: 20px;
  background: #eef2e6;
  border: 1px solid #b5c4a1;
  border-radius: 6px;
  color: #4a6741;
  line-height: 1.8;
}


select {
  width: 100%;
  padding: 11px 14px;
  background: #f5f2ea;
  border: 1px solid #cdc8b4;
  border-radius: 4px;
  color: #3a3a2e;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: #7a9e6e;
}

.estimate-box {
  margin-top: 24px;
  padding: 20px;
  background: #eef2e6;
  border: 1px solid #7a9e6e;
  border-radius: 6px;
  color: #4a6741;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
}

.estimate-box small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #6b7a5e;
}