* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #1d3b2a;
  --green-700: #2f5c41;
  --green-500: #3e7a54;
  --green-200: #dbe9dd;
  --sand-100: #f7f4ed;
  --accent: #d7a84f;
  --text: #1b1f1d;
  --muted: #5f6b64;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--sand-100);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--green-900);
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--green-900);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--green-700);
  color: var(--white);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-200);
  color: var(--green-900);
  font-size: 0.85rem;
  font-weight: 600;
}

header {
  background: var(--white);
  border-bottom: 1px solid #e4e4e4;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green-900);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green-700);
}

.menu-toggle {
  background: transparent;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-weight: 600;
}

.menu-icon {
  width: 20px;
  height: 2px;
  background: var(--green-900);
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--green-900);
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 24px;
}

.mobile-menu a {
  color: var(--green-900);
  font-weight: 600;
}

.mobile-menu.open {
  display: flex;
}

.hero {
  background: var(--white);
  padding: 64px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.3rem;
  color: var(--green-900);
}

.hero p {
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card h3 {
  color: var(--green-900);
  font-size: 1.1rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  color: var(--green-700);
  font-weight: 700;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial cite {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.cta {
  background: var(--green-700);
  color: var(--white);
}

.cta .section-title,
.cta .section-subtitle {
  color: var(--white);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  background: var(--white);
  border-top: 1px solid #e4e4e4;
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.legal {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.detail-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 20px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookie-option input {
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spacer {
  height: 16px;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .info-grid,
  .services-grid,
  .testimonial-list,
  .detail-grid,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card,
  .service-card,
  .testimonial,
  .detail-card {
    flex: 1 1 280px;
  }

  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .cookie-actions,
  .cta-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
