:root {
  --brand-green: #339e0e;
  --title-green: #25750a;
  --green-900: #1f6509;
  --green-800: #2b870c;
  --green-700: var(--brand-green);
  --green-500: var(--brand-green);
  --green-100: #eef8ea;
  --ink: #17201a;
  --muted: #5c675f;
  --line: #dbe5da;
  --paper: #ffffff;
  --soft: #e0eadb;
  --accent: #f1c94a;
  --shadow: 0 18px 60px rgba(16, 41, 28, 0.14);
  --content-max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--accent);
  color: var(--green-900);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

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

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header > * {
  min-width: 0;
}

.brand img {
  width: clamp(170px, 20vw, 250px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  font-weight: 800;
}

.site-nav a,
.header-call,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover {
  color: var(--green-700);
}

.header-call {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  background: var(--title-green);
  border: 1px solid var(--title-green);
  border-radius: 999px;
  color: white;
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
  font-weight: 900;
  white-space: nowrap;
}

.header-call:hover {
  background: var(--green-900);
  border-color: var(--green-900);
}

.header-call .phone-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-call strong {
  line-height: 1;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  background: var(--title-green);
  color: white;
}

@media (min-width: 1680px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 720px);
  }
}

.hero-media {
  min-height: 520px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  background: var(--green-900);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slider-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: rgba(31, 101, 9, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.hero-slider-control:hover {
  background: var(--title-green);
}

.hero-slider-control.prev {
  left: 18px;
}

.hero-slider-control.next {
  right: 18px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-slider-dots span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.hero-slider-dots span.is-active {
  width: 28px;
  background: var(--accent);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(37, 117, 10, 0.98), rgba(31, 101, 9, 0.96)),
    radial-gradient(circle at top right, rgba(241, 201, 74, 0.18), transparent 45%);
}

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

.hero .eyebrow,
.contact-section .eyebrow {
  color: var(--accent);
}

.hero .eyebrow {
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  text-shadow: 0 3px 14px rgba(16, 41, 28, 0.28);
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 3.49rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 8px 0 12px;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: var(--green-900);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: white;
}

.hero-actions .button {
  min-height: 62px;
  padding: 0 30px;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  box-shadow: 0 14px 34px rgba(16, 41, 28, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.hero-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16, 41, 28, 0.34);
}

.notice-band {
  padding: 18px clamp(18px, 5vw, 64px);
  background: var(--green-100);
  border-bottom: 1px solid var(--line);
  color: var(--green-900);
  text-align: center;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.section > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.about-section {
  background: linear-gradient(180deg, white 0%, var(--soft) 100%);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(16, 41, 28, 0.06);
}

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

.intro-copy p:first-child {
  margin-top: 4px;
}

.service-section {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16, 41, 28, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(16, 41, 28, 0.18);
}

.service-card.featured {
  grid-column: auto;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card span {
  color: var(--green-500);
  font-weight: 900;
}

.service-card p,
.service-card li,
.process-grid p,
.quote-panel p,
.account-copy p,
.split-copy p,
.contact-section p,
.trust-grid p,
.faq-grid p {
  color: var(--muted);
  margin: 0;
}

.trust-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: clamp(30px, 5vw, 52px);
  margin-bottom: 22px;
}

.trust-heading h3 {
  max-width: 860px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.36rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  min-height: 150px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 41, 28, 0.04);
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 22px clamp(18px, 5vw, 64px);
  background: var(--green-900);
  color: white;
}

@media (min-width: 1536px) {
  .notice-band {
    padding-left: max(clamp(18px, 5vw, 64px), calc((100vw - var(--content-max)) / 2));
    padding-right: max(clamp(18px, 5vw, 64px), calc((100vw - var(--content-max)) / 2));
  }

  .client-strip,
  .mini-cta,
  .contact-section,
  .site-footer {
    padding-left: max(clamp(18px, 5vw, 64px), calc((100vw - var(--content-max)) / 2));
    padding-right: max(clamp(18px, 5vw, 64px), calc((100vw - var(--content-max)) / 2));
  }
}

.client-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.process-section {
  background: white;
}

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

.process-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: var(--green-100);
  border: 1px solid rgba(51, 158, 14, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: auto -18px -48px auto;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(51, 158, 14, 0.12);
  border-radius: 50%;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green);
  color: white;
  border-radius: 50%;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-copy p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background: var(--green-100);
  border-block: 1px solid rgba(51, 158, 14, 0.18);
}

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

.coverage-list p {
  margin-top: 4px;
}

.coverage-list ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  position: relative;
  padding-left: 24px;
}

.coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  background: var(--brand-green);
  border-radius: 50%;
}

.quote-section {
  background: white;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  background: var(--green-900);
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel .eyebrow {
  color: var(--accent);
}

.quote-panel p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

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

.quote-checklist span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 800;
}

.quote-checklist span::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.account-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding-block: clamp(34px, 5vw, 58px);
  background: var(--soft);
}

.account-section h2 {
  max-width: 820px;
  font-size: clamp(1.62rem, 2.65vw, 2.7rem);
}

.account-copy p {
  max-width: 760px;
  margin-top: 12px;
}

.account-steps {
  display: grid;
  gap: 8px;
  counter-reset: account-step;
}

.account-steps span {
  counter-increment: account-step;
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 56px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-900);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(16, 41, 28, 0.05);
}

.account-steps span::before {
  content: counter(account-step);
  position: absolute;
  left: 16px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green);
  color: white;
  border-radius: 50%;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--green-800);
  font-weight: 900;
}

.partners {
  background: var(--soft);
  padding-top: clamp(42px, 6vw, 72px);
}

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

.partner-grid img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-section {
  background: white;
}

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

.faq-grid details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--green-900);
  font-size: 1.06rem;
  font-weight: 900;
}

.faq-grid p {
  padding-top: 14px;
}

.mini-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(38px, 6vw, 64px) clamp(18px, 5vw, 64px);
  background: var(--green-100);
  border-top: 1px solid rgba(51, 158, 14, 0.18);
}

.mini-cta h2 {
  max-width: 900px;
  font-size: clamp(1.53rem, 2.81vw, 2.72rem);
}

.mini-cta .button {
  min-width: 190px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: clamp(46px, 7vw, 78px) clamp(18px, 5vw, 64px);
  background: var(--title-green);
  color: white;
}

.contact-section p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section .contact-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.contact-card {
  width: min(100%, 440px);
  display: grid;
  gap: 4px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: white;
  text-decoration: none;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.phone-card {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--green-900);
}

.phone-card:hover {
  background: #e6bd37;
  border-color: #e6bd37;
  color: var(--green-900);
}

.phone-card span {
  color: rgba(31, 101, 9, 0.72);
}

.phone-card:hover span {
  color: rgba(31, 101, 9, 0.72);
}

.mobile-call-bar {
  display: none;
}

.error-page {
  min-height: 100vh;
  background: var(--brand-green);
}

.error-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: clamp(24px, 6vw, 72px);
}

.error-brand img {
  width: min(320px, 78vw);
  background: white;
  border-radius: 8px;
  padding: 18px;
}

.error-panel {
  max-width: 760px;
  color: white;
}

.error-panel .eyebrow {
  color: var(--accent);
}

.error-panel h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.error-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px, auto));
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 64px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: var(--green-900);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-green);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .about-panel,
  .trust-heading,
  .split-section,
  .coverage-section,
  .account-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-slider-control {
    width: 42px;
    height: 42px;
  }

  .service-grid,
  .trust-grid,
  .process-grid,
  .quote-panel,
  .partner-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-strip {
    grid-template-columns: repeat(3, max-content);
  }

  .contact-actions {
    margin-top: 4px;
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
  }

  .brand img {
    width: 162px;
  }

  .header-call {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.95rem;
    gap: 8px;
  }

  .header-call .phone-icon {
    width: 19px;
    height: 19px;
    flex-basis: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 18px 54px;
  }

  .hero-slider-control {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .hero-slider-control.prev {
    left: 10px;
  }

  .hero-slider-control.next {
    right: 10px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .service-grid,
  .trust-grid,
  .process-grid,
  .quote-panel,
  .quote-checklist,
  .partner-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .client-strip {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .client-strip span {
    width: 100%;
  }

  .contact-section .contact-actions {
    justify-content: stretch;
  }

  .contact-card {
    width: 100%;
  }

  .mobile-call-bar {
    position: sticky;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 18px;
    background: var(--accent);
    color: var(--green-900);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 -10px 30px rgba(16, 41, 28, 0.18);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 86px;
  }
}
