:root {
  --ink: #10201e;
  --muted: #52625f;
  --line: #dce7e3;
  --paper: #f7fbf9;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --amber: #d97706;
  --shadow: 0 18px 50px rgba(16, 32, 30, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 160ms ease;
}

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

.nav-cta {
  padding: 9px 15px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 251, 249, 0.98) 0%, rgba(247, 251, 249, 0.9) 36%, rgba(247, 251, 249, 0.28) 70%, rgba(247, 251, 249, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 32, 30, 0.12), rgba(16, 32, 30, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 80px);
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  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.12;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #2b3d39;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 118, 110, 0.28);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 104px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro p,
.cta-band p,
.footer p {
  margin: 0;
}

.intro p {
  color: var(--muted);
  font-size: 1.13rem;
}

.muted {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

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

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

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

.service-card p,
.steps p,
.faq p {
  color: var(--muted);
}

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

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps > div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.steps p {
  margin: 10px 0 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 7vw, 76px) max(18px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--teal-dark);
}

.cta-band .eyebrow {
  color: #fbbf24;
}

.cta-band h2 {
  margin-bottom: 14px;
}

.contact-box {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.contact-box a {
  display: block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

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

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header,
  .footer,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(247, 251, 249, 0.98) 0%, rgba(247, 251, 249, 0.88) 58%, rgba(247, 251, 249, 0.44) 100%);
  }

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

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

@media (max-width: 560px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    width: min(100% - 28px, 720px);
    margin-left: 14px;
  }

  h1 {
    font-size: 2.35rem;
  }

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

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