:root {
  --bg: #fffdf8;
  --ink: #1e293b;
  --muted: #667085;
  --brand: #0f766e;
  --brand-soft: #ccfbf1;
  --line: #d9eee8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f0fdfa 0%, var(--bg) 28%);
}

.hero,
.section {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 72px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.logo,
h1,
h2,
h3,
.stat {
  font-family: "Archivo", sans-serif;
}

.logo {
  font-weight: 800;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.lead {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-card,
.card,
.quote-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.08);
}

.hero-photo,
.service-photo {
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.hero-photo {
  min-height: 180px;
  margin-bottom: 18px;
  background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=80");
}

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

.section {
  padding: 28px 0 72px;
}

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

.card p,
.quote p,
.strip p {
  color: var(--muted);
}

.service-photo {
  min-height: 160px;
  margin-bottom: 16px;
}

.service-photo-one {
  background-image: url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1200&q=80");
}

.service-photo-two {
  background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1200&q=80");
}

.service-photo-three {
  background-image: url("https://images.unsplash.com/photo-1584622781564-1d987f7333c1?auto=format&fit=crop&w=1200&q=80");
}

.service-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
  padding: 28px;
  border-radius: 24px;
  background: var(--brand-soft);
}

.stat {
  margin: 0;
  font-size: 2rem;
}

.quote {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.quote-box a {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 760px) {
  .hero-content,
  .quote,
  .strip {
    grid-template-columns: 1fr;
  }

  nav {
    margin-bottom: 40px;
  }
}
