:root {
  color-scheme: light;
  --ink: #16313a;
  --muted: #5c6c72;
  --line: #d9e3e4;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #177b78;
  --teal-dark: #0f5958;
  --gold: #bf8f3c;
  --clay: #b65f4b;
  --shadow: 0 18px 45px rgba(18, 54, 60, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 250, 248, 0.94);
  border-bottom: 1px solid rgba(217, 227, 228, 0.9);
  backdrop-filter: blur(14px);
}

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

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
}

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

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.96) 0%, rgba(247, 250, 248, 0.88) 39%, rgba(247, 250, 248, 0.25) 72%),
    linear-gradient(0deg, rgba(22, 49, 58, 0.18), rgba(22, 49, 58, 0.02));
  z-index: -1;
}

.hero-content {
  width: min(720px, 100%);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #345159;
  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: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border-color: rgba(22, 49, 58, 0.18);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 98px) 0;
}

.intro,
.company,
.policies {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro > p,
.company-copy p,
.policies p,
.contact p,
.service-card p,
.steps span {
  color: var(--muted);
}

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

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

.service-card {
  min-height: 254px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 54, 60, 0.06);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(23, 123, 120, 0.1);
  color: var(--teal-dark);
  font-weight: 700;
}

.process-band {
  background: #e9f0ef;
  border-block: 1px solid var(--line);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
}

.steps {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 66px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.steps strong,
.steps span {
  display: block;
}

.details {
  display: grid;
  gap: 12px;
  margin: 0;
}

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

.details dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.details dd {
  margin: 0;
  font-weight: 700;
}

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

.contact-band {
  background: var(--ink);
  color: var(--white);
}

.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.contact .section-kicker {
  color: #97d4d1;
}

.contact h2 {
  max-width: 640px;
}

.contact p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.policy-grid {
  display: grid;
  gap: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.92) 52%, rgba(247, 250, 248, 0.5) 100%),
      linear-gradient(0deg, rgba(22, 49, 58, 0.2), rgba(22, 49, 58, 0.02));
  }

  .hero-content {
    padding-top: 58px;
  }

  h1 {
    max-width: 11ch;
  }

  .intro,
  .company,
  .policies,
  .process,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

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

@media (max-width: 520px) {
  .brand strong {
    font-size: 0.98rem;
  }

  nav {
    gap: 10px;
    font-size: 0.9rem;
  }

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

  .steps li {
    padding: 20px;
  }

  .steps li::before {
    position: static;
    margin-bottom: 14px;
  }
}
