:root {
  --ink: #16312f;
  --muted: #61726f;
  --line: #d8e5e1;
  --fresh: #0f8f82;
  --fresh-dark: #08675e;
  --sun: #f3c753;
  --mist: #eef8f5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 58, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(216, 229, 225, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark,
.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--fresh);
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--fresh-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  min-height: calc(100vh - 73px);
  padding: clamp(42px, 7vw, 95px) clamp(18px, 5vw, 70px) clamp(34px, 5vw, 68px);
  background:
    linear-gradient(120deg, rgba(238, 248, 245, 0.92), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, #ffffff 0%, #eef8f5 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--fresh-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--fresh);
}

.button.primary:hover {
  background: var(--fresh-dark);
}

.button.secondary {
  color: var(--fresh-dark);
  border-color: var(--line);
  background: var(--white);
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 5vw, 70px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section,
.about,
.contact {
  padding: clamp(52px, 7vw, 95px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--ink);
}

.service-card p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  background: var(--mist);
}

.about-copy {
  max-width: 780px;
  font-size: 1.05rem;
}

.about-copy ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-copy li {
  padding-left: 26px;
  position: relative;
}

.about-copy li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sun);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr minmax(280px, 560px);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfefd;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(15, 143, 130, 0.18);
  border-color: var(--fresh);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
}

@media (max-width: 900px) {
  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
