* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #f3f0ea;
  color: #1f2a24;
  line-height: 1.65;
  letter-spacing: 0.1px;
}

h1,
h2,
h3,
.logo,
.nav-links a,
.btn,
.accordion-btn,
label {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.logo {
  text-decoration: none;
  color: #123524;
  font-size: 1.4rem;
  font-weight: 800;
}

.logo span {
  color: #4f7f52;
}

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

.nav-links a {
  text-decoration: none;
  color: #1f2a24;
  font-weight: 700;
}

.nav-links a:hover {
  color: #4f7f52;
}

.menu-toggle {
  display: none;
  border: none;
  background: #123524;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.2rem;
}

main {
  width: min(1180px, 92%);
  margin: auto;
}

.section-card {
  margin: 30px 0;
  padding: 52px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 45px rgba(18, 53, 36, 0.12);
  scroll-margin-top: 95px;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 38px;
  align-items: center;
  background: linear-gradient(135deg, #123524, #4f7f52);
  color: white;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #d6b36a;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.08rem;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.primary {
  background: #d6b36a;
  color: #123524;
}

.secondary {
  background: white;
  color: #123524;
}

.hero-panel {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.promise-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.promise-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  line-height: 1.5;
}

.promise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #d6b36a;
  font-weight: 900;
}

.section-heading {
  margin-bottom: 24px;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  border: none;
  border-radius: 16px;
  background: #edf4ec;
  color: #123524;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.accordion-btn::after {
  content: '+';
  float: right;
  font-size: 1.4rem;
}

.accordion-btn.active::after {
  content: '−';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  border-radius: 0 0 16px 16px;
  background: #fafafa;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-content.open {
  max-height: 500px;
  padding: 18px 20px;
}

.accordion-content ul {
  margin: 10px 0 12px 0;
  padding-left: 1.4em;
  display: grid;
  gap: 6px;
}

.accordion-content ul li {
  color: #2a4a3e;
  font-size: 0.96rem;
  line-height: 1.5;
}

.service-note {
  font-size: 0.9rem;
  color: #4a7a5e;
  font-style: italic;
  margin-top: 4px;
}

.form-box {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d5d5d5;
  border-radius: 13px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(214, 179, 106, 0.45);
  border-color: #d6b36a;
}

.small-text {
  color: #68736d;
}

.reviews-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.review-card {
  padding: 18px;
  border-radius: 16px;
  background: #edf4ec;
  animation: popIn 0.35s ease;
}

.review-card strong {
  color: #123524;
}

.review-stars {
  color: #a1741b;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-grid div {
  padding: 20px;
  border-radius: 18px;
  background: #edf4ec;
}

.contact-note {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #123524;
  color: #f3f0ea;
  font-weight: 600;
  text-align: center;
}

footer {
  text-align: center;
  padding: 28px;
  color: #68736d;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes popIn {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 20px 8%;
    background: white;
  }

  .nav-links.show {
    display: flex;
  }

  .hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-card {
    padding: 28px;
    border-radius: 20px;
  }
}
