:root {
  --ink: #15211f;
  --muted: #65736f;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --line: #dbe3df;
  --wash: #eef5f1;
  --accent: #0e6c59;
  --accent-dark: #09483d;
  --gold: #bd8420;
  --blue: #315f8c;
  --shadow: 0 18px 46px rgba(21, 33, 31, 0.09);
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  border: 2px solid #fff;
  background: #075f4e;
  box-shadow: 0 0 0 1px rgba(7, 95, 78, 0.28);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 950;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nav a,
.footer-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--wash);
  color: var(--ink);
}

.phone-cta,
.call-button,
button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.phone-cta {
  background: var(--gold);
  color: #19120a;
}

.phone-cta:hover {
  background: #a67118;
}

.phone-cta:hover,
.call-button:hover,
button:hover {
  background: var(--accent-dark);
}

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

.primary-call {
  min-height: 52px;
  padding: 14px 20px;
  font-size: 1.02rem;
}

.secondary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.secondary-link:hover {
  background: var(--wash);
}

.hero,
.page-hero,
.band,
.quote-panel {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(115deg, rgba(238, 245, 241, 0.98), rgba(251, 252, 250, 0.74)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='820' viewBox='0 0 1200 820'%3E%3Crect width='1200' height='820' fill='%23dde8e4'/%3E%3Cpath d='M0 590h1200v230H0z' fill='%23aebdb8'/%3E%3Crect x='80' y='270' width='250' height='300' rx='10' fill='%230e6c59'/%3E%3Crect x='410' y='210' width='260' height='360' rx='10' fill='%23315f8c'/%3E%3Crect x='760' y='330' width='310' height='240' rx='10' fill='%23bd8420'/%3E%3Cpath d='M116 228h178v42H116zM454 162h176v48H454zM804 286h222v44H804z' fill='%23fff' opacity='.72'/%3E%3Cpath d='M120 604h210M430 604h230M780 604h280' stroke='%2315211f' stroke-width='18' opacity='.25'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-copy,
.page-hero {
  max-width: 930px;
}

.page-hero {
  width: min(var(--content), calc(100% - clamp(36px, 10vw, 144px)));
  max-width: none;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 112px) 0 clamp(34px, 4vw, 56px);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.2rem, 6.4vw, 5.45rem);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 16px;
}

.hero p,
.page-hero p {
  max-width: 760px;
  color: #31413d;
  font-size: 1.12rem;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.search-strip {
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  gap: 10px;
  max-width: 760px;
  margin-top: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.hero-panel,
.card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(22px, 3vw, 34px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.metric-grid span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
  color: var(--muted);
  font-size: 0.85rem;
}

.metric-grid strong {
  color: var(--accent-dark);
  font-size: 1.4rem;
}

.band {
  width: min(var(--content), calc(100% - clamp(36px, 10vw, 144px)));
  max-width: none;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 76px) 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.card {
  padding: 20px;
}

.card p,
.card span,
.fine-print {
  color: var(--muted);
}

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

.link-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

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

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  background: var(--wash);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  opacity: 0.92;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-form button,
.lead-form .fine-print {
  grid-column: 1 / -1;
}

.fine-print {
  font-size: 0.84rem;
}

details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 780px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

@media (max-width: 1040px) {
  .site-header,
  .hero,
  .split,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

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

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

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .phone-cta {
    width: 100%;
  }

  .search-strip,
  .metric-grid,
  .cards.three,
  .link-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
