:root {
  --bg: #f5fbf5;
  --surface: #ffffff;
  --surface-strong: #eef8ef;
  --text: #153121;
  --muted: #4c6a58;
  --line: rgba(21, 49, 33, 0.12);
  --primary: #1f7a3f;
  --primary-deep: #14542b;
  --primary-soft: #cfead5;
  --accent: #88b04b;
  --shadow: 0 24px 70px rgba(16, 45, 29, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(136, 176, 75, 0.2), transparent 28%),
    linear-gradient(180deg, #fbfffb 0%, #f5fbf5 48%, #edf7ee 100%);
}

main {
  flex: 1 0 auto;
}

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

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

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(251, 255, 251, 0.84);
  border-bottom: 1px solid rgba(21, 49, 33, 0.08);
}

.site-header-home {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(248, 252, 247, 0.84);
  border-bottom-color: rgba(21, 49, 33, 0.12);
}

.site-header-home.is-scrolled {
  position: fixed;
  top: 0;
}

.site-header-home + main .hero {
  padding-top: 8.25rem;
}

.site-header-home + main .hero .hero-grid {
  padding-top: 1.75rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 14px 30px rgba(31, 122, 63, 0.28);
  font-size: 1.4rem;
}

.brand-logo {
  width: 126px;
  height: auto;
  display: block;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy {
  margin-left: -0.7rem;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  color: var(--primary-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary-deep);
  background: rgba(31, 122, 63, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
}

.site-nav a[href="contact.html"] {
  margin-left: 0.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #2d9650 100%);
  box-shadow: 0 14px 26px rgba(31, 122, 63, 0.26);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.site-nav .btn-primary,
.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus {
  color: #fff;
}

.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus {
  color: var(--primary-deep);
}

.btn-secondary {
  color: var(--primary-deep);
  background: #fff;
  border: 1px solid rgba(20, 84, 43, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2.4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 16, 0.82) 0%, rgba(10, 24, 16, 0.64) 38%, rgba(10, 24, 16, 0.28) 62%, rgba(10, 24, 16, 0.56) 100%),
    linear-gradient(180deg, rgba(20, 84, 43, 0.16), rgba(20, 84, 43, 0.16)),
    url("hero-banner-wichita.jpg") center 18% / cover no-repeat;
  transform: scale(1.02);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero-copy {
  max-width: 680px;
  padding: 0 1.75rem 2rem 0;
}

.hero-copy h1,
.hero-copy p {
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-copy .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.page-hero .eyebrow {
  background: rgba(31, 122, 63, 0.1);
  color: var(--primary-deep);
  backdrop-filter: none;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero .hero-copy p {
  color: #fff;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.chip {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 22px rgba(8, 18, 12, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-card,
.panel,
.story-card,
.quote-card,
.contact-card,
.testimonial-card,
.stat-card,
.info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 49, 33, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-card {
  padding: 1.5rem;
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  align-self: center;
  margin-top: 2rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(circle at top right, rgba(136, 176, 75, 0.26), transparent 34%);
  pointer-events: none;
}

.hero-card .mini-label,
.mini-label {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 84, 43, 0.08);
  color: var(--primary-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.offer-row {
  display: flex;
  align-items: start;
  gap: 0.8rem;
}

.offer-index {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 700;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.6rem;
}

.section {
  padding: 1.9rem 0 2.8rem;
}

.hero + .section {
  padding-top: 1.2rem;
}

.compare + .section {
  padding-top: 1.2rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-head > div {
  flex: 0 1 52%;
}

.who-we-are-intro {
  max-width: 900px;
  margin: 0 0 1rem;
}

.review-carousel-section .section-head > div {
  flex: 1 1 100%;
}

.section-head h2,
.cta-band h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.grid-3,
.grid-4,
.testimonials-grid,
.contact-grid,
.footer-grid,
.process-grid,
.situation-grid,
.stats-grid {
  display: grid;
  gap: 1.2rem;
}

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

.grid-4,
.situation-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-card,
.stat-card,
.info-card,
.testimonial-card {
  padding: 1.45rem;
}

.story-card h3,
.quote-card h2,
.contact-card h2,
.testimonial-card h3,
.info-card h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.quote-card h2 {
  margin-bottom: 1rem;
}

.situation-icon {
  width: 78px;
  height: 78px;
  display: block;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.85rem;
}

.situation-grid .info-card {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.situation-grid .info-card h3 {
  min-height: 2.8rem;
  margin-bottom: 0.15rem;
}

.situation-grid .info-card p {
  margin-top: 0;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--primary-deep);
  background: linear-gradient(180deg, #e6f5e8 0%, #d3ebd8 100%);
}

.process-card {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 247, 238, 0.96) 100%);
  border: 1px solid rgba(21, 49, 33, 0.08);
  box-shadow: 0 18px 42px rgba(21, 49, 33, 0.08);
}

.process-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  background: var(--primary-deep);
  color: #fff;
  font-weight: 700;
}

.process-accent {
  color: var(--primary);
}

.process-image {
  width: calc(100% + 0.4rem);
  max-width: none;
  height: 220px;
  object-fit: cover;
  display: block;
  margin: -0.4rem -0.2rem 0.9rem;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.compare-card {
  padding: 1rem 1.35rem 1.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(21, 49, 33, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.compare-card.highlight {
  background: linear-gradient(180deg, rgba(207, 234, 213, 0.68) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.compare-card ul,
.checklist,
.contact-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li,
.checklist li,
.contact-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.compare-card li {
  font-size: 1.02rem;
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

.compare-card li::before,
.checklist li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.cta-band {
  padding: 0.85rem 1.8rem 1.35rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top left, rgba(136, 176, 75, 0.24), transparent 20%),
    linear-gradient(135deg, #123f22 0%, #1f7a3f 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(20, 84, 43, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .mini-label {
  margin-bottom: 0.02rem;
}

.cta-band h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  line-height: 1.08;
}

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  padding: 4rem 0 2.5rem;
}

.page-hero-contact {
  padding-top: 2.7rem;
  padding-bottom: 1rem;
}

.page-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.page-hero-copy h1,
.page-hero-copy p {
  position: relative;
  z-index: 1;
}

.page-hero-testimonials {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0 1.4rem;
}

.page-hero-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 16, 0.8) 0%, rgba(10, 24, 16, 0.64) 38%, rgba(10, 24, 16, 0.24) 68%, rgba(10, 24, 16, 0.5) 100%),
    linear-gradient(180deg, rgba(20, 84, 43, 0.18), rgba(20, 84, 43, 0.12)),
    url("testimonials-hero.jpg") center 38% / cover no-repeat;
  transform: scale(1.02);
}

.page-hero-testimonials .page-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 300px;
  align-items: start;
}

.page-hero-testimonials .page-hero-copy {
  max-width: 680px;
  padding: 0.4rem 1rem 0 0;
  margin-top: -0.85rem;
}

.page-hero-testimonials .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.page-hero-testimonials h1,
.page-hero-testimonials p {
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-hero-testimonials .panel {
  background: rgba(255, 255, 255, 0.92);
}

.page-hero-quote {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0 1.4rem;
}

.page-hero-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 16, 0.8) 0%, rgba(10, 24, 16, 0.62) 36%, rgba(10, 24, 16, 0.24) 68%, rgba(10, 24, 16, 0.46) 100%),
    linear-gradient(180deg, rgba(20, 84, 43, 0.18), rgba(20, 84, 43, 0.12)),
    url("quote-hero.jpg") center 48% / cover no-repeat;
  transform: scale(1.02);
}

.page-hero-quote .page-hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 300px;
  align-items: center;
}

.page-hero-quote .page-hero-copy {
  max-width: 680px;
  padding: 0 1rem 0 0;
  margin-top: 0;
}

.page-hero-quote .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.page-hero-quote h1,
.page-hero-quote p {
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-hero-quote .panel {
  background: rgba(255, 255, 255, 0.92);
}

.page-section {
  padding: 1.5rem 0 4rem;
}

.page-hero-contact + .page-section {
  padding-top: 0.6rem;
}

.quote-layout,
.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.quote-card,
.contact-card {
  padding: 1.7rem;
}

.contact-card {
  padding-top: 1.1rem;
}

.contact-grid {
  margin-top: -0.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-steps {
  display: grid;
  gap: 1rem;
}

.step-indicator {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.quote-step {
  display: block;
}

.quote-step-actions {
  margin-top: 1.4rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  color: var(--primary-deep);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(21, 49, 33, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(31, 122, 63, 0.2);
  border-color: rgba(31, 122, 63, 0.36);
}

.helper {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(31, 122, 63, 0.1);
  color: var(--primary-deep);
  border: 1px solid rgba(31, 122, 63, 0.14);
}

.quote-aside {
  display: grid;
  gap: 1rem;
}

.quote-layout .quote-aside {
  padding-top: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.review-carousel-section {
  padding-top: 0.8rem;
}

.review-carousel-section + .section {
  padding-top: 0.35rem;
}

.review-carousel-wrap {
  width: 100%;
  overflow: hidden;
}

.review-carousel-shell {
  width: min(calc(100% - 2.5rem), 1180px);
  margin: 0 auto;
  display: block;
}

.review-carousel-viewport {
  overflow: hidden;
}

.review-carousel-track {
  display: flex;
  gap: 0.85rem;
  transition: transform 320ms ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  padding: 0.1rem 0;
}

.review-card {
  min-height: 100%;
  padding: 1.05rem 1.1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(136, 176, 75, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 241, 0.98) 100%);
  border: 1px solid rgba(21, 49, 33, 0.08);
  box-shadow: none;
}

.review-card h3 {
  margin: 0.45rem 0 0.6rem;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.02;
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.testimonial-meta {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.stars {
  color: #d19e1b;
  letter-spacing: 0.14em;
}

.contact-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.contact-map {
  min-height: 100%;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 0;
  background: #ffffff;
}

.map-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(21, 49, 33, 0.08);
}

.faq-section {
  padding-top: 0.1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 49, 33, 0.08);
  box-shadow: 0 16px 36px rgba(16, 45, 29, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-arrow {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  margin-right: 0.3rem;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 1.35rem 1.2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.map-grid span {
  display: grid;
  place-items: center;
  min-height: 80px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--primary-deep);
  font-size: 0.92rem;
  border: 1px solid rgba(21, 49, 33, 0.08);
}

.site-footer {
  margin-top: auto;
  padding: 0 0 0;
}

.site-footer .container {
  width: 100%;
  max-width: none;
  padding: 0.3rem 0.9rem 0.02rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  border-left: 0;
  border-right: 0;
  border: 1px solid rgba(21, 49, 33, 0.08);
  box-shadow: 0 18px 42px rgba(16, 45, 29, 0.08);
}

.site-footer .brand {
  align-items: center;
}

.site-footer .brand-logo {
  width: 112px;
}

.site-footer .brand-copy {
  margin-left: -0.35rem;
}

.site-footer .brand-copy strong {
  font-size: 0.92rem;
  line-height: 1;
}

.site-footer .brand-copy span {
  font-size: 0.76rem;
  line-height: 1.05;
}

.footer-grid {
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  padding: 0;
  align-items: start;
}

.footer-grid > div:nth-child(2) {
  justify-self: center;
  padding-top: 1.15rem;
  width: 220px;
}

.footer-grid .brand {
  margin-bottom: 0.1rem;
}

.footer-grid > div > strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid .contact-list {
  margin-top: 0;
}

.footer-grid .contact-list li {
  margin-bottom: 0.05rem;
  line-height: 1.15;
}

.footer-grid > div:nth-child(2) .contact-list li {
  margin-bottom: 0.32rem;
}

.footer-grid > div:nth-child(2) .contact-list li:last-child {
  margin-bottom: 0;
}

.footer-grid .contact-list li:last-child {
  margin-bottom: 0;
}

.footer-grid .contact-list strong {
  margin-bottom: 0.2rem;
}

.footer-icon-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 0.05rem;
}

.footer-icon-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.1;
}

.footer-contact-icon-static {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-grid .contact-list li {
  padding-left: 0;
}

.footer-grid .contact-list li::before {
  display: none;
}

.footer-grid > div:nth-child(3) .contact-list li {
  position: relative;
  padding-right: 2rem;
}

.footer-contact-icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.footer-grid > div:nth-child(2) {
  text-align: center;
}

.footer-grid > div:nth-child(3) {
  justify-self: center;
  text-align: left;
  padding-top: 1.15rem;
  width: 220px;
}

.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal {
  padding-top: 0.18rem;
  border-top: 1px solid rgba(21, 49, 33, 0.08);
  background: linear-gradient(135deg, #123f22 0%, #1f7a3f 100%);
  margin: 0 -0.9rem -0.02rem;
  padding-bottom: 0.22rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  line-height: 1.15;
}

.legal-service {
  display: block;
  margin-bottom: 0.04rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-wrap,
  .quote-layout,
  .contact-grid,
  .compare,
  .grid-3,
  .process-grid,
  .testimonials-grid,
  .grid-4,
  .situation-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(21, 49, 33, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(10, 24, 16, 0.78) 0%, rgba(10, 24, 16, 0.58) 48%, rgba(10, 24, 16, 0.72) 100%),
      url("hero-banner-wichita.jpg") center 25% / cover no-repeat;
  }

  .page-hero-testimonials::before {
    background:
      linear-gradient(180deg, rgba(10, 24, 16, 0.78) 0%, rgba(10, 24, 16, 0.56) 48%, rgba(10, 24, 16, 0.74) 100%),
      url("testimonials-hero.jpg") center 38% / cover no-repeat;
  }

  .page-hero-quote::before {
    background:
      linear-gradient(180deg, rgba(10, 24, 16, 0.78) 0%, rgba(10, 24, 16, 0.56) 48%, rgba(10, 24, 16, 0.74) 100%),
      url("quote-hero.jpg") center 48% / cover no-repeat;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-grid {
    min-height: auto;
  }

  .page-hero-testimonials .page-hero-wrap {
    min-height: auto;
  }

  .page-hero-quote .page-hero-wrap {
    min-height: auto;
  }

  .quote-layout .quote-aside {
    padding-top: 0;
  }

  .section-head {
    align-items: start;
  }

  .review-carousel-shell {
    display: block;
  }

  .review-slide {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
  }

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 1.8rem;
  }

  .site-header-home + main .hero {
    padding-top: 3rem;
  }

  .site-header-home + main .hero .hero-grid {
    padding-top: 2.4rem;
  }

  .site-header-home + main .hero .hero-copy {
    padding-top: 0.85rem;
  }

  .site-header-home {
    position: absolute;
  }

  .site-header-home.is-scrolled {
    position: fixed;
    top: 0;
  }

  .hero {
    padding-bottom: 1.2rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(10, 24, 16, 0.74) 0%, rgba(10, 24, 16, 0.54) 42%, rgba(10, 24, 16, 0.7) 100%),
      url("hero-banner-wichita.jpg") center 10% / cover no-repeat;
  }

  .section {
    padding: 2rem 0 1.5rem;
  }

  .page-section {
    padding: 1rem 0 1.25rem;
  }

  .nav-wrap {
    min-height: 62px;
    gap: 0.5rem;
  }

  .brand {
    gap: 0;
    min-width: 0;
    max-width: calc(100% - 90px);
  }

  .brand-logo {
    width: 78px;
    flex: 0 0 auto;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .brand-copy span {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .brand-copy {
    margin-left: -0.15rem;
  }

  .nav-toggle {
    font-size: 0.92rem;
    padding: 0.38rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 84, 43, 0.14);
    background: rgba(255, 255, 255, 0.7);
  }

  .hero-grid {
    gap: 1.25rem;
    min-height: 0;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-card {
    margin-bottom: 0;
    margin-top: 0;
  }

  .page-hero-testimonials .page-hero-copy {
    padding: 0.2rem 0 0;
    margin-top: -0.35rem;
  }

  .page-hero-quote .page-hero-copy {
    padding: 0.08rem 0 0;
    margin-top: -0.35rem;
  }

  .page-hero-quote .page-hero-wrap {
    padding-top: 1.25rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1;
  }

  .hero p,
  .page-hero p,
  .section-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    padding-top: 0.5rem;
    gap: 0.75rem;
  }

  .site-footer .footer-grid {
    display: none;
  }

  .site-footer .container {
    padding: 0 0.85rem 0.45rem;
  }

  .site-footer .brand-logo {
    width: 92px;
  }

  .site-footer .brand-copy {
    margin-left: -0.1rem;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    width: 100%;
    padding-top: 0;
    justify-self: stretch;
    text-align: center;
  }

  .footer-grid > div:nth-child(3) {
    text-align: center;
  }

  .footer-icon-row {
    align-items: center;
    margin-bottom: 0.2rem;
  }

  .footer-icon-item {
    justify-content: center;
  }

  .footer-location {
    justify-content: center;
  }

  .footer-grid > div > strong {
    margin-bottom: 0.35rem;
  }

  .footer-grid > div:nth-child(2) .contact-list li {
    margin-bottom: 0.2rem;
  }

  .legal {
    padding-top: 0.18rem;
    margin-left: -0.85rem;
    margin-right: -0.85rem;
    margin-top: 0;
  }

  .form-grid,
  .hero-metrics,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1rem 1.1rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.1rem 1rem;
  }

  .cta-band,
  .quote-card,
  .contact-card,
  .hero-card {
    padding: 1.3rem;
  }

  .review-carousel-track {
    gap: 0.75rem;
  }

  .review-carousel-shell {
    width: min(calc(100% - 1.25rem), 100%);
  }

  .review-slide {
    flex: 0 0 100%;
  }
}
