:root {
  --ink: #17211f;
  --muted: #5f6d6a;
  --line: #d8e4e1;
  --bg: #f5f8f7;
  --panel: #ffffff;
  --teal: #14706f;
  --teal-dark: #0d4f50;
  --coral: #d46f4d;
  --sand: #f1dfc8;
  --sky: #dceff2;
  --shadow: 0 16px 45px rgba(11, 43, 43, .14);
}

* {
  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(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  text-decoration: none;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.site-header nav a,
footer nav a {
  color: var(--muted);
  text-decoration: none;
}

.header-cta,
.button,
.lead-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.button.primary,
.lead-form button {
  background: var(--teal);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 45, 47, .78) 0%, rgba(8, 45, 47, .58) 42%, rgba(8, 45, 47, .12) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  color: #fff;
  padding: 62px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8c9;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .96;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.hero-text {
  max-width: 660px;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255, 255, 255, .92);
}

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

.disclosure {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

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

.quick-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 800;
  text-align: center;
}

.lead-section,
.split-section,
.content-band,
.legal-page {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(42px, 8vw, 96px) 0;
}

.lead-copy {
  align-self: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form .full,
.lead-form button,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

textarea {
  resize: vertical;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--sky);
}

.content-band {
  padding: clamp(42px, 8vw, 86px) 0;
}

.content-band.muted {
  width: 100%;
  padding-left: max(18px, calc((100% - 1160px) / 2));
  padding-right: max(18px, calc((100% - 1160px) / 2));
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.topic-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.topic-card strong {
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.15;
}

.topic-card span {
  color: var(--muted);
  font-size: 14px;
}

.service-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 9vw, 98px) 0 clamp(28px, 5vw, 56px);
}

.service-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.service-layout {
  width: min(1160px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(24px, 5vw, 54px);
  margin: 0 auto;
  padding-bottom: clamp(48px, 8vw, 92px);
}

.service-article {
  display: grid;
  gap: 18px;
}

.service-article section,
.service-sidebar {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.service-sidebar {
  align-self: start;
  position: sticky;
  top: 92px;
}

.service-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-links a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 800;
}

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

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

.feature-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-grid p,
.split-section p,
.faq-list p,
.legal-page p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 36px;
  padding: clamp(42px, 8vw, 86px) 0;
}

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

.area-list span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 800;
  text-align: center;
}

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

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

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

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

.legal-page {
  padding: clamp(42px, 7vw, 78px) 0;
}

.legal-page section {
  max-width: 820px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px clamp(18px, 4vw, 42px);
  color: var(--muted);
  background: #102826;
}

footer strong,
footer a {
  color: #fff;
}

footer p {
  margin-bottom: 0;
}

footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 45, 47, .88), rgba(8, 45, 47, .38));
  }

  .hero-content {
    width: min(100% - 36px, 720px);
    margin: 0 auto;
    align-self: end;
  }

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

  .lead-section,
  .split-section,
  footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .area-list,
  .topic-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }
}
