/* Inner-page editorial and conversion system. Global navigation/footer lives in site-chrome.css. */
:root {
  --ink: #101820;
  --text: #354149;
  --muted: #647079;
  --line: #d2d7da;
  --soft-line: #e8eaeb;
  --paper: #ffffff;
  --wash: #f4f4f1;
  --dark: #102533;
  --accent: #b64221;
  --accent-dark: #8d2f16;
  --accent-soft: #fff1e9;
  --warm: #f0bf65;
  --focus: #075fbd;
}

body.site-stcloud {
  --dark: #1a2733;
  --accent: #20618f;
  --accent-dark: #164a70;
  --accent-soft: #e9f2f9;
  --warm: #c8a45e;
}

body.site-huntsville {
  --dark: #123329;
  --accent: #246644;
  --accent-dark: #17452e;
  --accent-soft: #eaf5ed;
  --warm: #d8a94c;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

p {
  text-wrap: pretty;
}

.wrap,
.page-width {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-170%);
  padding: 11px 15px;
  color: #fff;
  background: #000;
  border: 2px solid #fff;
  font-weight: 800;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.crumb {
  padding: 22px 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.crumb a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 54px;
  align-items: start;
  padding: 38px 0 84px;
}

.article:has(> .body:only-child) {
  max-width: 900px;
  grid-template-columns: 1fr;
  margin-inline: auto;
}

.body h1 {
  max-width: 18ch;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
}

.body h2 {
  margin: 42px 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
}

.body h3 {
  margin: 34px 0 10px;
  font-size: 23px;
  font-weight: 700;
}

.body p,
.body li {
  max-width: 74ch;
}

.body p {
  margin-bottom: 21px;
}

.body ul,
.body ol {
  margin: 0 0 27px;
  padding-left: 24px;
}

.body li {
  margin-bottom: 9px;
}

.body li::marker {
  color: var(--accent);
  font-weight: 800;
}

.body a {
  color: var(--accent-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}

.lede {
  max-width: 66ch !important;
  color: #2d3941;
  font-size: 20px;
  line-height: 1.58;
}

.callout {
  margin: 30px 0;
  padding: 22px 24px;
  color: #2d3941;
  background: var(--accent-soft);
  border-left: 5px solid var(--accent);
  font-size: 16px;
  line-height: 1.6;
}

.callout strong {
  color: var(--ink);
}

.article-faq {
  margin-top: 44px;
  border-top: 2px solid var(--ink);
}

.article-faq h2 {
  margin-bottom: 8px;
}

.article-faq details {
  border-bottom: 1px solid var(--line);
}

.article-faq summary {
  position: relative;
  padding: 20px 44px 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.article-faq summary::-webkit-details-marker {
  display: none;
}

.article-faq summary::after {
  position: absolute;
  top: 15px;
  right: 8px;
  content: "+";
  color: var(--accent);
  font-size: 26px;
  font-weight: 400;
}

.article-faq details[open] summary::after {
  content: "−";
}

.article-faq details p {
  margin: -2px 0 20px;
  color: var(--muted);
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.related a {
  padding: 8px 12px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, #fff);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.aside {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 20px;
}

.quote {
  padding: 30px 28px 32px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--accent-soft);
}

.quote-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
}

.quote .small {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.quote form {
  display: grid;
  gap: 13px;
}

.quote form > div:not(.cf-turnstile) {
  display: grid;
  gap: 5px;
}

.quote label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.4;
  text-transform: uppercase;
}

.quote label span,
.quote label small {
  color: var(--muted) !important;
  font-size: 10px;
  font-weight: 400 !important;
  letter-spacing: 0;
  text-transform: none;
}

.quote input,
.quote select,
.quote textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 11px;
  color: #111;
  background: #fff;
  border: 1px solid #8c949a;
  border-radius: 0;
}

.quote textarea {
  min-height: 112px;
  resize: vertical;
}

.quote input:focus,
.quote select:focus,
.quote textarea:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.cf-turnstile {
  min-height: 1px;
  max-width: 100%;
  overflow: hidden;
}

.turnstile-hint {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.submit {
  min-height: 52px;
  padding: 12px 16px;
  color: #fff;
  background: var(--accent);
  border: 3px solid var(--accent);
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.submit:hover,
.submit:focus-visible {
  color: var(--accent);
  background: #fff;
}

.trustline {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.trustline a {
  color: var(--accent-dark);
  font-weight: 700;
}

.callcard {
  padding: 22px;
  color: #fff;
  background: var(--dark);
  text-align: center;
}

.callcard p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callcard a {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.band {
  padding: 54px 0;
  color: #fff;
  background: var(--dark);
  text-align: center;
}

.band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
}

.band p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
}

.callbtn,
.page-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #fff;
  background: var(--accent);
  border: 2px solid var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.callbtn:hover,
.page-button:hover {
  color: var(--accent);
  background: #fff;
}

/* New About, Services, Areas, and Contact overview pages. */
.page-hero-v2 {
  padding: 62px 0 74px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 60px;
  align-items: center;
}

.page-eyebrow {
  margin-bottom: 11px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero-v2 h1 {
  max-width: 17ch;
  margin: 0 0 20px;
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 800;
}

.page-hero-v2 .page-lead {
  max-width: 63ch;
  margin-bottom: 28px;
  color: #3c4951;
  font-size: 20px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-actions .page-button.secondary {
  color: var(--dark);
  background: #fff;
  border-color: var(--dark);
}

.page-hero-media {
  margin: 0;
}

.page-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.page-hero-media figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.page-proof {
  color: #fff;
  background: var(--dark);
}

.page-proof .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.page-proof span {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.page-proof span:last-child {
  border-right: 0;
}

.page-section {
  padding: 84px 0;
}

.page-section.alt {
  background: var(--wash);
  border-block: 1px solid var(--line);
}

.page-section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.page-section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
}

.page-section-heading p:last-child {
  max-width: 70ch;
  color: var(--muted);
}

.principle-grid,
.area-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle-card,
.area-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.principle-card b {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 28px;
}

.principle-card h3,
.area-card h3 {
  margin: 0 0 9px;
  font-size: 23px;
}

.principle-card p,
.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.area-card a {
  display: inline-block;
  margin-top: 17px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.overview-list {
  border-top: 1px solid var(--line);
}

.overview-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.overview-row:nth-child(even) figure {
  order: 2;
}

.overview-row figure {
  margin: 0;
}

.overview-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.overview-row h2 {
  margin: 0 0 12px;
  font-size: clamp(29px, 3.5vw, 43px);
}

.overview-row p {
  color: var(--muted);
}

.overview-row ul {
  padding-left: 20px;
}

.overview-row li {
  margin-bottom: 5px;
  font-size: 15px;
}

.overview-row li::marker {
  color: var(--accent);
}

.overview-row > div > a {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  border: 2px solid var(--ink);
}

.map-layout iframe {
  width: 100%;
  min-height: 480px;
  display: block;
  border: 0;
}

.map-copy {
  padding: 38px;
  border-left: 2px solid var(--ink);
}

.map-copy h2 {
  margin: 0 0 13px;
  font-size: 34px;
}

.map-copy p,
.map-copy li {
  color: var(--muted);
  font-size: 15px;
}

.map-copy ul {
  padding-left: 20px;
}

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

.contact-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(43px, 5vw, 62px);
}

.contact-copy > p {
  max-width: 66ch;
}

.contact-phone {
  display: block;
  margin: 28px 0 8px;
  color: var(--accent-dark);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.contact-note {
  color: var(--muted);
  font-size: 13px;
}

.contact-checks {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.contact-checks div {
  padding: 18px 20px;
  background: var(--wash);
  border-left: 4px solid var(--accent);
}

.contact-checks strong,
.contact-checks span {
  display: block;
}

.contact-checks span {
  color: var(--muted);
  font-size: 14px;
}

.fine-print-panel {
  margin-top: 42px;
  padding: 24px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, #fff);
  font-size: 14px;
}

.done {
  max-width: 680px;
  margin: 0 auto;
  padding: 82px 24px;
  text-align: center;
}

.done .big {
  font-size: 58px;
}

.done h1 {
  margin: 12px 0;
  font-size: 38px;
}

.done p {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 960px) {
  .article {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
  }

  .page-hero-grid,
  .contact-layout {
    gap: 38px;
  }

  .principle-grid,
  .area-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .wrap,
  .page-width {
    width: min(100% - 30px, 700px);
  }

  .crumb {
    padding-top: 16px;
  }

  .article,
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .article {
    gap: 40px;
    padding-top: 26px;
  }

  .aside {
    position: static;
  }

  .body h1,
  .page-hero-v2 h1,
  .contact-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .page-hero-v2 {
    padding: 42px 0 56px;
  }

  .page-hero-grid > div {
    order: 1;
  }

  .page-hero-media {
    order: 2;
  }

  .page-proof .wrap {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .page-proof span:nth-child(even) {
    border-right: 0;
  }

  .page-section {
    padding: 64px 0;
  }

  .overview-row,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .overview-row,
  .overview-row:nth-child(even) figure {
    order: initial;
  }

  .overview-row figure {
    order: 1 !important;
  }

  .overview-row > div {
    order: 2;
  }

  .map-copy {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .band {
    padding: 46px 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .wrap,
  .page-width {
    width: calc(100% - 24px);
  }

  .lede,
  .page-hero-v2 .page-lead {
    font-size: 18px;
  }

  .quote {
    padding: 25px 21px 28px;
    box-shadow: 8px 8px 0 var(--accent-soft);
  }

  .callcard a {
    font-size: 25px;
  }

  .page-actions {
    display: grid;
  }

  .page-proof .wrap,
  .principle-grid,
  .area-card-grid {
    grid-template-columns: 1fr;
  }

  .page-proof span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .overview-row {
    gap: 25px;
    padding: 28px 0;
  }

  .map-layout iframe {
    min-height: 330px;
  }

  .map-copy {
    padding: 27px 22px;
  }
}

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

/* Reference-matched free-quote form and readable inner-page type. */
body { font-size: 18px; }
.crumb { font-size: 14px; }
.callout { font-size: 17px; }
.related a { font-size: 15px; }
.quote-kicker {
  position: relative;
  display: grid;
  place-items: center;
  gap: 5px;
  margin: 0 0 30px;
  padding: 15px 16px 17px;
  color: var(--accent);
  background: #fff;
  border: 4px solid var(--accent);
  border-radius: 9px;
  box-shadow: 0 7px 0 var(--accent-soft);
  text-align: center;
}
.quote-kicker::after {
  position: absolute;
  bottom: -19px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-top: 18px solid var(--accent);
  transform: translateX(-50%);
}
.quote-kicker strong {
  display: block;
  font-size: clamp(30px, 2.7vw, 38px);
  font-weight: 900;
  letter-spacing: .025em;
  line-height: 1;
}
.quote-kicker > span {
  display: block;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
}
.quote h2 { font-size: 30px; }
.quote .small { font-size: 17px; }
.quote label { font-size: 16px; }
.quote label span,
.quote label small { font-size: 14px; }
.quote input,
.quote select,
.quote textarea { min-height: 52px; font-size: 17px; }
.quote textarea { min-height: 124px; }
.turnstile-hint,
.trustline { font-size: 14px; }
.submit { min-height: 58px; font-size: 17px; }
.callcard p { font-size: 15px; }
.callbtn,
.page-button { font-size: 16px; }
.page-eyebrow { font-size: 14px; }
.page-hero-media figcaption { font-size: 14px; }
.page-proof span { font-size: 15px; }
.principle-card p,
.area-card p { font-size: 17px; }
.area-card a { font-size: 15px; }
.overview-row li { font-size: 17px; }
.overview-row > div > a { font-size: 15px; }
.map-copy p,
.map-copy li { font-size: 17px; }
.contact-note { font-size: 16px; }
.contact-checks span { font-size: 17px; }
.fine-print-panel { font-size: 16px; }

@media (max-width: 520px) {
  body { font-size: 17px; }
  .quote-kicker strong { font-size: 28px; }
  .quote-kicker > span { font-size: 13px; }
}
