:root {
  --ink: #19302f;
  --muted: #5d6b68;
  --paper: #fbf8f1;
  --panel: #ffffff;
  --teal: #146c68;
  --teal-dark: #0d4b49;
  --coral: #d8694f;
  --sage: #dce9dd;
  --line: #d9dfd8;
  --shadow: 0 24px 60px rgba(18, 48, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid rgba(217, 223, 216, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 800;
  color: var(--teal-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(40px, 7vw, 86px) clamp(20px, 5vw, 72px) 40px;
}

.hero__content {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero__text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 108, 104, 0.22);
}

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

.button--secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--teal-dark);
}

.hero__media {
  position: relative;
}

.hero__media::before {
  position: absolute;
  inset: auto 8% -20px -6%;
  height: 28%;
  content: "";
  background: var(--sage);
  border-radius: 999px;
  filter: blur(4px);
}

.hero__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 1717 / 916;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro {
  padding: 34px clamp(20px, 5vw, 72px) 70px;
}

.intro p {
  max-width: 940px;
  margin: 0 auto;
  color: var(--teal-dark);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
}

.section,
.split,
.quote,
.contact {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.section__header {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service {
  min-height: 260px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  background: #eef5ef;
  border-radius: 999px;
  color: var(--teal);
  font-weight: 800;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  background: #ffffff;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.05rem;
}

.steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.quote {
  background: var(--teal-dark);
  color: #ffffff;
}

.quote p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.contact div {
  max-width: 720px;
}

.footer {
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    position: static;
  }

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

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero__media {
    order: -1;
  }

  .hero__media img {
    max-height: 420px;
    object-position: center;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: auto;
  }

  .contact .button {
    justify-self: start;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 16px 18px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }

  .hero {
    gap: 24px;
    padding: 18px 18px 34px;
  }

  .hero__media::before {
    display: none;
  }

  .hero__media img {
    aspect-ratio: 4 / 3;
    max-height: 300px;
    object-position: 58% center;
  }

  .intro,
  .section,
  .split,
  .quote,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }
}
