:root {
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #17352d;
  --muted: #5f746d;
  --accent: #138365;
  --accent-dark: #0f664f;
  --accent-soft: #dff3eb;
  --line: rgba(23, 53, 45, 0.1);
  --shadow: 0 24px 70px rgba(23, 53, 45, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(19, 131, 101, 0.16), transparent 32%),
    linear-gradient(180deg, #f7f4ec 0%, #f1ede5 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
.section {
  padding: 32px 20px;
}

.nav,
.hero-content,
.section {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 30px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
  min-height: calc(100vh - 140px);
}

.hero-copy,
.hero-card,
.service-card,
.price-card,
.review-card,
.contact-card,
.contact-form,
.image-stack img {
  min-width: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.service-card,
.review-card,
.contact-card,
.contact-form {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-radius: 30px;
}

.hero-copy {
  padding: clamp(24px, 4vw, 42px);
}

.hero-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(19, 131, 101, 0.12);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.8vw, 5.6rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.lead,
.intro-text p,
.service-card p,
.review-card p,
.contact-card p,
.pricing-note,
.hero-card p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 500;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-facts {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.hero-facts div {
  position: relative;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 53, 45, 0.08);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  font-weight: 700;
}

.section {
  padding-top: 72px;
  padding-bottom: 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.image-stack img {
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.services-grid,
.pricing-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.review-card,
.contact-card,
.contact-form {
  padding: 28px;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.price-card {
  padding: 24px;
  background: var(--surface-strong);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card span {
  color: var(--muted);
}

.price-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.pricing-note {
  margin-top: 18px;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
  margin-bottom: 14px;
  color: #eb9b00;
  letter-spacing: 0.12em;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a {
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

.form-status {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 500;
}

.form-status.is-success {
  background: #e4f7ef;
  border-color: rgba(19, 131, 101, 0.22);
  color: var(--accent-dark);
}

.form-status.is-error {
  background: #fff0ed;
  border-color: rgba(177, 74, 42, 0.18);
  color: #9c3d21;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
  background: #fff;
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .intro-grid,
  .contact-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 22px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .hero-copy,
  .hero-card,
  .service-card,
  .review-card,
  .contact-card,
  .contact-form {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .hero-actions,
  .trust-list {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img {
    min-height: 220px;
  }
}
