:root {
  --ink: #142023;
  --muted: #5d6c70;
  --line: #d9e4e6;
  --paper: #f6faf9;
  --white: #ffffff;
  --teal: #087c84;
  --teal-dark: #07575e;
  --yellow: #f2b84b;
  --coral: #df765f;
  --green: #427c4a;
  --shadow: 0 20px 50px rgba(18, 43, 48, 0.16);
}

* {
  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;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(246, 250, 249, 0.94);
  border-bottom: 1px solid rgba(217, 228, 230, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal) 62%, var(--yellow));
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--teal-dark);
  border-color: var(--yellow);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 118px clamp(18px, 6vw, 76px) 62px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 26, 30, 0.88) 0%, rgba(5, 26, 30, 0.67) 42%, rgba(5, 26, 30, 0.1) 100%);
}

.hero-content {
  position: relative;
  width: min(690px, 100%);
  max-width: 690px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #102025;
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.intro,
.services,
.split-section,
.coverage,
.cta,
.page-hero,
.contact-layout,
.legal-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

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

.intro p,
.panel p,
.coverage p,
.contact-card p,
.legal-page p {
  color: var(--muted);
}

.services,
.coverage {
  padding: 74px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

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

.service-card,
.coverage-grid > div,
.contact-card,
.contact-form,
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--coral);
}

.service-card:nth-child(3) .service-icon {
  background: var(--green);
}

.service-card:nth-child(4) .service-icon {
  background: var(--teal-dark);
}

.service-card h3,
.coverage h3,
.step strong {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.service-card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.panel {
  align-self: center;
}

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

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  padding: 20px;
}

.step span {
  grid-row: span 2;
  color: var(--teal);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

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

.coverage-grid > div {
  padding: 26px;
}

.cta {
  justify-content: space-between;
  padding: 34px;
  margin-bottom: 72px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
}

.cta h2 {
  max-width: 720px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.page-main,
.legal-page {
  padding-top: 108px;
}

.page-hero {
  padding: 52px 0 28px;
}

.page-hero h1 {
  color: var(--teal-dark);
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.page-hero p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  padding: 24px 0 76px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

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

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

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.contact-card {
  padding: 28px;
}

.contact-card h2 {
  color: var(--teal-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-info-list {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
}

.contact-info-icon.green {
  background: var(--green);
}

.contact-info-icon.warm {
  background: #a97b59;
}

.contact-info-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-info-item div span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-info-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-note {
  margin-top: 32px;
  padding: 24px;
  background: #fbfdfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(18, 43, 48, 0.1);
}

.contact-note h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
}

.contact-note p {
  margin: 0;
}

.legal-page {
  max-width: 840px;
  padding-bottom: 80px;
}

.legal-page h1 {
  margin: 40px 0 18px;
  color: var(--teal-dark);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.legal-page h2 {
  margin-top: 30px;
  font-size: 1.55rem;
}

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

  .main-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
    padding-top: 58px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 26, 30, 0.9), rgba(5, 26, 30, 0.42));
  }

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

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

  .page-main,
  .legal-page {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .site-header {
    gap: 16px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 0.86rem;
    overflow: visible;
  }

  .hero {
    min-height: 700px;
    padding: 40px 40px 42px 28px;
  }

  .hero-content {
    width: calc(100vw - 68px);
    max-width: calc(100vw - 68px);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 320px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

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

  .service-grid,
  .coverage-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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