:root {
  color-scheme: light;
  --ink: #14231f;
  --muted: #5e6c68;
  --teal: #093f3d;
  --teal-2: #0f5a55;
  --sand: #f7efe4;
  --paper: #fffdf9;
  --line: rgba(20, 35, 31, 0.14);
  --orange: #f28b30;
  --orange-2: #c8621c;
  --shadow: 0 24px 80px rgba(9, 63, 61, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(7, 31, 29, 0.96);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 31, 29, 0.2);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 0.98rem; }
.brand small { margin-top: 2px; color: rgba(255, 255, 255, 0.68); font-size: 0.78rem; }
.nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}
.nav a:hover, .mega a:hover, .footer-grid a:hover { color: var(--orange); }
.header-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: var(--orange);
  color: #241207;
  font-weight: 900;
  white-space: nowrap;
}
.menu { position: relative; }
.menu summary { display: none; cursor: pointer; font-weight: 800; }
.mega { display: none; }

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 82px clamp(18px, 5vw, 72px) 60px;
  color: #fff;
}
.page-hero img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero img { object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 31, 30, 0.92) 0%, rgba(4, 31, 30, 0.76) 42%, rgba(4, 31, 30, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 31, 30, 0.8), rgba(4, 31, 30, 0.08));
}
.page-hero-content { position: relative; width: min(860px, 100%); }
.breadcrumbs { margin-bottom: 20px; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(255, 255, 255, 0.42); }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}
.btn-primary { background: var(--orange); color: #241207; box-shadow: 0 18px 40px rgba(242, 139, 48, 0.26); }
.btn-primary:hover { background: #ff9f45; }
.btn-secondary { border-color: rgba(255, 255, 255, 0.36); background: rgba(255, 255, 255, 0.12); color: #fff; }

.problem-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(56px, 8vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--teal);
  color: #fff;
}
.problem-band h2, .section-heading h2, .split h2, .cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}
.problem-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.problem-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}
.section { padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px); }
.areas-section, .link-cloud { background: #f2f5f3; }
.section-heading, .split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 36px;
}
.copy p, .copy li, .card p, .feature-list p, .site-footer p, .cta-band p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}
.copy ul { margin: 0; padding-left: 22px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.card {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.card span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card h2 { margin: 0; font-size: 1.38rem; line-height: 1.15; }
.card a { display: inline-block; margin-top: 12px; color: var(--teal-2); font-weight: 900; }
.feature-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.feature-list div { padding: 24px; border-radius: 8px; background: var(--sand); }
.feature-list strong { display: block; font-size: 1.15rem; line-height: 1.2; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags a, .area-tags span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #31423f;
  font-weight: 800;
}
.area-tags a:hover { border-color: var(--orange); color: var(--orange-2); }
.cta-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--teal);
  color: #fff;
}
.cta-band p { grid-column: 1; margin: 0; color: rgba(255, 255, 255, 0.76); }
.cta-band .btn { grid-column: 2; grid-row: 1 / span 2; }
.sitemap-list { columns: 4 220px; column-gap: 28px; }
.sitemap-list a { display: block; break-inside: avoid; padding: 7px 0; color: var(--teal-2); font-weight: 750; }
.site-footer {
  padding: 42px clamp(18px, 5vw, 72px) 92px;
  background: #071f1d;
  color: #fff;
}
.footer-top { display: grid; grid-template-columns: minmax(240px, 0.55fr) minmax(300px, 1fr); gap: clamp(28px, 6vw, 80px); }
.footer-phone { display: inline-block; margin-top: 12px; color: var(--orange); font-size: 1.6rem; font-weight: 900; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.footer-grid h2 { margin: 0 0 12px; color: #fff; font-size: 0.95rem; text-transform: uppercase; }
.footer-grid a { display: block; padding: 5px 0; color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }
.fine-print { max-width: 900px; margin: 34px 0 0; color: rgba(255, 255, 255, 0.52); font-size: 0.9rem; }
.sticky-call { position: fixed; right: 18px; bottom: 18px; z-index: 30; }
.sticky-call .btn { min-height: 46px; box-shadow: var(--shadow); }

@media (max-width: 1100px) {
  .card-grid, .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .menu { margin-left: auto; }
  .menu summary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    list-style: none;
  }
  .menu[open] .mega {
    position: absolute;
    right: 0;
    top: 52px;
    display: grid;
    width: min(520px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .mega strong, .mega a { display: block; }
  .mega strong { margin-bottom: 8px; }
  .mega a { padding: 6px 0; color: var(--muted); font-weight: 750; }
  .problem-band, .section-heading, .split, .footer-top, .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn, .cta-band p { grid-column: auto; grid-row: auto; }
}
@media (max-width: 640px) {
  .site-header { padding: 10px 14px; }
  .brand small, .header-call { display: none; }
  .page-hero { min-height: 620px; padding: 58px 18px 38px; }
  .page-hero h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .hero-actions .btn, .cta-band .btn, .sticky-call .btn { width: 100%; }
  .card-grid, .feature-list, .footer-grid, .menu[open] .mega { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .sticky-call { left: 12px; right: 12px; bottom: 12px; }
}
