:root {
  --cream: #f5f0e6;
  --cream-deep: #e9e0d1;
  --paper: #fffdf8;
  --forest: #173f2e;
  --forest-dark: #0d2d21;
  --forest-soft: #2f6249;
  --sage: #8da47f;
  --sage-pale: #dce6d7;
  --blue: #087fb9;
  --ink: #1e2923;
  --muted: #607068;
  --line: rgba(23, 63, 46, .16);
  --white: #fff;
  --shadow: 0 20px 55px rgba(24, 48, 34, .1);
  --radius: 24px;
  --container: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--forest-dark);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.04;
  letter-spacing: -.035em;
  max-width: 100%;
  overflow-wrap: break-word;
}
h1 { margin-bottom: 24px; font-size: clamp(2.4rem, 3.75vw, 4.05rem); }
h2 { margin-bottom: 20px; font-size: clamp(1.95rem, 3.15vw, 3.4rem); }
h3 { margin-bottom: 14px; font-size: clamp(1.3rem, 1.75vw, 2rem); }
p { margin-bottom: 1.2em; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(54px, 5.5vw, 84px) 0; }
.section--cream { background: var(--cream); }
.section--green { color: var(--white); background: var(--forest); }
.section--green h2, .section--green h3 { color: var(--white); }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 12px 18px;
  color: var(--white); background: var(--forest); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.eyebrow {
  display: flex; align-items: center; gap: 8px; margin-bottom: 15px; color: var(--forest-soft); font-size: .76rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 17px; height: 17px; flex: 0 0 17px;
  background: url('../img/leaf-mark.svg') center / contain no-repeat;
}
.section--green .eyebrow, .final-cta .eyebrow { color: #bcd5b2; }
.section--green .eyebrow::before, .final-cta .eyebrow::before { filter: brightness(0) invert(1); opacity: .7; }
.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center;
  padding: 13px 25px; border: 2px solid var(--forest); border-radius: 999px;
  color: var(--white); background: var(--forest); font-size: .96rem; font-weight: 800;
  line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { border-color: var(--forest-soft); background: var(--forest-soft); transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 10px 18px; font-size: .82rem; }
.button--outline { color: var(--forest); background: transparent; }
.button--outline:hover { color: var(--white); }
.button--cream { color: var(--forest); border-color: var(--cream); background: var(--cream); }
.button--cream:hover { border-color: var(--white); background: var(--white); }
.button--wide { width: 100%; }
.button--ghost { color: var(--forest); border-color: var(--line); background: transparent; }
.text-link { color: var(--forest); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--blue); }

.utility-bar { color: #e8f1e4; background: var(--forest-dark); font-size: .72rem; letter-spacing: .03em; }
.utility-bar__inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 24px; }
.utility-bar strong { color: #c7dfbb; }
.site-header {
  position: sticky; z-index: 1000; top: 0; background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
  transition: transform .28s ease;
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header__inner { display: flex; min-height: 96px; align-items: center; gap: 28px; }
.brand { width: 168px; flex: 0 0 auto; }
.brand img { width: 100%; max-height: 78px; object-fit: contain; object-position: left center; }
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: 23px; margin: 0; padding: 0; list-style: none; }
.site-nav a { color: var(--ink); font-size: .82rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav .current-menu-item > a { color: var(--forest-soft); }
.header-contact { display: grid; flex: 0 0 auto; font-size: .73rem; line-height: 1.35; text-align: right; }
.header-contact a { font-size: .92rem; font-weight: 900; text-decoration: none; white-space: nowrap; }
.header-contact span { color: var(--muted); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 50%; background: var(--cream); }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--forest); }

.hero { position: relative; min-height: min(760px, calc(100vh - 130px)); overflow: hidden; background: var(--cream); }
.hero::after {
  content: ''; position: absolute; z-index: 1; top: clamp(28px, 5vw, 78px); right: -38px;
  width: clamp(210px, 23vw, 365px); aspect-ratio: .8; opacity: .34; pointer-events: none;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(18deg);
}
.hero__photo { position: absolute; inset: 0 0 0 42%; background: linear-gradient(90deg, rgba(245,240,230,.2), transparent 28%), url('../img/hero-drilling.jpg') center/cover no-repeat; }
.hero__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--cream) 0, rgba(245,240,230,.72) 20%, transparent 55%), linear-gradient(0deg, rgba(13,45,33,.18), transparent 48%); }
.hero__inner { position: relative; z-index: 2; display: flex; min-height: inherit; align-items: center; }
.hero__content { width: min(650px, 59%); padding: 64px 0 56px; }
.hero__lead { max-width: 600px; color: #45564d; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.hero__actions { display: flex; align-items: center; gap: 23px; margin: 28px 0 42px; }
.hero__facts { display: flex; gap: 30px; margin: 0; padding: 0; list-style: none; }
.hero__facts li { position: relative; display: grid; min-width: 120px; padding: 8px 12px 8px 17px; border-left: 3px solid var(--sage); background: linear-gradient(90deg, rgba(255,253,248,.4), transparent); }
.hero__facts strong { color: var(--forest); font-family: Georgia, serif; font-size: 1.3rem; }
.hero__facts span { color: var(--muted); font-size: .74rem; }

.intro, .services, .process, .process-section, .works, .reviews, .final-cta { position: relative; overflow: hidden; }
.intro::after {
  content: ''; position: absolute; right: -95px; bottom: -115px; width: 270px; height: 270px; border: 1px solid rgba(47,98,73,.09); border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(47,98,73,.035), 0 0 0 70px rgba(47,98,73,.025); pointer-events: none;
}
.services::before {
  content: ''; position: absolute; left: -90px; bottom: -105px; width: 260px; height: 325px; opacity: .085;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(-28deg); pointer-events: none;
}
.intro__grid, .content-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 105px); align-items: start; }
.intro__copy { max-width: 710px; color: var(--muted); font-size: 1.04rem; }
.home-about-green { position: relative; overflow: hidden; }
.home-about-green::before { content: ''; position: absolute; right: -78px; bottom: -105px; width: 230px; height: 285px; opacity: .09; background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(18deg); pointer-events: none; }
.home-about-green__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 30px 0 26px; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.home-about-green__facts li { position: relative; min-height: 128px; padding: 47px 16px 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(245,240,230,.34); }
.home-about-green__facts li::before { content: ''; position: absolute; top: 15px; left: 16px; width: 22px; height: 22px; background: url('../img/leaf-mark.svg') center / contain no-repeat; }
.home-about-green__facts strong { display: block; color: var(--forest); font-family: Georgia, serif; font-size: .92rem; line-height: 1.2; }
.home-about-green__facts span { display: block; margin-top: 5px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.home-about-green .button { position: relative; z-index: 1; }
.section-heading { position: relative; max-width: 840px; margin-bottom: 38px; }
.section-heading::after {
  content: ''; display: block; width: 86px; height: 1px; margin-top: 27px;
  background: linear-gradient(90deg, var(--sage), transparent);
}
.section-heading--split::after { position: absolute; bottom: -22px; left: 0; }
.section-heading--light::after { background: linear-gradient(90deg, #bcd5b2, transparent); }
.section-heading--split { display: grid; max-width: none; grid-template-columns: 1.5fr .7fr; gap: 60px; align-items: end; }
.section-heading--split > p { margin-bottom: 8px; color: var(--muted); }
.section-heading--light > div > * { color: var(--white); }
.section-heading--light > p { color: #cad9d0; }
.service-list { border-top: 1px solid var(--line); }
.service-row { position: relative; display: grid; grid-template-columns: 62px 1fr 1fr; gap: 26px; padding: 36px 0; border-bottom: 1px solid var(--line); align-items: center; }
.service-row--reverse .service-row__media { order: 3; }
.service-row--reverse .service-row__content { order: 2; }
.service-row__number { display: grid; width: 50px; height: 50px; align-self: start; place-items: center; border: 1px solid rgba(47,98,73,.28); border-radius: 50%; color: var(--forest-soft); background: rgba(255,253,248,.55); font-family: Georgia, serif; font-size: 1.35rem; }
.service-row__media { overflow: hidden; min-height: 340px; border: 1px solid rgba(47,98,73,.17); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-row__media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.service-row__content { padding: 18px 26px; }
.service-row__content > p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: 10px; margin: 25px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before {
  content: ''; position: absolute; top: .15em; left: 0; width: 21px; height: 21px;
  background: url('../img/leaf-mark.svg') center / contain no-repeat;
}
.section--green .check-list li::before { filter: brightness(0) invert(1); opacity: .75; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-grid li {
  position: relative; min-height: 205px; overflow: hidden; padding: 26px 22px 23px;
  border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,253,248,.46), rgba(220,230,215,.13));
}
.process-grid li::after {
  content: ''; position: absolute; top: 20px; right: 18px; width: 34px; height: 34px; opacity: .22;
  background: url('../img/leaf-mark.svg') center / contain no-repeat;
}
.process-grid li:first-child { border-left: 1px solid var(--line); }
.process-grid span { display: flex; width: 39px; height: 39px; align-items: center; justify-content: center; margin-bottom: 22px; border: 1px solid rgba(47,98,73,.2); border-radius: 50%; color: var(--forest-soft); background: var(--paper); font-family: Georgia, serif; font-size: 1rem; }
.process-grid h3 { font-size: 1.25rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .85rem; }
.process-grid--three { grid-template-columns: repeat(3, 1fr); }
.process.section, .process-section.section { padding-bottom: clamp(40px, 4vw, 62px); }
#request.section { padding-top: clamp(42px, 4.5vw, 68px); padding-bottom: clamp(52px, 5.5vw, 82px); }
.process::before, .process-section::before {
  content: ''; position: absolute; right: -75px; bottom: -85px; width: 210px; height: 210px; border: 1px solid rgba(8,127,185,.09); border-radius: 50%;
  box-shadow: 0 0 0 27px rgba(8,127,185,.025), 0 0 0 55px rgba(47,98,73,.025); pointer-events: none;
}

.home-details { position: relative; overflow: hidden; }
.home-details::after {
  content: ''; position: absolute; top: -85px; right: -45px; width: 280px; height: 350px;
  opacity: .13; pointer-events: none; background: url('../img/leaf-sprig.svg') center / contain no-repeat;
  transform: rotate(26deg);
}
.home-details__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 6.5vw, 90px); align-items: start; }
.home-details__intro > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.home-details__cards { display: grid; gap: 16px; }
.home-detail-card { position: relative; padding: 23px 26px 23px 82px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.86); }
.home-detail-card::before {
  content: ''; position: absolute; top: 21px; left: 24px; width: 38px; height: 48px;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(-18deg);
}
.home-detail-card h3 { margin-bottom: 9px; font-size: clamp(1.3rem, 1.8vw, 1.75rem); }
.home-detail-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.estimate { color: var(--white); background: var(--forest-dark); }
.estimate h2, .estimate h3, .estimate legend { color: var(--white); }
.estimate__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: start; }
.estimate__intro { position: sticky; top: 120px; }
.estimate__intro > p:last-child { color: #c5d3ca; }
.voda21-calculator { position: relative; overflow: hidden; padding: clamp(25px, 3.3vw, 44px); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.voda21-calculator::after {
  content: ''; position: absolute; top: -42px; right: -40px; width: 150px; height: 185px; opacity: .08;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; filter: brightness(0) invert(1); pointer-events: none;
}
.voda21-calculator__heading { margin-bottom: 26px; }
.voda21-calculator__heading h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.voda21-calculator__heading > p:last-child { color: #c5d3ca; }
.voda21-calculator__progress { margin-bottom: 28px; color: #dbe7df; font-size: .78rem; }
.voda21-calculator__progress > div { height: 5px; margin-top: 9px; overflow: hidden; border-radius: 8px; background: rgba(255,255,255,.14); }
.voda21-calculator__progress i { display: block; width: 20%; height: 100%; border-radius: inherit; background: #b9d8aa; transition: width .25s ease; }
.voda21-calculator__step { margin: 0; padding: 0; border: 0; }
.voda21-calculator.is-enhanced .voda21-calculator__step { display: none; }
.voda21-calculator.is-enhanced .voda21-calculator__step.is-active { display: block; }
.voda21-calculator legend { margin-bottom: 22px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 700; }
.voda21-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.voda21-option { position: relative; cursor: pointer; }
.voda21-option input { position: absolute; opacity: 0; }
.voda21-option span { display: flex; min-height: 74px; align-items: center; justify-content: center; padding: 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 14px; color: var(--white); text-align: center; }
.voda21-option input:checked + span { color: var(--forest-dark); border-color: #c7dfbb; background: #c7dfbb; font-weight: 800; }
.voda21-option input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 3px; }
.voda21-calculator__actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 25px; }
.estimate .button--ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.estimate .button--primary { color: var(--forest-dark); border-color: #c7dfbb; background: #c7dfbb; }

.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.works-grid--archive { grid-template-columns: repeat(3, 1fr); }
.work-card { position: relative; overflow: hidden; border: 1px solid rgba(47,98,73,.28); border-radius: var(--radius); background: var(--paper); box-shadow: 0 18px 45px rgba(23,63,46,.08); }
.work-card::after {
  content: ''; position: absolute; right: 17px; bottom: 15px; width: 29px; height: 29px; opacity: .38;
  background: url('../img/leaf-mark.svg') center / contain no-repeat; pointer-events: none;
}
.work-card__link { display: block; height: 100%; text-decoration: none; }
.work-card__media { position: relative; display: block; height: 280px; overflow: hidden; background: var(--sage-pale); }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card:hover .work-card__media img { transform: scale(1.035); }
.work-card__tag { position: absolute; top: 22px; left: 22px; padding: 9px 15px; border-radius: 999px; color: var(--white); background: rgba(13,45,33,.88); font-size: .78rem; font-weight: 800; }
.work-card__content { display: flex; align-items: center; gap: 26px; padding: 20px 22px; }
.work-card__content > span { display: grid; }
.work-card__content strong { color: var(--forest); font-family: Georgia, serif; font-size: 1.35rem; }
.work-card__content small { color: var(--muted); font-size: .68rem; text-transform: uppercase; }
.work-card__content b { margin-left: auto; color: var(--forest-soft); font-size: .78rem; }
.section-action { margin: 42px 0 0; text-align: center; }
.empty-state { grid-column: 1 / -1; padding: 55px; border: 1px dashed var(--sage); border-radius: var(--radius); background: var(--cream); text-align: center; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { margin: 0; color: var(--muted); }

.voda21-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voda21-review { position: relative; display: flex; min-height: 285px; flex-direction: column; padding: 31px 26px 26px; border: 1px solid rgba(47,98,73,.26); border-radius: 18px; background: var(--paper); }
.voda21-review::before {
  content: '“'; position: absolute; top: 6px; right: 22px; color: var(--sage-pale);
  font-family: Georgia, serif; font-size: 5rem; line-height: 1;
}
.section--green .voda21-review { color: var(--ink); border-color: transparent; }
.voda21-review__stars { margin-bottom: 23px; color: #d49826; letter-spacing: .08em; }
.voda21-review blockquote { margin: 0 0 25px; }
.voda21-review__body { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 6; }
.voda21-review__body.is-expanded { display: block; overflow: visible; }
.voda21-review__toggle { padding: 0; border: 0; color: var(--forest-soft); background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; }
.voda21-review footer { display: grid; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.voda21-review footer span { color: var(--muted); font-size: .78rem; }
.voda21-empty { padding: 30px; border: 1px dashed rgba(255,255,255,.35); border-radius: 18px; text-align: center; }
.works::after {
  content: ''; position: absolute; z-index: 0; left: -58px; top: 18%; width: 190px; height: 235px; opacity: .075;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(-22deg); pointer-events: none;
}
.works > .container { position: relative; z-index: 1; }
.reviews::after {
  content: ''; position: absolute; right: -90px; top: 36px; width: 230px; height: 230px; border: 1px solid rgba(199,223,187,.1); border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(199,223,187,.035), 0 0 0 68px rgba(199,223,187,.02); pointer-events: none;
}
.faq { position: relative; overflow: hidden; }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro::after {
  content: ''; display: block; width: 145px; height: 180px; margin: 30px 0 -28px;
  opacity: .72; background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(-13deg);
}
.faq__items { border: 1px solid rgba(47,98,73,.28); border-radius: 16px; background: rgba(255,253,248,.7); }
.faq__items details { border-bottom: 1px solid var(--line); }
.faq__items details:last-child { border-bottom: 0; }
.faq__items summary { position: relative; padding: 22px 58px 22px 24px; color: var(--forest-dark); font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq__items summary::-webkit-details-marker { display: none; }
.faq__items summary::after { content: '+'; position: absolute; right: 8px; color: var(--forest-soft); font-family: Arial, sans-serif; font-size: 1.7rem; font-weight: 400; }
.faq__items details[open] summary::after { content: '−'; }
.faq__items details p { max-width: 780px; padding: 0 55px 22px 24px; color: var(--muted); }

.final-cta { padding: clamp(58px, 6.5vw, 92px) 0; color: var(--white); background: var(--forest); }
.final-cta::before {
  content: ''; position: absolute; left: -48px; bottom: -115px; width: 230px; height: 290px; opacity: .07;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; filter: brightness(0) invert(1); transform: rotate(-18deg); pointer-events: none;
}
.final-cta h2, .final-cta h3 { color: var(--white); }
.final-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.final-cta__inner > div:first-child > p:last-child { color: #c7d8ce; }
.final-cta--compact .final-cta__inner { grid-template-columns: 1fr auto; }
.final-cta--compact h2 { margin-bottom: 0; }
.voda21-form-card, .voda21-review-form { position: relative; overflow: hidden; padding: clamp(24px, 3.3vw, 42px); border: 1px solid rgba(47,98,73,.24); border-radius: var(--radius); color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.voda21-form-card::after, .voda21-review-form::after {
  content: ''; position: absolute; z-index: 0; right: -34px; bottom: -70px; width: 150px; height: 190px; opacity: .12;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; pointer-events: none;
}
.voda21-form-card > *, .voda21-review-form > * { position: relative; z-index: 1; }
.voda21-form-card h3, .voda21-review-form h3 { color: var(--forest-dark); }
.voda21-form-card__intro p, .voda21-review-form > div > p:last-child { color: var(--muted); }
.voda21-form { display: grid; gap: 16px; }
.voda21-form label, .voda21-contact-grid label { display: grid; gap: 7px; }
.voda21-form label > span, .voda21-contact-grid label > span { font-size: .77rem; font-weight: 800; }
.voda21-form input, .voda21-form textarea, .voda21-form select, .voda21-contact-grid input {
  width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: var(--white);
}
.voda21-form textarea { min-height: 110px; resize: vertical; }
.voda21-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.voda21-consent { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: 9px !important; color: var(--muted); font-size: .68rem; }
.voda21-consent input { width: 18px !important; min-height: 18px !important; margin-top: 3px; }
.voda21-consent a { color: var(--forest); }
.voda21-honeypot { position: absolute !important; left: -10000px !important; }
.voda21-status { padding: 13px 16px; border-radius: 10px; background: var(--sage-pale); }
.notice { padding: 20px; border: 1px solid var(--line); border-radius: 14px; }
.notice--light { color: var(--white); border-color: rgba(255,255,255,.2); }

.page-hero { position: relative; min-height: 520px; display: flex; align-items: end; color: var(--white); background: var(--forest-dark); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,45,33,.98) 0, rgba(13,45,33,.84) 45%, rgba(13,45,33,.16) 76%), var(--page-image) center/cover no-repeat; }
.page-hero__inner { position: relative; padding-bottom: 65px; }
.page-hero__inner h1 { max-width: 820px; color: var(--white); font-size: clamp(2.35rem, 3.65vw, 3.9rem); }
.page-hero__inner > p:not(.eyebrow) { max-width: 670px; color: #d8e4dc; font-size: 1.2rem; }
.archive-hero, .project-hero { padding: clamp(65px, 7vw, 102px) 0 56px; background: var(--cream); }
.archive-hero h1, .project-hero h1 { max-width: 940px; font-size: clamp(2.3rem, 3.55vw, 3.8rem); }
.archive-hero, .project-hero { position: relative; overflow: hidden; }
.archive-hero::after, .project-hero::after {
  content: ''; position: absolute; top: -58px; right: -25px; width: 230px; height: 285px; opacity: .17;
  background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(18deg); pointer-events: none;
}
.archive-hero > .container > p:last-child { max-width: 750px; color: var(--muted); font-size: 1.15rem; }
.content-split .prose { max-width: 730px; }
.prose { color: var(--muted); }
.prose h2, .prose h3, .prose strong { color: var(--forest-dark); }
.prose a { color: var(--forest-soft); }
.prose--page { max-width: 900px; }
.diagram { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; align-items: center; }
.diagram p { color: #cad9d0; }
.diagram img { max-height: 610px; margin-inline: auto; border-radius: var(--radius); }
.narrow-form { max-width: 860px; }
.project-stats { display: flex; flex-wrap: wrap; gap: 45px; }
.project-stats span { display: grid; padding-left: 18px; border-left: 3px solid var(--sage); }
.project-stats strong { color: var(--forest); font-family: Georgia, serif; font-size: 1.4rem; }
.project-stats small { color: var(--muted); }
.back-link { display: inline-block; margin-bottom: 30px; color: var(--forest-soft); font-weight: 800; text-decoration: none; }
.project-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: start; }
.project-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.project-gallery__item { min-height: 260px; padding: 0; overflow: hidden; border: 0; border-radius: 20px; background: var(--cream); cursor: zoom-in; }
.project-gallery__item--main { grid-column: 1 / -1; min-height: 490px; }
.project-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.project-copy { position: sticky; top: 120px; }
.project-note { padding: 16px 18px; border-left: 4px solid var(--sage); color: var(--forest); background: var(--sage-pale); font-weight: 800; }
.lightbox { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 55px; background: rgba(4,18,12,.94); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox button { position: absolute; top: 18px; right: 24px; width: 48px; height: 48px; border: 0; color: var(--white); background: transparent; font-size: 2.2rem; cursor: pointer; }
.faq-page { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: start; }
.faq-aside { position: sticky; top: 120px; padding: 34px; border-radius: 22px; background: var(--cream); }
.faq-aside h2 { font-size: 2rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { display: grid; min-height: 210px; align-content: center; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); }
.contact-card span, .contact-card small { color: var(--muted); font-size: .75rem; }
.contact-card a { margin: 8px 0; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.nav-links { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.nav-links .page-numbers { padding: 9px 14px; border: 1px solid var(--line); border-radius: 9px; text-decoration: none; }
.nav-links .current { color: var(--white); background: var(--forest); }
.not-found { display: grid; min-height: 70vh; place-items: center; padding: 90px 0; text-align: center; background: var(--cream); }
.not-found p:not(.eyebrow) { max-width: 650px; margin-inline: auto; color: var(--muted); }

.site-footer { padding: 62px 0 23px; color: #d7e3dc; background: var(--forest-dark); }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 65px; }
.site-footer h2 { color: var(--white); font-family: Arial, sans-serif; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #d7e3dc; font-size: .82rem; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.brand--footer { width: 165px; padding: 8px; border-radius: 12px; background: var(--paper); }
.site-footer__brand p { max-width: 330px; margin-top: 22px; color: #aebfb5; font-size: .82rem; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #8fa399; font-size: .72rem; }

/* About page */
.about-green__hero { position: relative; overflow: hidden; padding: clamp(62px, 6.5vw, 96px) 0; background: var(--cream); }
.about-green__hero::after { content: ''; position: absolute; top: -68px; right: -44px; width: 280px; height: 350px; opacity: .22; background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(13deg); pointer-events: none; }
.about-green__hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 7vw, 100px); align-items: center; }
.about-green__intro h1 { max-width: 710px; font-size: clamp(2.45rem, 4vw, 4.25rem); }
.about-green__lead { max-width: 650px; color: var(--muted); font-size: clamp(1rem, 1.32vw, 1.16rem); }
.about-green__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 29px; }
.about-green__photo { position: relative; margin: 0; padding: 10px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.about-green__photo > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-green__photo figcaption { position: absolute; right: -20px; bottom: 25px; display: grid; grid-template-columns: 35px 1fr; gap: 13px; width: min(360px, 82%); align-items: center; padding: 17px 19px; color: var(--forest); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); font-family: Georgia, serif; font-size: .9rem; }
.about-green__photo figcaption img { width: 32px; height: 32px; }
.about-green__principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-green__principle-grid article { position: relative; min-height: 315px; padding: 35px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.about-green__principle-grid article::after { content: ''; position: absolute; right: 22px; bottom: 20px; width: 48px; height: 48px; opacity: .14; background: url('../img/leaf-mark.svg') center / contain no-repeat; }
.about-green__principle-grid article > span { display: inline-block; margin-bottom: 50px; color: var(--sage); font-family: Georgia, serif; font-size: 1.5rem; }
.about-green__principle-grid h3 { max-width: 270px; }
.about-green__principle-grid p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.about-green__value { position: relative; overflow: hidden; }
.about-green__value::after { content: ''; position: absolute; left: -110px; bottom: -155px; width: 310px; height: 390px; opacity: .095; background: url('../img/leaf-sprig.svg') center / contain no-repeat; transform: rotate(-25deg); }
.about-green__value-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 8vw, 115px); align-items: start; }
.about-green__value-lead { color: var(--muted); }
.about-green__checklist { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.about-green__checklist li { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; padding: 24px 15px 24px 48px; border-bottom: 1px solid var(--line); }
.about-green__checklist li::before { content: ''; position: absolute; top: 26px; left: 8px; width: 24px; height: 24px; background: url('../img/leaf-mark.svg') center / contain no-repeat; }
.about-green__checklist strong { color: var(--forest); font-family: Georgia, serif; font-size: 1.03rem; }
.about-green__checklist span { color: var(--muted); font-size: .88rem; }
.about-green__comparison-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 65px; align-items: end; margin-bottom: 38px; }
.about-green__comparison-head h2 { margin-bottom: 0; }
.about-green__comparison-head > p { margin-bottom: 5px; color: var(--muted); }
.about-green__table { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-green__table-row { display: grid; grid-template-columns: .38fr 1fr; }
.about-green__table-row > * { padding: 18px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-green__table-row strong { color: var(--forest); font-family: Georgia, serif; }
.about-green__table-row span { color: var(--muted); }
.about-green__table-row--head { color: var(--white); background: var(--forest); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-green__table-row--head span { color: var(--white); }
.about-green__quote { position: relative; max-width: 920px; margin: 50px auto 0; padding: 26px 80px; color: var(--forest); border: 1px solid var(--line); background: var(--cream); font-family: Georgia, serif; font-size: clamp(1.15rem, 1.9vw, 1.55rem); text-align: center; }
.about-green__quote::before, .about-green__quote::after { content: ''; position: absolute; top: 50%; width: 32px; height: 32px; background: url('../img/leaf-mark.svg') center / contain no-repeat; transform: translateY(-50%); }
.about-green__quote::before { left: 25px; }
.about-green__quote::after { right: 25px; transform: translateY(-50%) scaleX(-1); }
.about-green__cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.about-green__cta h2 { margin-bottom: 10px; }
.about-green__cta p:last-child { max-width: 700px; margin-bottom: 0; color: #cad9d0; }
.about-green__cta-inner > div:last-child { display: grid; gap: 16px; text-align: center; }
.about-green__phone { color: var(--white); font-weight: 900; text-decoration: none; }

@media (max-width: 1120px) {
  .about-green__hero-grid { gap: 50px; }
  .about-green__principle-grid article { min-height: 295px; padding: 30px 25px; }
}

@media (max-width: 900px) {
  .about-green__hero-grid, .about-green__value-grid, .about-green__comparison-head, .about-green__cta-inner { grid-template-columns: 1fr; }
  .about-green__photo { width: min(100%, 760px); }
  .about-green__principle-grid { grid-template-columns: 1fr; }
  .about-green__principle-grid article { min-height: 0; }
  .about-green__principle-grid article > span { margin-bottom: 28px; }
  .about-green__comparison-head { gap: 10px; }
  .about-green__cta-inner > div:last-child { justify-items: start; text-align: left; }
}

@media (max-width: 640px) {
  .about-green__intro h1 { font-size: clamp(2rem, 9.5vw, 2.8rem); }
  .about-green__actions { align-items: stretch; flex-direction: column; }
  .about-green__actions .button { width: 100%; }
  .about-green__actions .text-link { text-align: center; }
  .about-green__photo figcaption { position: relative; right: auto; bottom: auto; width: calc(100% - 22px); margin: -24px auto 0; }
  .about-green__checklist li { grid-template-columns: 1fr; gap: 5px; padding: 20px 10px 20px 43px; }
  .about-green__table-row { grid-template-columns: 1fr; }
  .about-green__table-row--head { display: none; }
  .about-green__table-row > * { padding: 14px 17px; }
  .about-green__table-row strong { padding-bottom: 4px; border-bottom: 0; }
  .about-green__table-row span { padding-top: 4px; }
  .about-green__quote { padding: 26px 28px; }
  .about-green__quote::before, .about-green__quote::after { display: none; }
  .about-green__cta-inner > div:last-child { justify-items: stretch; text-align: center; }
}

@media (max-width: 1120px) {
  .site-header__inner > .button, .header-contact span { display: none; }
  .site-nav__list { gap: 16px; }
  .hero__photo { left: 35%; }
  .hero__content { width: 67%; }
  .works-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .voda21-reviews { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .site-footer__grid > div:nth-child(3) { display: none; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .utility-bar__inner span:nth-child(2) { display: none; }
  .site-header__inner { min-height: 82px; }
  .brand { width: 136px; }
  .menu-toggle { display: block; order: 4; margin-left: auto; cursor: pointer; }
  .site-nav { position: fixed; inset: 116px 0 auto; max-height: 0; overflow: hidden; margin: 0; background: var(--paper); opacity: 0; pointer-events: none; transition: max-height .28s ease, opacity .2s ease; }
  .site-nav.is-open { max-height: calc(100vh - 116px); overflow-y: auto; border-top: 1px solid var(--line); opacity: 1; pointer-events: auto; }
  .site-nav__list { display: grid; gap: 0; padding: 18px; }
  .site-nav__list li { border-bottom: 1px solid var(--line); }
  .site-nav__list a { display: block; padding: 15px 4px; font-size: 1rem; }
  .header-contact { margin-left: auto; }
  .hero { min-height: auto; padding-top: 350px; }
  .hero__photo { inset: 0 0 auto; height: 390px; }
  .hero__photo::after { background: linear-gradient(0deg, var(--cream), transparent 55%); }
  .hero__content { width: 100%; padding: 42px 0 58px; }
  .hero__actions { margin-bottom: 44px; }
  .intro__grid, .content-split, .home-details__grid, .estimate__grid, .faq__grid, .final-cta__inner, .diagram, .project-layout, .faq-page { grid-template-columns: 1fr; gap: 45px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 5px; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row__media, .service-row--reverse .service-row__media { order: initial; grid-column: 2; }
  .service-row__content, .service-row--reverse .service-row__content { order: initial; grid-column: 2; padding: 12px 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(3) { border-left: 1px solid var(--line); }
  .process-grid--three { grid-template-columns: repeat(3, 1fr); }
  .process-grid--three li:nth-child(3) { border-left: 0; }
  .estimate__intro, .faq__intro, .project-copy, .faq-aside { position: static; }
  .works-grid { gap: 18px; }
  .work-card__media { height: 270px; }
  .work-card__content { gap: 18px; }
  .work-card__content b { display: none; }
  .page-hero { min-height: 480px; }
  .project-gallery__item--main { min-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 160px; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid > div:nth-child(3) { display: block; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 48px 0; }
  h1 { font-size: clamp(2rem, 8.5vw, 2.55rem); }
  h2 { font-size: clamp(1.75rem, 7.1vw, 2.28rem); }
  .utility-bar__inner { justify-content: center; }
  .utility-bar__inner span:first-child { display: none; }
  .site-nav { top: 116px; }
  .header-contact { display: none; }
  .hero { padding-top: 255px; }
  .hero__photo { height: 300px; background-position: 62% center; }
  .hero::after { top: 18px; right: -45px; width: 185px; opacity: .27; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .text-link { padding: 9px 0; text-align: center; }
  .hero__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero__facts li:last-child { grid-column: 1 / -1; }
  .section-heading { margin-bottom: 32px; }
  .section-heading::after { margin-top: 20px; }
  .home-about-green__facts { grid-template-columns: 1fr; }
  .home-about-green__facts li { min-height: 0; padding: 18px 16px 18px 52px; }
  .home-about-green__facts li::before { top: 20px; }
  .service-row { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .service-row__number, .service-row__media, .service-row__content { grid-column: 1; }
  .service-row__media, .service-row__media img { min-height: 235px; }
  .process-grid, .process-grid--three { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li:nth-child(3), .process-grid--three li:nth-child(3) { min-height: auto; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .process-grid span { margin-bottom: 18px; }
  .home-detail-card { padding: 78px 22px 23px; }
  .home-detail-card::before { top: 19px; left: 20px; width: 38px; height: 48px; }
  .home-details::after { width: 190px; height: 235px; }
  .faq__intro::after { width: 105px; height: 130px; margin-top: 20px; }
  .voda21-calculator { padding: 23px 18px; }
  .voda21-options, .works-grid, .works-grid--archive, .voda21-reviews { grid-template-columns: 1fr; }
  .voda21-reviews--home .voda21-review:nth-child(n+5) { display: none; }
  .voda21-contact-grid { grid-template-columns: 1fr; }
  .voda21-calculator__actions { flex-direction: column-reverse; }
  .voda21-calculator__actions .button { width: 100%; }
  .work-card__media { height: 220px; }
  .work-card__content { padding: 20px; }
  .voda21-review { min-height: 290px; }
  .final-cta--compact .final-cta__inner { grid-template-columns: 1fr; }
  .page-hero { min-height: 445px; }
  .page-hero::before { background: linear-gradient(0deg, rgba(13,45,33,.98) 0, rgba(13,45,33,.78) 70%, rgba(13,45,33,.35)), var(--page-image) center/cover no-repeat; }
  .page-hero__inner { padding-bottom: 52px; }
  .archive-hero, .project-hero { padding: 58px 0 44px; }
  .project-stats { gap: 22px; }
  .project-gallery { grid-template-columns: 1fr; }
  .project-gallery__item, .project-gallery__item--main { grid-column: auto; min-height: 260px; }
  .lightbox { padding: 55px 12px 18px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
