:root {
  --ink: #172026;
  --muted: #5c6970;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --teal: #087d82;
  --teal-dark: #075b61;
  --coral: #ef6a4c;
  --yellow: #f2c14e;
  --line: rgba(23, 32, 38, 0.14);
  --shadow: 0 20px 60px rgba(23, 32, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 8px;
}

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

.nav a:hover,
.header-action:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

.header-action {
  justify-self: end;
  color: var(--teal);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(46px, 7vw, 88px) clamp(20px, 4vw, 56px) 44px;
  overflow: hidden;
}

.hero-copy {
  max-width: 700px;
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
}

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

.hero-text,
.contact-copy p,
.proof-list,
.service-card p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

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

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

.button.primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(8, 125, 130, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  padding-top: 14px;
  border-top: 2px solid var(--line);
}

.hero-stats dt {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 10% -8% -6% 16%;
  content: "";
  background: var(--yellow);
  border-radius: 8px;
  transform: rotate(-3deg);
}

.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section,
.proof-band,
.contact {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

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

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

.service-icon {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--teal);
  font-weight: 900;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  color: white;
  background: var(--ink);
}

.proof-band .eyebrow,
.proof-band .proof-list {
  color: rgba(255, 255, 255, 0.72);
}

.proof-list {
  display: grid;
  gap: 18px;
  margin: 0;
  font-size: 1.08rem;
}

.proof-list p {
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--coral);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding: 26px 0 0;
  border-top: 2px solid var(--teal);
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: #eef6f3;
}

.contact-copy {
  max-width: 700px;
}

.contact-copy p {
  margin-top: 22px;
  max-width: 540px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 125, 130, 0.14);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: var(--muted);
  background: var(--surface);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-heading,
  .proof-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

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

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

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

  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .service-card,
  .lead-form {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
