:root {
  --green-900: #1f4025;
  --green-800: #526f3c;
  --green-700: #6f8a4b;
  --sage: #f4f8ee;
  --cream: #fbf6ec;
  --cream-2: #f4ead8;
  --gold: #dca527;
  --ink: #1f2a24;
  --muted: #6d776f;
  --line: #dfe5d8;
  --white: #ffffff;
  --shadow: 0 10px 24px rgba(31, 64, 37, 0.12);
  --header-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(245px, 330px) 1fr minmax(178px, 230px);
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  padding: 0 clamp(52px, 9vw, 142px);
  overflow: visible;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 252, 0.99) 0%,
    rgba(255, 255, 252, 0.99) 43%,
    rgba(255, 255, 252, 0.38) 59%,
    rgba(255, 255, 252, 0.03) 100%
  );
  border-bottom: 1px solid rgba(82, 111, 60, 0.18);
  backdrop-filter: none;
  transition: transform 180ms ease, box-shadow 180ms ease, height 180ms ease, background 180ms ease;
}
.site-header.is-hidden:not(.is-menu-open):not(:focus-within) { transform: translateY(calc(-100% - 72px)); }
.site-header.is-floating {
  --header-height: 78px;
  background: rgba(255, 255, 252, 0.94);
  box-shadow: 0 12px 26px rgba(23, 59, 42, 0.08);
}
.brand {
  position: relative;
  z-index: 3;
  align-self: start;
  width: fit-content;
}
.brand img {
  width: clamp(112px, 10vw, 156px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  transform: translateY(2px);
  transition: width 180ms ease, transform 180ms ease;
}
.site-header.is-floating .brand img {
  width: clamp(88px, 7.4vw, 118px);
  transform: translateY(-1px);
}
.site-nav {
  position: relative;
  z-index: 110;
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3.3vw, 48px);
  color: #0f1914;
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  font-weight: 650;
}
.site-nav a {
  position: relative;
  padding: 10px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  transform: scaleX(0);
  transition: transform 160ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active {
  color: var(--green-700);
  font-weight: 750;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  place-items: center;
}
.menu-line {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: currentColor;
}

.quote-button,
.phone-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 750;
  text-transform: none;
}
.quote-button {
  padding: 0 27px;
  color: var(--white);
  background: var(--green-700);
  border: 1px solid var(--green-800);
  box-shadow: none;
}
.header-quote {
  position: relative;
  z-index: 30;
  justify-self: end;
  min-width: 178px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 750;
  text-transform: none;
  box-shadow: none;
}
.phone-button {
  padding: 0 34px;
  color: var(--green-800);
  background: var(--white);
  border: 1.5px solid var(--green-800);
}
.button-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  height: 340px;
  display: grid;
  grid-template-columns: 44% 56%;
  background: linear-gradient(90deg, #fffaf1 0%, #fbf6ec 50%, #f6eddc 100%);
  overflow: visible;
}
.hero-copy {
  align-self: start;
  padding: 42px 18px 24px clamp(24px, 4.5vw, 58px);
}
h1,
h2,
h3,
p { overflow-wrap: anywhere; }
h1 {
  max-width: 520px;
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.78rem, 2.65vw, 2.72rem);
  line-height: 1.05;
  font-weight: 900;
}
.hero-copy p {
  max-width: 460px;
  margin: 11px 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}
.area-line {
  display: inline-flex;
  margin-top: 9px;
  color: var(--green-700);
  font-size: 0.84rem;
  font-weight: 850;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 14px;
}
.hero-image {
  position: relative;
  z-index: 1;
  height: 396px;
  margin-top: -70px;
  overflow: hidden;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 35%;
  background: linear-gradient(90deg, var(--cream), rgba(251, 246, 236, 0));
}
.hero-image picture,
.hero-image > img,
.hero-image picture > img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: 58% 11%;
}
.owner-card {
  position: absolute;
  z-index: 2;
  right: clamp(34px, 6vw, 90px);
  bottom: 24px;
  width: max-content;
  min-width: 188px;
  max-width: calc(100% - 68px);
  padding: 12px 14px;
  border: 1px solid rgba(36, 82, 56, 0.18);
  border-radius: 7px;
  background: rgba(251, 246, 236, 0.93);
  box-shadow: var(--shadow);
}
.owner-card strong,
.owner-card span { display: block; }
.owner-card strong {
  color: var(--green-900);
  font-size: 0.84rem;
  white-space: nowrap;
}
.owner-card span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.services {
  padding: 10px clamp(40px, 8vw, 142px) 12px;
  background: linear-gradient(180deg, #f8fbf2 0%, #f3f7ec 100%);
  border-top: 1px solid rgba(82, 111, 60, 0.12);
  border-bottom: 1px solid rgba(82, 111, 60, 0.12);
}
.section-title {
  display: grid;
  grid-template-columns: minmax(42px, 68px) auto minmax(42px, 68px);
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 9px;
  color: var(--green-900);
}
.section-title span {
  height: 1px;
  background: rgba(82, 111, 60, 0.46);
}
.section-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.25vw, 1.95rem);
  line-height: 1;
}
.service-grid {
  counter-reset: service;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px 12px;
}
.service-card {
  counter-increment: service;
  height: 78px;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: 5px;
  padding: 7px 10px 8px;
  border: 1px solid rgba(82, 111, 60, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 5px 12px rgba(31, 64, 37, 0.035);
  text-align: center;
}
.service-icon-img {
  display: block;
  width: 70px;
  height: 42px;
  object-fit: contain;
}
.service-card h3 {
  margin: 0;
  color: var(--green-900);
  max-width: 120px;
  font-size: 0.68rem;
  line-height: 1.06;
  font-weight: 900;
}
.service-card h3::before {
  content: counter(service) ". ";
}

.trust-band {
  display: grid;
  grid-template-columns: 27% 26.5% 46.5%;
  min-height: 214px;
  border-top: 1px solid rgba(82, 111, 60, 0.16);
  border-bottom: 1px solid rgba(82, 111, 60, 0.16);
  background: rgba(255, 255, 252, 0.98);
}
.work-photo img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  object-fit: cover;
  object-position: center;
}
.quality-panel {
  padding: 20px 24px 14px;
  border-right: 1px solid rgba(82, 111, 60, 0.18);
  background: rgba(255, 255, 252, 0.98);
  color: var(--ink);
}
.quality-panel h2 {
  margin: 0 0 9px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.05;
}
.quality-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.34;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 15px;
}
.value-grid div {
  min-height: 60px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  padding: 0 2px;
  text-align: center;
}
.value-grid strong {
  color: var(--green-900);
  font-size: 0.59rem;
  line-height: 1.1;
}
.value-icon-img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.reviews {
  padding: 9px 26px 11px;
  background: rgba(255, 255, 252, 0.96);
}
.section-title.compact {
  grid-template-columns: minmax(34px, 64px) auto minmax(34px, 64px);
  gap: 12px;
  margin-bottom: 9px;
}
.section-title.compact h2 { font-size: clamp(1.18rem, 2vw, 1.55rem); }
.reviews .section-title.compact {
  display: block;
  margin-bottom: 5px;
  text-align: center;
}
.reviews .section-title.compact span {
  display: none;
}
.reviews .section-title.compact h2 {
  font-size: clamp(1.3rem, 2vw, 1.62rem);
}
.rating-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 10px;
  padding: 6px 10px;
  border: 1px solid rgba(220, 165, 39, 0.36);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font-size: 0.68rem;
}
.rating-badge span {
  color: var(--gold);
  letter-spacing: 1.4px;
}
.rating-badge small {
  color: var(--muted);
  font-weight: 800;
}
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 0 12px;
}
.review-stars {
  color: var(--gold);
  font-size: 1.36rem;
  line-height: 1;
  letter-spacing: 1px;
}
.review-pill {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 13px;
  border-radius: 6px;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
}
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}
.testimonial-cards.is-swapping .testimonial-card {
  opacity: 0.28;
  transform: translateY(2px);
}
blockquote {
  margin: 0;
}
.testimonial-card {
  min-height: 119px;
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 14px 13px 10px;
  border: 1px solid rgba(82, 111, 60, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 16px rgba(31, 64, 37, 0.04);
  transition: opacity 180ms ease, transform 180ms ease;
}
.quote-mark {
  position: absolute;
  left: 13px;
  top: 8px;
  color: var(--green-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}
.testimonial-card p {
  min-height: 42px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 0.64rem;
  line-height: 1.28;
  font-style: normal;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(120, 147, 82, 0.32);
  background: #eef5ec;
}
.testimonial-card strong,
.testimonial-card small {
  display: block;
}
.testimonial-card strong {
  color: var(--green-900);
  font-size: 0.7rem;
}
.testimonial-card small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  min-height: 12px;
  margin-top: 9px;
}
.review-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(111, 138, 75, 0.28);
  transform: scale(0.86);
  transition: width 180ms ease, transform 180ms ease, background 180ms ease;
}
.review-dot.is-active {
  width: 22px;
  background: var(--green-700);
  transform: scale(1);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.review-grid blockquote {
  min-height: 104px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 7px 16px rgba(23, 59, 42, 0.04);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.review-head img {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border: 2px solid rgba(220, 165, 39, 0.46);
  border-radius: 50%;
  object-fit: cover;
}
.review-head strong,
.review-head small { display: block; }
.review-head strong {
  color: var(--green-900);
  font-size: 0.68rem;
  line-height: 1.1;
}
.review-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.review-grid blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 0.68rem;
  font-style: italic;
  line-height: 1.38;
}

.quote-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(560px, 690px);
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: 34px clamp(40px, 7vw, 126px);
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96), rgba(247, 251, 242, 0.96)),
    repeating-linear-gradient(0deg, rgba(226, 210, 186, 0.16) 0 1px, transparent 1px 5px);
  border-top: 1px solid rgba(82, 111, 60, 0.14);
}
.quote-intro {
  align-self: start;
  padding-top: 18px;
}
.quote-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(111, 143, 77, 0.13);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-intro h2,
.thanks-shell h1 {
  margin: 12px 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.04;
}
.quote-intro p,
.thanks-shell p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 650;
}
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(82, 111, 60, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(23, 59, 42, 0.08);
}
.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 900;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(82, 111, 60, 0.28);
  border-radius: 6px;
  background: #fffef9;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 650;
}
.quote-form textarea {
  min-height: 104px;
  padding-top: 10px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(220, 165, 39, 0.24);
  border-color: var(--green-700);
}
.form-wide,
.quote-submit {
  grid-column: 1 / -1;
}
.file-field input {
  padding: 9px 11px;
}
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.quote-submit {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--green-800);
  border-radius: 6px;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 850;
  cursor: pointer;
}
.quote-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}
.form-status[data-state="error"] {
  color: #9d3b2f;
}
.form-status[data-state="pending"] {
  color: var(--green-700);
}
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(220, 165, 39, 0.13), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(111, 138, 75, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 241, 0.98), rgba(247, 251, 242, 0.98)),
    repeating-linear-gradient(0deg, rgba(226, 210, 186, 0.15) 0 1px, transparent 1px 5px);
}
.thanks-shell {
  position: relative;
  width: min(100%, 840px);
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 30px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(82, 111, 60, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(23, 59, 42, 0.1);
}
.thanks-shell::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(111, 138, 75, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, rgba(111, 138, 75, 0.1) 49% 51%, transparent 52%),
    radial-gradient(circle, rgba(111, 138, 75, 0.08), transparent 68%);
}
.thanks-logo-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 190px;
  border-right: 1px solid rgba(82, 111, 60, 0.16);
}
.thanks-logo-wrap img {
  width: min(210px, 100%);
  height: auto;
}
.thanks-content {
  position: relative;
  z-index: 1;
}
.thanks-shell .error-code {
  width: fit-content;
  margin: 10px 0 -2px;
  color: rgba(111, 138, 75, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 9vw, 6.8rem);
  line-height: 0.82;
  font-weight: 900;
}
.thanks-next {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.thanks-next span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(82, 111, 60, 0.18);
  border-radius: 999px;
  background: var(--sage);
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 850;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 250px 270px 230px 350px;
  justify-content: center;
  align-items: start;
  column-gap: 36px;
  row-gap: 0;
  padding: 14px 0 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, rgba(226, 210, 186, 0.08) 1px 5px),
    linear-gradient(180deg, #f7efe3 0%, #f1e6d4 100%);
  color: var(--green-900);
}
.footer-brand img {
  width: 156px;
  height: auto;
  max-height: 148px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand p {
  max-width: 220px;
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.68rem;
  line-height: 1.18;
}
.footer-col {
  min-height: 108px;
  padding-left: 24px;
  border-left: 1px solid rgba(82, 111, 60, 0.18);
}
.footer-col h2 {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
}
.footer-col ul,
address {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--green-800);
  font-style: normal;
  font-size: 0.74rem;
  line-height: 1.28;
  font-weight: 700;
}
.footer-col ul {
  columns: 2;
  column-gap: 21px;
}
.footer-col li {
  position: relative;
  break-inside: avoid;
  margin-bottom: 4px;
  padding-left: 15px;
}
.footer-col li::before,
address a::before,
address span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 12px;
  height: 15px;
  background: url("assets/icons/footer-pin.svg") center / contain no-repeat;
}
address a,
address span {
  position: relative;
  display: block;
  margin-bottom: 7px;
  padding-left: 19px;
}
address a:first-child::before {
  top: 0.05em;
  width: 13px;
  height: 14px;
  background-image: url("assets/icons/footer-phone.svg");
}
address a:nth-child(2)::before {
  top: 0.14em;
  width: 13px;
  height: 11px;
  background-image: url("assets/icons/footer-mail.svg");
}
address span::before {
  top: -0.02em;
  width: 12px;
  height: 16px;
  background-image: url("assets/icons/footer-location.svg");
}
.footer-quote-card {
  align-self: start;
  justify-self: center;
  width: 305px;
  min-height: 132px;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--green-700);
  color: var(--white);
  box-shadow: inset -28px -24px 0 rgba(82, 111, 60, 0.12);
  overflow: hidden;
  text-align: center;
}
.footer-quote-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 88px;
  background: url("assets/icons/footer-leaf-watermark.png") center / contain no-repeat;
  opacity: 0.82;
  pointer-events: none;
}
.footer-quote-card > * {
  position: relative;
  z-index: 1;
}
.footer-quote-card h2,
.footer-quote-card p {
  margin: 0;
}
.footer-quote-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.05;
}
.footer-quote-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
}
.footer-quote-button {
  min-width: 170px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 3px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--white);
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 850;
}
.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 7px;
  border-top: 1px solid rgba(36, 82, 56, 0.16);
  color: var(--muted);
  text-align: center;
  font-size: 0.64rem;
}

.about-main {
  padding: 22px clamp(18px, 4vw, 58px) 24px;
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 165, 39, 0.11), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(111, 138, 75, 0.15), transparent 30%),
    var(--cream);
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 430px);
  align-items: stretch;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.about-story-card,
.about-photo-card,
.about-values article {
  border: 1px solid rgba(82, 111, 60, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(23, 59, 42, 0.08);
}
.about-story-card {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4.4vw, 56px);
}
.about-story-card h1 {
  max-width: 720px;
  margin: 12px 0 10px;
  color: var(--green-900);
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  line-height: 0.96;
}
.about-lede {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  font-weight: 760;
}
.about-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(82, 111, 60, 0.16);
}
.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
  font-weight: 680;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.about-photo-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: 52% 36%;
}
.about-photo-card div {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-top: 1px solid rgba(82, 111, 60, 0.18);
  background: linear-gradient(90deg, var(--sage), #fffef9);
}
.about-photo-card strong {
  color: var(--green-900);
  font-size: 0.94rem;
  font-weight: 900;
}
.about-photo-card span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 720;
}
.about-values {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 16px auto 0;
}
.about-values article {
  min-height: 150px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  padding: 16px;
}
.about-values .value-icon-img {
  width: 48px;
  height: 42px;
  object-fit: contain;
}
.about-values h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}
.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.42;
  font-weight: 700;
}

.projects-main {
  padding: 18px clamp(18px, 4vw, 58px) 24px;
  background: var(--cream);
}
.projects-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}
.projects-hero h1 {
  font-size: clamp(2rem, 3.1vw, 3rem);
}
.projects-hero p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}
.project-intro-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 7px 16px rgba(23, 59, 42, 0.05);
}
.project-intro-card img {
  width: 82px;
  height: 68px;
  border-radius: 6px;
  object-fit: cover;
  object-position: 58% 42%;
}
.project-intro-card strong {
  display: block;
  color: var(--green-900);
  font-size: 0.78rem;
}
.project-intro-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 700;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 13px;
}
.filter-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(36, 82, 56, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font-size: 0.68rem;
  font-weight: 900;
}
.filter-row span:first-child {
  color: var(--white);
  background: var(--green-700);
  border-color: var(--green-800);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 7px 16px rgba(23, 59, 42, 0.05);
}
.dynamic-project-card {
  border-color: rgba(111, 138, 75, 0.32);
  box-shadow: 0 10px 22px rgba(23, 59, 42, 0.08);
}
.dynamic-project-card[data-featured="true"] {
  outline: 2px solid rgba(220, 165, 39, 0.38);
  outline-offset: -2px;
}
.project-card img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
}
.project-card span {
  width: fit-content;
  display: block;
  margin: 8px 10px 0;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-700);
  font-size: 0.56rem;
  font-weight: 900;
  text-transform: uppercase;
}
.project-card h2 {
  margin: 7px 10px 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.05;
}
.project-card p {
  margin: 6px 10px 12px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 700;
}
.project-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(36, 82, 56, 0.12);
  border-radius: 7px;
  background: var(--sage);
}
.project-values article {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
}
.project-values .value-icon {
  color: var(--green-700);
}
.project-values h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 0.82rem;
}
.project-values p {
  grid-column: 2;
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.3;
  font-weight: 700;
}
.project-review-row {
  padding-top: 14px;
}

.admin-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 10%, rgba(220, 165, 39, 0.12), transparent 28%),
    radial-gradient(circle at 86% 88%, rgba(111, 138, 75, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 241, 0.98), rgba(247, 251, 242, 0.98)),
    repeating-linear-gradient(0deg, rgba(226, 210, 186, 0.15) 0 1px, transparent 1px 5px);
}
.admin-shell {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.admin-intro {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(82, 111, 60, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(23, 59, 42, 0.08);
}
.admin-intro img {
  width: 172px;
}
.admin-intro h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}
.admin-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 720;
}
.admin-intro strong {
  color: var(--green-900);
}
.admin-form {
  align-self: start;
}
.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-checks label {
  min-height: 40px;
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(82, 111, 60, 0.18);
  border-radius: 6px;
  background: var(--sage);
  color: var(--green-900);
}
.admin-checks input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--green-700);
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: minmax(190px, 1fr) auto auto; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(14px, 4vw, 42px);
    right: clamp(14px, 4vw, 42px);
    max-height: calc(100dvh - var(--header-height) - 18px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 120;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffef9;
    box-shadow: 0 18px 38px rgba(23, 59, 42, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 12px 10px;
    border-radius: 6px;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    background: rgba(111, 138, 75, 0.1);
  }
  .menu-button { display: grid; }
  .site-header {
    padding-inline: clamp(42px, 6vw, 70px);
  }
  .services {
    padding-inline: clamp(38px, 6vw, 78px);
  }
  .service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px 9px;
  }
  .service-card {
    min-height: 76px;
    padding: 7px 6px 8px;
  }
  .service-icon-img {
    max-width: 66px;
    max-height: 42px;
  }
  .service-card h3 {
    font-size: 0.64rem;
  }
  .trust-band { grid-template-columns: 27% 28% 45%; }
  .quality-panel { padding: 22px 18px 16px; }
  .quality-panel h2 { font-size: 1.32rem; }
  .quality-panel p { font-size: 0.72rem; }
  .hero-image picture > img,
  .hero-image > img { object-position: 74% 11%; }
  .value-grid { gap: 6px; }
  .testimonial-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-card { padding-inline: 12px; }
  .testimonial-card p { font-size: 0.65rem; }
  .site-footer {
    grid-template-columns: 1.08fr 1.16fr 0.92fr 1.34fr;
    gap: 18px;
    padding-inline: clamp(42px, 5vw, 70px);
  }
  .quote-section {
    grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
    padding-inline: clamp(42px, 5vw, 70px);
  }
  .footer-col {
    padding-left: 18px;
  }
  .footer-col ul {
    column-gap: 14px;
  }
  .footer-quote-card {
    padding-inline: 16px;
  }
  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  }
  .about-story-card {
    padding: 34px;
  }
  .about-photo-card img {
    min-height: 500px;
  }
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .projects-hero { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-header {
    padding-inline: clamp(34px, 5vw, 46px);
  }
  .brand img {
    width: 128px;
  }
  .site-header.is-floating .brand img {
    width: 104px;
  }
  .hero {
    height: 402px;
  }
  .trust-band {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
  .work-photo,
  .quality-panel {
    min-height: 286px;
  }
  .reviews {
    grid-column: 1 / -1;
    padding: 12px clamp(34px, 5vw, 46px) 14px;
  }
  .testimonial-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .testimonial-card {
    min-height: 126px;
  }
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-content: stretch;
    gap: 22px 34px;
    padding: 16px clamp(34px, 5vw, 46px) 0;
  }
  .quote-section {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: clamp(34px, 5vw, 46px);
  }
  .quote-intro {
    max-width: 560px;
  }
  .footer-brand {
    min-width: 0;
  }
  .footer-brand img {
    width: 146px;
  }
  .footer-brand p {
    max-width: 230px;
  }
  .footer-col {
    min-height: 0;
    padding-left: 20px;
  }
  .footer-quote-card {
    width: min(100%, 330px);
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  :root { --header-height: 70px; }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 6px 14px;
  }
  .site-header.is-floating {
    --header-height: 64px;
  }
  .site-header.is-hidden:not(.is-menu-open):not(:focus-within) {
    transform: translateY(calc(-100% - 48px));
  }
  .brand img {
    width: 74px;
    height: auto;
    max-height: none;
  }
  .site-header.is-floating .brand img {
    width: 62px;
  }
  .site-nav {
    top: calc(100% + 6px);
    left: 10px;
    right: 10px;
    max-height: calc(100dvh - var(--header-height) - 16px);
    overflow-y: auto;
    padding: 8px;
  }
  .header-quote { display: none; }
  .hero {
    height: auto;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    order: 1;
    padding: 22px 18px 22px;
  }
  h1 { font-size: clamp(2rem, 9.2vw, 2.7rem); }
  .hero-actions,
  .quote-button,
  .phone-button { width: 100%; }
  .hero-image {
    order: 2;
    height: 250px;
    min-height: 250px;
    margin-top: 0;
  }
  .hero-image::before {
    width: 42%;
    background: linear-gradient(90deg, var(--cream), rgba(251, 246, 236, 0.18) 58%, rgba(251, 246, 236, 0));
  }
  .hero-image picture > img,
  .hero-image > img {
    object-position: center center;
  }
  .owner-card {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    min-width: 154px;
    padding: 9px 10px;
  }
  .owner-card strong {
    font-size: 0.74rem;
  }
  .owner-card span {
    font-size: 0.58rem;
  }
  .services { padding-inline: 14px; }
  .section-title {
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    gap: 8px;
  }
  .section-title h2 {
    white-space: nowrap;
    font-size: clamp(1.28rem, 7vw, 1.7rem);
  }
  .service-grid,
  .trust-band,
  .review-grid,
  .site-footer,
  .about-hero,
  .about-values,
  .project-grid,
  .project-values { grid-template-columns: 1fr; }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .service-card {
    min-height: 92px;
    padding: 8px 8px;
  }
  .service-card h3 {
    max-width: 138px;
    font-size: 0.62rem;
  }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col ul { columns: 1; }
  .footer-col {
    min-height: 0;
    padding-left: 0;
    border-left: 0;
  }
  .footer-quote-card { width: 100%; }
  .review-summary {
    display: grid;
    justify-items: center;
  }
  .testimonial-cards { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }
  .review-dots {
    margin-top: 10px;
  }
  .quote-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 18px;
  }
  .quote-intro h2,
  .thanks-shell h1 {
    font-size: 1.78rem;
  }
  .quote-intro p,
  .thanks-shell p {
    font-size: 0.86rem;
  }
  .quote-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .thanks-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
    text-align: center;
  }
  .thanks-logo-wrap {
    min-height: 0;
    padding-bottom: 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(82, 111, 60, 0.13);
  }
  .thanks-logo-wrap img {
    width: 150px;
    justify-self: center;
  }
  .thanks-next {
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }
  .thanks-next span {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 0.68rem;
  }
  .thanks-actions {
    justify-content: center;
  }
  .about-main {
    padding: 14px 14px 18px;
  }
  .about-story-card {
    order: 2;
    padding: 22px;
  }
  .about-story-card h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
  .about-lede {
    font-size: 0.94rem;
  }
  .about-copy {
    gap: 10px;
    margin-top: 17px;
    padding-top: 15px;
  }
  .about-copy p {
    font-size: 0.82rem;
  }
  .about-actions,
  .about-actions .quote-button,
  .about-actions .phone-button {
    width: 100%;
  }
  .about-photo-card {
    order: 1;
  }
  .about-photo-card img {
    min-height: 0;
    height: 430px;
    object-position: 52% 34%;
  }
  .about-values article {
    min-height: 0;
    grid-template-columns: 54px 1fr;
    align-items: center;
  }
  .about-values p {
    grid-column: 2;
  }
  .projects-main { padding: 16px 14px 20px; }
  .project-intro-card { grid-template-columns: 72px 1fr; }
  .project-intro-card img {
    width: 72px;
    height: 64px;
  }
  .admin-main {
    padding: 14px;
    place-items: start center;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-intro {
    padding: 20px;
  }
  .admin-intro img {
    width: 138px;
  }
  .admin-checks {
    display: grid;
    grid-template-columns: 1fr;
  }
  .filter-row { gap: 6px; }
  .filter-row span { padding-inline: 10px; }
}

@media (max-width: 920px) and (orientation: landscape) {
  .thanks-page {
    place-items: start center;
    padding: 18px;
  }
  .thanks-shell {
    grid-template-columns: 150px 1fr;
    gap: 22px;
    padding: 20px 24px;
    text-align: left;
  }
  .thanks-logo-wrap {
    min-height: 142px;
    padding: 0 18px 0 0;
    border-right: 1px solid rgba(82, 111, 60, 0.13);
    border-bottom: 0;
  }
  .thanks-logo-wrap img {
    width: 150px;
  }
  .thanks-shell h1 {
    max-width: 520px;
    font-size: 1.8rem;
  }
  .thanks-shell p {
    max-width: 520px;
  }
  .thanks-next,
  .thanks-actions {
    justify-content: flex-start;
  }
}
