/*
Theme Name: LawnCraft Custom Theme
Theme URI: https://example.com/
Author: OpenAI
Description: Custom WordPress theme converted from the provided LawnCraft static HTML files.
Version: 1.0.0
Text Domain: lawncraft
*/

:root {
  --bg: #f6f4ee;
  --surface: #ffffff;
  --surface-muted: #eef5e8;
  --text: #1e271f;
  --muted: #5a655c;
  --line: rgba(30, 39, 31, 0.1);
  --brand: #15803d;
  --brand-dark: #0b5b2a;
  --brand-soft: #dff2dc;
  --ink-dark: #111714;
  --shadow: 0 24px 60px rgba(17, 23, 20, 0.1);
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 128, 61, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfaf5 0%, #f6f4ee 100%);
}

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

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  background: #1b201c;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.topbar__content,
.site-header__inner,
.topbar__socials,
.hero__actions,
.hero__bullets,
.section-heading,
.trust-strip__grid,
.about-points article,
.cta-banner__content,
.cta-banner__actions {
  display: flex;
}

.topbar__content {
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  gap: 1.25rem;
}

.topbar__socials {
  gap: 1rem;
  font-size: 1.05rem;
}

.topbar__socials a {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  opacity: 0.9;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.topbar__socials a:hover,
.topbar__socials a:focus-visible {
  transform: translateY(-2px) scale(1.08);
  opacity: 1;
}

.topbar__socials img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(30, 39, 31, 0.06);
  position: relative;
  z-index: 20;
  padding-bottom: 2.1rem;
}

.site-header__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 1.15rem;
}

.header-main,
.header-meta,
.header-meta__item {
  display: flex;
}

.header-main {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-meta {
  align-items: center;
  gap: 1.2rem;
}

.header-meta__item {
  align-items: center;
  gap: 0.9rem;
  min-width: 240px;
}

.header-meta__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.header-meta__icon img,
.header-call__icon img,
.trust-strip__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.header-meta__item small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.header-meta__item strong {
  font-size: 1.05rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 0;
}

.brand__logo {
  width: clamp(170px, 24vw, 250px);
  height: auto;
  max-height: 84px;
  object-fit: contain;
  display: block;
}

.brand--footer {
  margin-bottom: 0.8rem;
}

.brand__logo--footer {
  width: clamp(150px, 20vw, 220px);
  max-height: 74px;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  z-index: 60;
  width: min(100%, 1080px);
  margin: 0 auto -4rem;
  transform: translateY(1.55rem);
  transition: top 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}


.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.92rem 1.25rem;
  border-radius: 24px 0 0 24px;
  box-shadow: var(--shadow);
  flex: 1 1 auto;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.68rem 0.9rem 0.68rem 0.72rem;
  border-radius: 0 24px 24px 0;
  background: var(--surface);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}

.header-call__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-dark);
  color: #fff;
}

.header-call small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.header-call strong {
  color: var(--brand);
}

.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  min-width: 170px;
  border-radius: 0;
  background: linear-gradient(145deg, #169846, #0f7f39);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: var(--shadow);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.header-quote:hover,
.header-quote:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: var(--ink-dark);
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: clip;
  padding: 2.5rem 0 4rem;
}

.hero__album,
.hero__slide,
.hero__sweep {
  position: absolute;
  inset: 0;
}

.hero__album {
  transform: scale(1.04);
}

.hero__slide {
  overflow: hidden;
  opacity: 0;
  background: #111814;
  transition: opacity 0.7s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__slide--1 img {
  object-position: center 56%;
}

.hero__slide--2 img {
  object-position: center 48%;
}

.hero__slide--3 img {
  object-position: center 54%;
}

.hero__sweep {
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0) 18%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.44) 52%,
    rgba(0, 0, 0, 0.18) 68%,
    rgba(0, 0, 0, 0) 86%
  );
  mix-blend-mode: multiply;
  animation: heroSweep 8s linear infinite;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.hero__arrow--prev {
  left: 18px;
}

.hero__arrow--next {
  right: 18px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 2.8rem 0 1.4rem;
  color: #fff;
  text-align: center;
}

.hero__panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.3rem, 3vw, 1.95rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 16, 11, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
}

.hero__tagline {
  font-style: italic;
  letter-spacing: 0.01em;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(223, 242, 220, 0.16);
  border: 1px solid rgba(223, 242, 220, 0.34);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.about-preview__content h2,
.why-us h2,
.process h2,
.quote-card h2,
.faq-panel h2,
.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

.hero h1 {
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(2.5rem, 5.7vw, 4.8rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
  line-height: 1.65;
}

.hero__actions {
  gap: 1rem;
  margin: 1.3rem 0 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--brand);
  color: #fff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--dark {
  background: var(--ink-dark);
  color: #fff;
}

.button--light {
  background: #fff;
  color: var(--ink-dark);
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.86);
  justify-content: center;
}

.hero__bullets li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: #8cff9c;
}

.trust-strip {
  margin-top: -62px;
  position: relative;
  z-index: 2;
}

.trust-strip__grid {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  gap: 1.25rem;
  padding: 1.25rem;
}

.trust-strip__grid article {
  flex: 1;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.trust-strip__icon,
.card__icon,
.process-card i,
.stats i {
  display: grid;
  place-items: center;
}

.trust-strip__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-soft);
  flex: 0 0 auto;
}

.trust-strip h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.trust-strip p,
.section-heading p,
.card p,
.about-preview__content p,
.why-us p,
.feature-grid p,
.process-card p,
.faq-list p,
.quote-card form span,
.site-footer p,
.site-footer li {
  color: var(--muted);
  line-height: 1.75;
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  background: var(--brand-soft);
  border: 0;
  color: var(--brand);
}

.section-tag--dark {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

.section-heading h2,
.about-preview__content h2,
.why-us h2,
.process h2,
.faq-panel h2,
.quote-card h2,
.cta-banner h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
}

.service-cards,
.feature-grid,
.process-grid,
.stats__grid,
.site-footer__grid {
  display: grid;
  gap: 1.4rem;
}

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

.card,
.process-card,
.quote-card,
.faq-panel,
.feature-grid article {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 128, 61, 0.08);
  box-shadow: var(--shadow);
}

.card {
  display: block;
  height: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2rem 1.7rem 1.8rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 244, 0.96)),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow:
    0 18px 34px rgba(17, 23, 20, 0.08),
    0 8px 12px rgba(21, 128, 61, 0.05);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.service-cards a.card {
  color: inherit;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(21, 128, 61, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(21, 128, 61, 0.06), transparent 42%);
  opacity: 0.85;
  z-index: -2;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -18% -44% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.18), rgba(21, 128, 61, 0));
  z-index: -1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(21, 128, 61, 0.28);
  box-shadow:
    0 28px 48px rgba(17, 23, 20, 0.12),
    0 16px 24px rgba(21, 128, 61, 0.09);
}

.card:hover::before,
.card:focus-within::before {
  opacity: 1;
  transform: scale(1.04);
}

.card:hover::after,
.card:focus-within::after {
  transform: translate(-8px, -10px) scale(1.12);
}

.card__icon {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(223, 242, 220, 0.95), rgba(185, 239, 197, 0.9));
  border: 1px solid rgba(21, 128, 61, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 24px rgba(21, 128, 61, 0.12);
  margin-bottom: 1.25rem;
  transition: transform 0.42s ease, border-radius 0.42s ease, box-shadow 0.42s ease;
}

.card__icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.12));
  z-index: -1;
}

.card__icon img {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(21, 128, 61, 0.15));
  transition: transform 0.55s ease;
}

.card:hover .card__icon,
.card:focus-within .card__icon {
  transform: rotate(-6deg) scale(1.08);
  border-radius: 24px 32px 24px 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 28px rgba(21, 128, 61, 0.18);
}

.card:hover .card__icon img,
.card:focus-within .card__icon img {
  transform: rotate(10deg) scale(1.06);
}

.card h3 {
  transition: color 0.28s ease, transform 0.28s ease;
}

.card p {
  transition: color 0.28s ease;
}

.card:hover h3,
.card:focus-within h3 {
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.card:hover p,
.card:focus-within p {
  color: #435045;
}

.service-cards .card:nth-child(2n) .card__icon {
  border-radius: 50%;
}

.service-cards .card:nth-child(3n) .card__icon {
  background:
    linear-gradient(160deg, rgba(227, 246, 230, 0.98), rgba(201, 243, 212, 0.92));
}

.service-cards .card:nth-child(4n) .card__icon {
  background:
    linear-gradient(160deg, rgba(233, 248, 236, 0.98), rgba(176, 234, 193, 0.9));
}

.card h3,
.process-card h3,
.faq-list summary,
.site-footer h3 {
  margin: 0 0 0.7rem;
  font-size: 1.4rem;
}

.about-preview__grid,
.split-section__grid,
.quote-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview__media {
  position: relative;
}

.about-preview__media img {
  min-height: 640px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  width: 220px;
  padding: 1.6rem;
  border-radius: 30px;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.experience-badge strong {
  display: block;
  font-size: 3rem;
  font-family: "Libre Baskerville", serif;
}

.about-preview__content {
  max-width: 560px;
}

.about-points {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}

.about-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.15rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 241, 0.92));
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow: 0 16px 30px rgba(17, 23, 20, 0.06);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.about-points article:hover,
.about-points article:focus-within {
  transform: translateX(8px);
  border-color: rgba(21, 128, 61, 0.24);
  box-shadow: 0 22px 40px rgba(17, 23, 20, 0.09);
}

.about-points__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand), #22a552);
  flex: 0 0 auto;
  box-shadow: 0 12px 24px rgba(21, 128, 61, 0.18);
}

.about-points__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.about-points h3,
.feature-grid h3 {
  margin: 0 0 0.35rem;
}

.about-preview__cta {
  margin-top: 1.6rem;
}

.split-section {
  padding-top: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 243, 0.94));
  border: 1px solid rgba(21, 128, 61, 0.1);
  box-shadow: 0 16px 32px rgba(17, 23, 20, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.14), rgba(21, 128, 61, 0));
  transition: transform 0.35s ease;
}

.feature-grid article:hover,
.feature-grid article:focus-within {
  transform: translateY(-8px);
  border-color: rgba(21, 128, 61, 0.22);
  box-shadow: 0 24px 44px rgba(17, 23, 20, 0.1);
}

.feature-grid article:hover::before,
.feature-grid article:focus-within::before {
  transform: scale(1.15);
}

.feature-grid__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(223, 242, 220, 1), rgba(191, 238, 201, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-grid__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.image-stack {
  position: relative;
  min-height: 640px;
}

.image-stack img:first-child,
.image-stack img:last-child {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  inset: 0 0 auto auto;
  width: 78%;
  height: 500px;
  border-radius: 30px;
}

.image-stack img:last-child {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 300px;
  border-radius: 28px;
  border: 12px solid rgba(255, 255, 255, 0.92);
}

.stats {
  padding: 4rem 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 31, 17, 0.58), rgba(12, 31, 17, 0.72)),
    url("https://picsum.photos/seed/lawncraft-stats/1600/900") center/cover no-repeat;
}

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

.stats article {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.stats article:hover,
.stats article:focus-within {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.stats__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stats__icon img {
  width: 30px;
  height: 30px;
  display: block;
}

.stats strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-family: "Cormorant Garamond", serif;
}

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

.process-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  overflow: clip;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(21, 128, 61, 0.22);
  box-shadow: 0 28px 44px rgba(17, 23, 20, 0.12);
}

.process-card__number {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 0 0 0 28px;
  background: var(--brand);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.process-card__icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  margin: 1rem 0 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.42s ease;
}

.process-card__icon img {
  width: 38px;
  height: 38px;
  display: block;
}

.process-card:hover .process-card__icon,
.process-card:focus-within .process-card__icon {
  transform: scale(1.08) rotate(6deg);
}

.quote-section__grid {
  align-items: start;
  gap: 2rem;
}

.faq-panel,
.quote-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 244, 0.95));
  border: 1px solid rgba(21, 128, 61, 0.1);
  box-shadow:
    0 20px 40px rgba(17, 23, 20, 0.08),
    0 10px 18px rgba(21, 128, 61, 0.05);
}

.faq-panel::before,
.quote-card::before {
  content: "";
  position: absolute;
  inset: auto -14% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.12), rgba(21, 128, 61, 0));
  pointer-events: none;
}

.faq-panel__intro,
.quote-card__intro {
  max-width: 560px;
  margin: 0.9rem 0 0;
}

.quote-card__highlights,
.cta-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quote-card__highlights {
  margin: 1.2rem 0 1.3rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.faq-list details {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 128, 61, 0.1);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(17, 23, 20, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  transform: translateY(-3px);
  border-color: rgba(21, 128, 61, 0.24);
  box-shadow: 0 18px 30px rgba(17, 23, 20, 0.08);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  font-weight: 700;
  transition: background 0.24s ease, color 0.24s ease;
}

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

.faq-list details:hover summary,
.faq-list details[open] summary {
  background: linear-gradient(90deg, rgba(223, 242, 220, 0.75), rgba(223, 242, 220, 0.18));
  color: var(--brand-dark);
}

.faq-list__plus {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 1.2rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.faq-list details:hover .faq-list__plus,
.faq-list details[open] .faq-list__plus {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

.faq-list details p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 1.2rem;
  transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.32s ease;
  opacity: 0;
}

.faq-list details:hover p,
.faq-list details[open] p {
  max-height: 180px;
  padding: 0 1.2rem 1.2rem;
  opacity: 1;
}

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

.quote-card label {
  display: grid;
  gap: 0.45rem;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(30, 39, 31, 0.15);
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  outline: none;
  border-color: rgba(21, 128, 61, 0.5);
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
  transform: translateY(-1px);
}

.quote-card__highlights span,
.cta-banner__chips span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.quote-card__highlights span {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.cta-banner {
  padding: 0 0 5rem;
}

.cta-banner__content {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 2rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(120deg, #116b33, #19a04b 58%, #26b95a);
  color: #fff;
  box-shadow:
    0 26px 50px rgba(17, 23, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-banner__copy {
  max-width: 760px;
  text-align: left;
}

.cta-banner__copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.cta-banner__chips {
  margin-top: 1.15rem;
}

.cta-banner__chips span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-banner__actions {
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner__actions .button {
  min-width: 206px;
  border-radius: 999px;
  min-height: 52px;
  text-align: center;
  justify-content: center;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.16);
}

.cta-banner__actions .button--dark {
  background: #102116;
  color: #fff;
}

.cta-banner__actions .button--light {
  background: #fff;
  color: var(--brand-dark);
}

.site-footer {
  padding: 4rem 0;
  background: #1b201c;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__grid {
  grid-template-columns: 1.2fr 0.9fr 0.85fr 0.95fr;
  gap: 1.6rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__socials {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
}

.site-footer__socials a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  transform: translateY(-2px);
  opacity: 1;
}

.site-footer__socials img {
  width: 100%;
  height: 100%;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.8rem;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.service-hero {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.52), rgba(9, 13, 10, 0.42)),
    url("assets/icons/closeup-shot-shovel-garden-with-trees (1).jpg") center/cover no-repeat;
}

.service-hero__content {
  position: relative;
  z-index: 1;
  min-height: 280px;
  display: grid;
  align-content: center;
  color: #fff;
}

.service-hero__content h1 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.service-hero__content p {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.service-hero__actions {
  margin-top: 1rem;
}

.service-layout {
  padding-top: 3.5rem;
}

.service-layout__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.8rem;
  align-items: start;
}

.services-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
}

.services-sidebar__card,
.services-sidebar__callout {
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow: 0 14px 26px rgba(17, 23, 20, 0.08);
}

.services-sidebar__card nav {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.services-sidebar__card nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  font-weight: 600;
  color: #303a31;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.services-sidebar__card nav a::after {
  content: ">";
  font-size: 0.9rem;
}

.services-sidebar__card nav a:hover,
.services-sidebar__card nav a:focus-visible {
  background: var(--brand);
  color: #fff;
  transform: translateX(4px);
}

.services-sidebar__callout h3 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
}

.services-sidebar__callout p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.services-sidebar__callout .button + .button {
  margin-top: 0.6rem;
}

.services-content {
  display: grid;
  gap: 1.25rem;
}

.service-section {
  scroll-margin-top: 110px;
  padding: 1.35rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 243, 0.95));
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow: 0 18px 30px rgba(17, 23, 20, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: fadeLift 0.65s ease both;
}

.service-section:nth-child(2) {
  animation-delay: 0.06s;
}

.service-section:nth-child(3) {
  animation-delay: 0.12s;
}

.service-section:nth-child(4) {
  animation-delay: 0.18s;
}

.service-section:nth-child(5) {
  animation-delay: 0.24s;
}

.service-section:nth-child(6) {
  animation-delay: 0.3s;
}

.service-section:nth-child(7) {
  animation-delay: 0.36s;
}

.service-section:nth-child(8) {
  animation-delay: 0.42s;
}

.service-section:hover,
.service-section:focus-within {
  transform: translateY(-8px);
  border-color: rgba(21, 128, 61, 0.24);
  box-shadow: 0 24px 42px rgba(17, 23, 20, 0.11);
}

.service-section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.service-section__head h2 {
  margin: 0.45rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.service-section > p {
  margin: 0 0 1rem;
  color: #405045;
  line-height: 1.75;
}

.service-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.service-section__grid > div {
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 128, 61, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-section__grid > div:hover,
.service-section__grid > div:focus-within {
  transform: translateY(-4px);
  border-color: rgba(21, 128, 61, 0.24);
  box-shadow: 0 14px 26px rgba(17, 23, 20, 0.08);
}

.service-section__grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.service-section__grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-section__grid ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-meta-grid article {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow: 0 12px 22px rgba(17, 23, 20, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-meta-grid article:hover,
.service-meta-grid article:focus-within {
  transform: translateY(-6px);
  border-color: rgba(21, 128, 61, 0.24);
  box-shadow: 0 20px 32px rgba(17, 23, 20, 0.1);
}

.about-hero {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.52), rgba(9, 13, 10, 0.42)),
    url("assets/icons/IMG_24867.jpg") center/cover no-repeat;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  min-height: 280px;
  display: grid;
  align-content: center;
  color: #fff;
}

.about-hero__content h1 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.about-hero__content p {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.about-page-intro {
  padding-top: 3.5rem;
}

.about-page-intro__grid,
.about-roadmap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-page-intro__media {
  position: relative;
}

.about-page-intro__media img,
.about-roadmap__media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-page-intro__badge {
  position: absolute;
  right: -0.8rem;
  bottom: 1.2rem;
  width: 205px;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 20px 34px rgba(17, 23, 20, 0.2);
}

.about-page-intro__badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
}

.about-page-intro__points {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.9rem;
}

.about-page-intro__points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 128, 61, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-page-intro__points article:hover {
  transform: translateX(6px);
  border-color: rgba(21, 128, 61, 0.25);
  box-shadow: 0 12px 22px rgba(17, 23, 20, 0.08);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-values__grid article,
.about-roadmap__cards article {
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow: 0 14px 24px rgba(17, 23, 20, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-values__grid article:hover,
.about-roadmap__cards article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(17, 23, 20, 0.1);
}

.about-values__grid h3,
.about-roadmap__cards h3 {
  margin: 0 0 0.5rem;
}

.about-values__grid p,
.about-roadmap__cards p,
.about-roadmap__grid > div > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-roadmap__cards {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.about-insights {
  padding-top: 1rem;
}

.about-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-insights__grid article {
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(21, 128, 61, 0.12);
  box-shadow: 0 14px 24px rgba(17, 23, 20, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-insights__grid article:hover,
.about-insights__grid article:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(17, 23, 20, 0.1);
}

.about-insights__grid h3 {
  margin: 0 0 0.5rem;
}

.about-insights__grid p,
.about-insights__grid ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-insights__grid ul {
  padding-left: 1rem;
}

.about-faqs .faq-list {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.about-stats .stats__grid article {
  animation: fadeLift 0.6s ease both;
}

.about-stats .stats__grid article:nth-child(2) {
  animation-delay: 0.08s;
}

.about-stats .stats__grid article:nth-child(3) {
  animation-delay: 0.16s;
}

.about-stats .stats__grid article:nth-child(4) {
  animation-delay: 0.24s;
}

.service-meta-grid h2 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.service-meta-grid p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-meta-grid ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.quote-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 14px;
}

.quote-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 8, 0.58);
  backdrop-filter: blur(5px);
}

.quote-modal__panel {
  position: relative;
  width: min(calc(100% - 20px), 560px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  border-radius: 24px;
  padding: 1.1rem 1.1rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 244, 0.95));
  border: 1px solid rgba(21, 128, 61, 0.14);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.25s ease;
  scrollbar-gutter: stable;
}

.quote-modal.is-open .quote-modal__panel {
  transform: translateY(0) scale(1);
}

.quote-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.12);
  color: var(--brand-dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.quote-modal__panel h2 {
  margin: 0.45rem 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4.2vw, 2.45rem);
  line-height: 1;
}

.quote-modal__panel p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.quote-modal__form {
  display: grid;
  gap: 0.7rem;
}

.quote-modal__form label {
  display: grid;
  gap: 0.28rem;
}

.quote-modal__form input,
.quote-modal__form select,
.quote-modal__form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(30, 39, 31, 0.16);
  background: #fff;
}

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

body.modal-open {
  overflow: hidden;
}

.main-nav a[aria-current="page"] {
  color: var(--brand);
}

@media (max-width: 1100px) {
  .service-layout__grid {
    grid-template-columns: 1fr;
  }

  .services-sidebar {
    position: static;
  }

  .about-page-intro__grid,
  .about-roadmap__grid {
    grid-template-columns: 1fr;
  }

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

  .about-insights__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .service-hero,
  .service-hero__content {
    min-height: 220px;
  }

  .about-hero,
  .about-hero__content {
    min-height: 220px;
  }

  .service-layout {
    padding-top: 2.5rem;
  }

  .service-section {
    padding: 1rem;
  }

  .service-section__grid {
    grid-template-columns: 1fr;
  }

  .service-meta-grid {
    grid-template-columns: 1fr;
  }

  .about-values__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .about-page-intro {
    padding-top: 2.4rem;
  }

  .about-page-intro__badge {
    position: static;
    margin-top: 0.8rem;
    width: 100%;
  }

  .service-hero__actions .button {
    width: 100%;
    max-width: 240px;
  }

  .quote-modal__panel {
    padding: 1rem;
    border-radius: 22px;
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .service-cards,
  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-preview__grid,
  .split-section__grid,
  .quote-section__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 520px;
  }

  .header-meta {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .header-main {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-shell {
    width: min(100%, 900px);
  }

  .cta-banner__content {
    align-items: flex-start;
  }

  .main-nav {
    gap: 1.2rem;
    padding: 0.9rem 1rem;
  }

  .header-quote {
    min-width: 146px;
    padding: 0 0.85rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 860px) {
  .topbar__content {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.6rem 0;
    text-align: center;
  }

  .header-meta {
    display: none;
  }

  .site-header__inner {
    padding: 0.9rem 0 0.85rem;
  }

  .header-main {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
  }

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

  .brand__logo {
    width: clamp(150px, 46vw, 220px);
    max-height: 72px;
  }

  .brand__logo--footer {
    width: clamp(140px, 42vw, 190px);
    max-height: 62px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(30, 39, 31, 0.12);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    color: #111;
    box-shadow: 0 10px 20px rgba(17, 23, 20, 0.06);
  }

.hamburger {
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  display: block;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #111;
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    margin: 0.9rem 0 0;
    transform: none;
    z-index: 80;
  }

  .nav-shell.is-sticky {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
    margin: 0.9rem 0 0;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    gap: 0.55rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.7rem 0.8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(21, 128, 61, 0.1);
  }

  .header-quote,
  .header-call {
    min-height: 56px;
    border-radius: 18px;
  }

  .header-quote {
    min-width: 0;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .header-call {
    justify-content: center;
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
    background: rgba(255, 255, 255, 0.98);
  }

  .header-call__icon {
    width: 42px;
    height: 42px;
  }

  .header-call__icon img {
    width: 20px;
    height: 20px;
  }

  .header-call small {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.1;
  }

  .header-call strong {
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .trust-strip {
    margin-top: -30px;
  }

  .trust-strip__grid,
  .hero__actions,
  .cta-banner__content,
  .cta-banner__actions {
    flex-direction: column;
  }

  .trust-strip__grid article {
    padding: 0.4rem 0.25rem;
  }

  .service-cards,
  .feature-grid,
  .process-grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 3.25rem 0 4.25rem;
  }

  .about-preview__media img {
    min-height: 420px;
  }

  .experience-badge {
    right: 1rem;
    bottom: 1rem;
    width: 180px;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    position: static;
    width: 100%;
    height: 280px;
    border: 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.8rem);
  }

  .hero p {
    font-size: 0.94rem;
  }

  .hero__panel {
    max-width: 100%;
  }

  .hero__slide img {
    object-fit: contain;
  }

  .hero__arrow {
    width: 46px;
    height: 46px;
  }

  .faq-panel,
  .quote-card {
    padding: 1.45rem;
  }

  .faq-list summary {
    padding: 1rem;
  }

  .faq-list details:hover p,
  .faq-list details[open] p {
    max-height: 260px;
    padding: 0 1rem 1rem;
  }

  .quote-card__highlights,
  .cta-banner__chips,
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner__content {
    padding: 1.5rem;
    border-radius: 28px;
  }

  .cta-banner__actions .button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .cta-banner__content {
    align-items: flex-start;
    gap: 1.25rem;
  }

  .cta-banner__copy {
    max-width: 100%;
  }

  .cta-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__content {
    padding-top: 2.8rem;
  }

  .hero__panel {
    max-width: 680px;
  }

  .topbar__content {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding-bottom: 1.2rem;
  }

  .brand__logo {
    width: clamp(140px, 52vw, 180px);
    max-height: 58px;
  }

  .brand__logo--footer {
    width: clamp(132px, 48vw, 168px);
    max-height: 54px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__bullets {
    gap: 0.7rem;
    justify-content: flex-start;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading h2,
  .about-preview__content h2,
  .why-us h2,
  .process h2,
  .faq-panel h2,
  .quote-card h2,
  .cta-banner h2 {
    font-size: clamp(1.95rem, 9vw, 2.6rem);
  }
}

@keyframes heroSweep {
  0% {
    transform: translateX(-38%) skewX(-10deg);
    opacity: 0.55;
  }

  50% {
    opacity: 0.82;
  }

  100% {
    transform: translateX(38%) skewX(-10deg);
    opacity: 0.55;
  }
}

.quote-form-status {
  margin: 0.5rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  display: none;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.quote-form-status.is-visible {
  display: block;
  animation: quoteStatusIn 0.35s ease forwards;
}

.quote-form-status.is-success {
  background: rgba(21, 128, 61, 0.12);
  color: #0b5b2a;
  border: 1px solid rgba(21, 128, 61, 0.22);
}

.quote-form-status.is-error {
  background: rgba(185, 28, 28, 0.1);
  color: #991b1b;
  border: 1px solid rgba(185, 28, 28, 0.2);
}

.quote-modal__panel.is-submitting {
  pointer-events: none;
}

.quote-modal__panel.is-submitting button[type="submit"] {
  opacity: 0.9;
}

.quote-modal.is-closing .quote-modal__panel {
  animation: quoteModalOut 0.3s ease forwards;
}

.quote-modal.is-closing .quote-modal__backdrop {
  animation: quoteBackdropOut 0.3s ease forwards;
}

@keyframes quoteStatusIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quoteModalOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
}

@keyframes quoteBackdropOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* === Quote modal sizing improvement === */
.quote-modal {
  padding: 14px;
}

.quote-modal__panel {
  width: min(calc(100% - 20px), 560px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 24px;
  scrollbar-gutter: stable;
}

.quote-modal__panel h2 {
  margin: 0.45rem 0 0.35rem;
  font-size: clamp(1.8rem, 4.2vw, 2.45rem);
  line-height: 1;
}

.quote-modal__panel > p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.quote-modal__form {
  gap: 0.7rem;
}

.quote-modal__form label {
  gap: 0.28rem;
}

.quote-modal__form input,
.quote-modal__form select,
.quote-modal__form textarea {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
}

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

.quote-modal__close {
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
}

@media (max-width: 640px) {
  .quote-modal {
    padding: 10px;
    align-items: center;
  }

  .quote-modal__panel {
    width: min(calc(100% - 12px), 100%);
    max-height: 86vh;
    padding: 0.95rem 0.9rem 0.9rem;
    border-radius: 20px;
  }

  .quote-modal__panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    margin-top: 0.35rem;
  }

  .quote-modal__panel > p {
    font-size: 0.94rem;
    margin-bottom: 0.75rem;
  }

  .quote-modal__form {
    gap: 0.62rem;
  }

  .quote-modal__form input,
  .quote-modal__form select,
  .quote-modal__form textarea {
    padding: 0.72rem 0.82rem;
    font-size: 16px;
  }

  .quote-modal__form textarea {
    min-height: 96px;
  }

  .quote-modal__close {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .quote-modal__form .button,
  .quote-modal__form button[type="submit"] {
    min-height: 48px;
  }
}

/* === CLEAN STICKY HEADER (NO DESIGN CHANGE) === */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 300;
  transition: box-shadow 0.25s ease;
}

.site-chrome.is-sticky {
  box-shadow: 0 10px 28px rgba(17, 23, 20, 0.10);
}

@media (max-width: 640px) {
  .quote-modal {
    padding: 10px;
    align-items: center;
  }

  .quote-modal__panel {
    width: min(calc(100% - 12px), 100%);
    max-height: 86vh;
    padding: 0.95rem 0.9rem 0.9rem;
    border-radius: 20px;
  }

  .quote-modal__panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    margin-top: 0.35rem;
  }

  .quote-modal__panel > p {
    font-size: 0.94rem;
    margin-bottom: 0.75rem;
  }

  .quote-modal__form {
    gap: 0.62rem;
  }

  .quote-modal__form input,
  .quote-modal__form select,
  .quote-modal__form textarea {
    padding: 0.72rem 0.82rem;
    font-size: 16px;
  }

  .quote-modal__form textarea {
    min-height: 96px;
  }

  .quote-modal__close {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .quote-modal__form .button,
  .quote-modal__form button[type="submit"] {
    min-height: 48px;
  }
}

.jobber-badge {
  text-align: center;
  margin: 2rem 0;
}

.jobber-badge img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.quote-card__form {
  transition: transform 0.2s ease;
}

.quote-form-status {
  margin-top: 0.6rem;
  font-weight: 600;
}

.quote-form-status.is-success {
  color: #15803d;
}

.quote-form-status.is-error {
  color: #b91c1c;
}

/* === Success confirmation popup === */
.quote-success-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 16px;
}

.quote-success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 8, 0.58);
  backdrop-filter: blur(5px);
}

.quote-success-modal__panel {
  position: relative;
  width: min(calc(100% - 24px), 460px);
  padding: 2rem 1.4rem;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 244, 0.95));
  border: 1px solid rgba(21, 128, 61, 0.14);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(12px) scale(0.96);
  transition: transform 0.28s ease;
  z-index: 1;
}

.quote-success-modal.is-open .quote-success-modal__panel {
  transform: translateY(0) scale(1);
}

.quote-success-modal__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), #22a552);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(21, 128, 61, 0.22);
}

.quote-success-modal__panel h3 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  line-height: 1.05;
  color: var(--ink-dark);
}

.quote-success-modal__panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .quote-success-modal__panel {
    width: min(calc(100% - 12px), 100%);
    padding: 1.6rem 1rem;
    border-radius: 22px;
  }

  .quote-success-modal__icon {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
    margin-bottom: 0.85rem;
  }

  .quote-success-modal__panel h3 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .quote-success-modal__panel p {
    font-size: 0.95rem;
  }
}