:root {
  --color-navy: #0b1f33;
  --color-navy-soft: #12324f;
  --color-teal: #0f766e;
  --color-teal-bright: #16a3a6;
  --color-brand-green: #1f6f4a;
  --color-brand-gold: #946b12;
  --color-brand-gold-soft: #f3dfaa;
  --color-ink: #142235;
  --color-muted: #5d6b7a;
  --color-border: #d7e1e7;
  --color-bg: #f5f8f8;
  --color-bg-warm: #eef4f3;
  --color-white: #ffffff;
  --shadow-soft: 0 22px 60px rgba(11, 31, 51, 0.12);
  --radius: 8px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(245, 248, 248, 0.82), transparent 38%);
}

a {
  color: var(--color-teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-navy);
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 225, 231, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-brand-green);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-brand-green);
  background: linear-gradient(145deg, var(--color-brand-gold-soft), var(--color-brand-gold));
  border-radius: var(--radius);
  font-weight: 700;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  color: var(--color-brand-green);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-line {
  color: var(--color-brand-gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--color-navy);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--color-teal);
}

.section {
  padding: 84px 0;
  scroll-margin-top: 92px;
}

.section-muted {
  background: var(--color-bg);
}

.section-teal {
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.96), rgba(15, 118, 110, 0.92)),
    var(--color-navy);
}

.section-teal .eyebrow,
.section-teal p {
  color: rgba(255, 255, 255, 0.84);
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 96px 0 86px;
  background:
    linear-gradient(120deg, rgba(11, 31, 51, 0.96) 0%, rgba(11, 31, 51, 0.88) 48%, rgba(15, 118, 110, 0.84) 100%),
    var(--color-navy);
  color: var(--color-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
}

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

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

.hero .eyebrow {
  color: #8fe2de;
}

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

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

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

.hero-lede {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

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

.button-primary:hover,
.button-primary:focus {
  color: var(--color-white);
  background: #0b5f59;
}

.button-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus {
  color: var(--color-navy);
  background: var(--color-white);
}

.hero-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel-topline {
  height: 8px;
  background: linear-gradient(90deg, var(--color-teal), #67c7be, var(--color-navy-soft));
}

.property-symbol {
  padding: 34px 26px 16px;
}

.property-symbol svg {
  width: min(100%, 360px);
  margin-inline: auto;
}

.shape-house {
  fill: #e8f3f2;
}

.shape-line,
.shape-door,
.shape-ground {
  fill: none;
  stroke: var(--color-navy);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shape-dot {
  fill: var(--color-teal-bright);
}

.hero-note {
  display: grid;
  gap: 5px;
  padding: 20px 24px 24px;
  color: var(--color-ink);
  background: var(--color-bg-warm);
}

.hero-note strong {
  font-size: 1.05rem;
}

.hero-note span {
  color: var(--color-muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
}

.prose {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.prose p:last-child,
.split-layout p:last-child {
  margin-bottom: 0;
}

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

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

.service-card {
  min-height: 260px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.06);
}

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

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--color-teal);
  background: #e7f4f2;
  border-radius: var(--radius);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.benefit-item {
  position: relative;
  padding: 16px 18px 16px 48px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.benefit-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid #8fe2de;
  border-left: 3px solid #8fe2de;
  transform: translateY(-64%) rotate(-45deg);
}

.callout {
  padding: 28px;
  color: var(--color-ink);
  background: var(--color-bg);
  border-left: 5px solid var(--color-teal);
  border-radius: var(--radius);
}

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

.steps-list li {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 170px;
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.steps-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 50%;
  font-weight: 800;
}

.notice {
  margin: 26px 0 0;
  padding: 18px 20px;
  color: var(--color-navy);
  background: #e7f4f2;
  border: 1px solid #b9ded9;
  border-radius: var(--radius);
  font-weight: 700;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: start;
  gap: 56px;
}

.contact-layout p {
  max-width: 640px;
  color: var(--color-muted);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  font-style: normal;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.contact-card strong {
  color: var(--color-navy);
  font-size: 1.2rem;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 980px) {
  .header-inner,
  .hero-grid,
  .split-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    justify-items: start;
    padding: 16px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: static;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-line {
    font-size: 0.7rem;
  }

  .site-nav {
    gap: 8px 14px;
    font-size: 0.9rem;
  }

  .section {
    padding: 60px 0;
    scroll-margin-top: 20px;
  }

  .hero {
    padding: 66px 0 60px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .card-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .steps-list li {
    min-height: auto;
  }

  .callout,
  .contact-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
