/* ============================================================
   Geaux 2 Guy Renovations, Columbia SC. Design system.

   Palette read verbatim from the client's own logo file
   (logo-main-DAZ06Gkt.svg): #16fd18 / #2cca2d green and
   #fffd02 / #fefb06 yellow. Neither neon is legible on white,
   so the ground is a near-black with a green cast (the truck
   wrap), the neon green and yellow live on dark, and a deepened
   green (#0B7D0F, 5.3:1 on white) carries text and buttons.

   Brand devices, all drawn from the mark:
     1. CHAMFER. The wordmark's letters have cut corners, so
        buttons, cards, badges and photo frames are chamfered
        rather than rounded.
     2. THE TRIANGLE. The G2G monogram sits inside a circle as a
        downward triangle. It reappears as a ghost watermark in
        dark bands and as the bullet and step marker.
     3. TAPE SEAM. A green rule with a yellow tick, the way the
        truck wrap splits green from yellow, sits under every
        section title and along band edges.

   Fonts: Chakra Petch (squared, chamfered terminals, matches the
   wordmark) + Barlow. Auditioned five ways against the logo,
   see _qa/font-audition.png.
   ============================================================ */

:root {
  --ink: #0F1511;
  --ink-2: #16201A;
  --ink-3: #1F2C24;
  --ink-line: #2C3B31;

  --grn: #16FD18;
  --grn-mid: #2CCA2D;
  --grn-deep: #0B7D0F;
  --grn-deep-hover: #096409;
  --grn-soft: rgba(22, 253, 24, 0.12);
  --grn-tint: #EAFBEA;

  --amber: #FFFD02;
  --amber-mid: #FEFB06;
  --amber-soft: rgba(255, 253, 2, 0.14);

  --color-bg: #FFFFFF;
  --color-surface: #F4F6F3;
  --color-text: #1B221D;
  --color-text-light: #59635C;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #A9B6AD;
  --color-border: #E1E6E0;
  --color-google-star: #FBBC04;

  --font-display: 'Chakra Petch', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

  --container-width: 1200px;
  --section-pad: 96px;
  --nav-h: 74px;

  --chamfer: 14px;
  --chamfer-sm: 9px;

  --shadow-sm: 0 2px 10px rgba(15, 21, 17, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 21, 17, 0.13);
  --shadow-lg: 0 18px 46px rgba(15, 21, 17, 0.18);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --speed: 0.4s;

  /* the G2G triangle, used as a ghost watermark on dark bands */
  --tri: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%2316FD18' stroke-width='5'%3E%3Ccircle cx='100' cy='100' r='84'/%3E%3Cpath d='M44 62h112L100 154z'/%3E%3Cpath d='M76 62v34M124 62v34M100 96v34'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============ reset ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--grn-deep); }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: 0.005em;
  color: var(--color-text);
}
h1 { font-size: clamp(33px, 5vw, 60px); }
h2 { font-size: clamp(27px, 3.5vw, 42px); }
h3 { font-size: clamp(19px, 2vw, 23px); }
h4 { font-size: 17px; letter-spacing: 0.05em; }
p + p { margin-top: 15px; }
strong { font-weight: 700; }

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; position: relative; }
.section--surface { background: var(--color-surface); }
.section--tight { padding: 62px 0; }
.text-center { text-align: center; }
.prose { max-width: 820px; }
.prose p { color: var(--color-text-light); }
.prose h2 { margin-bottom: 18px; }

.section-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grn-deep);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 18px; }
/* device 3: green tape rule with a yellow tick */
.section-title--underline { position: relative; padding-bottom: 20px; }
.section-title--underline::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 5px;
  background: linear-gradient(90deg, var(--grn-deep) 0 66px, var(--amber-mid) 66px 78px, var(--grn-deep) 78px 96px);
}
.section-title--underline.left::after { left: 0; transform: none; }
.section--dark .section-title, .band .section-title, .cta-section h2 { color: #fff; }
.section--dark .section-subtitle, .band .section-subtitle { color: var(--grn); }
.band .section-title--underline::after {
  background: linear-gradient(90deg, var(--grn) 0 66px, var(--amber) 66px 78px, var(--grn) 78px 96px);
}

/* ============ buttons (device 1: chamfer) ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  padding: 15px 30px; border: 2px solid transparent; cursor: pointer;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
  min-height: 52px;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--grn-deep); color: #fff; }
.btn--primary:hover { background: var(--grn-deep-hover); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); clip-path: none; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); clip-path: none; }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--amber { background: var(--amber-mid); color: var(--ink); }
.btn--amber:hover { background: #ece900; color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 14px; min-height: 42px; --chamfer: 9px; }
.btn-pair { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ utility bar ============ */
.utility-bar {
  background: var(--ink); color: var(--color-text-on-dark-muted);
  font-size: 13.5px; padding: 9px 0; border-bottom: 1px solid var(--ink-line);
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__item svg { width: 15px; height: 15px; color: var(--grn); flex-shrink: 0; }
.utility-bar__actions { display: flex; align-items: center; gap: 20px; }
.utility-bar__phone { display: inline-flex; align-items: center; min-height: 26px; color: var(--amber); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; text-decoration: none; font-size: 15px; }
.utility-bar__phone:hover { color: #fff; }
@media (max-width: 900px) { .utility-bar { display: none; } }

/* ============ nav ============ */
.nav {
  position: sticky; top: 0; z-index: 90; background: var(--ink);
  border-bottom: 2px solid var(--ink-line); transition: box-shadow var(--speed) var(--ease);
}
.nav.scrolled { box-shadow: 0 6px 22px rgba(0,0,0,0.32); }
.nav .container { display: flex; align-items: center; gap: 20px; min-height: var(--nav-h); }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 56px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link, .nav__dropdown-toggle {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff; white-space: nowrap;
  background: none; border: 0; cursor: pointer; padding: 13px 13px; min-height: 44px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--speed) var(--ease);
}
.nav__link:hover, .nav__dropdown-toggle:hover { color: var(--grn); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 268px;
  background: var(--ink-2); border: 1px solid var(--ink-line);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  box-shadow: var(--shadow-lg);
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-item {
  display: flex; align-items: center; min-height: 46px; padding: 9px 13px; color: #DCE4DE; text-decoration: none;
  font-size: 15px; font-weight: 500; border-left: 3px solid transparent;
  transition: all 0.25s var(--ease);
}
.nav__dropdown-item:hover { background: var(--ink-3); color: var(--grn); border-left-color: var(--grn); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__hamburger span { display: block; width: 26px; height: 3px; background: var(--grn); margin: 5px 0; transition: all 0.3s var(--ease); }
.nav__hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 88; }
.nav-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 1100px) {
  .nav__actions { display: none; }
  .nav__hamburger { display: block; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw);
    background: var(--ink); flex-direction: column; align-items: stretch;
    gap: 0; padding: 84px 18px 32px; overflow-y: auto; z-index: 89;
    transform: translateX(105%); transition: transform 0.35s var(--ease); margin-left: 0;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link, .nav__dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px 8px; border-bottom: 1px solid var(--ink-line); }
  .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    max-height: 0; overflow: hidden; padding: 0; border: 0; box-shadow: none;
    background: var(--ink-2); transition: max-height 0.35s var(--ease);
  }
  .nav__dropdown.open .nav__dropdown-menu { max-height: 520px; padding: 6px; }
}

/* ============ mobile sticky CTA ============ */
.mobile-cta-bar { display: none; }
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    position: fixed; top: 0; left: 0; right: 0; z-index: 95; background: var(--ink-line);
  }
  .mobile-cta-bar a {
    text-align: center; padding: 12px 8px; font-family: var(--font-display);
    font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  }
  .mobile-cta-bar__primary { background: var(--grn-deep); color: #fff; }
  .mobile-cta-bar__call { background: var(--amber-mid); color: var(--ink); }
  .nav { top: 44px; }
  body { padding-top: 44px; }
}

/* ============ hero ============ */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tri); background-repeat: no-repeat;
  background-position: right -90px top -60px; background-size: 460px; opacity: 0.06;
}
.hero__content { position: relative; z-index: 2; max-width: 720px; padding: 74px 0 88px; }
.hero__title { color: #fff; margin: 14px 0 12px; }
.hero__count { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.hero__text { font-size: 18.5px; color: #D5DED8; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero--split { display: block; }
.hero--split .hero__photo { position: absolute; inset: 0 0 0 auto; width: 46%; }
.hero--split .hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero--split .hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(15,21,17,0.72) 26%, rgba(15,21,17,0.12) 68%);
}
.hero--split .hero__content { max-width: 620px; padding: 88px 0 100px; }
@media (max-width: 980px) {
  .hero--split .hero__photo { position: relative; width: 100%; height: 260px; }
  .hero--split .hero__photo::after { background: linear-gradient(180deg, rgba(15,21,17,0.25), var(--ink)); }
  .hero--split .hero__content { padding: 34px 0 60px; }
}

.hero--sub .hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero--sub .hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,21,17,0.94) 0%, rgba(15,21,17,0.86) 42%, rgba(15,21,17,0.58) 100%); }
.hero--sub .hero__content { padding: 46px 0 66px; }
.hero--nophoto { background: var(--ink) linear-gradient(140deg, var(--ink) 0%, var(--ink-3) 100%); }

.hero__slope { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 3; }
.hero__slope svg { display: block; width: 100%; height: 46px; }

.breadcrumbs { position: relative; z-index: 2; padding-top: 22px; font-size: 14px; color: #A9B6AD; }
.breadcrumbs ol { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
.breadcrumbs a, .breadcrumbs .current { display: inline-flex; align-items: center; min-height: 26px; }
.breadcrumbs a { color: #A9B6AD; text-decoration: none; }
.breadcrumbs a:hover { color: var(--grn); }
.breadcrumbs .current { color: #fff; }

/* review badges, mandatory in every hero */
.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; }
.hero__badge { display: inline-flex; align-items: center; gap: 11px; }
.hero__badge-logo { width: 27px; height: 27px; flex-shrink: 0; }
.hero__badge-info { display: flex; flex-direction: column; line-height: 1.1; }
.hero__badge-stars { display: flex; gap: 2px; }
.hero__badge-stars svg { width: 15px; height: 15px; fill: var(--color-google-star); }
.hero__badge-stars .is-half { fill: url(#g2gHalfStar); }
.hero__badge-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.09em; text-transform: uppercase; color: #fff; margin-top: 3px; }

/* ============ trust strip ============ */
.trust-strip { position: relative; z-index: 5; margin-top: -34px; }
.trust-strip__card {
  background: #fff; box-shadow: var(--shadow-md); border-top: 4px solid var(--grn-deep);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 24px 18px;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
}
.trust-strip__item { display: flex; align-items: center; gap: 13px; padding: 0 14px; }
.trust-strip__item + .trust-strip__item { border-left: 1px solid var(--color-border); }
.trust-strip__icon { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; background: var(--grn-tint); color: var(--grn-deep); }
.trust-strip__icon svg { width: 21px; height: 21px; }
.trust-strip__label { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.15; }
.trust-strip__sub { font-size: 13.5px; color: var(--color-text-light); line-height: 1.35; }
@media (max-width: 900px) {
  .trust-strip__card { grid-template-columns: 1fr 1fr; }
  .trust-strip__item:nth-child(odd) { border-left: 0; }
  .trust-strip__item { padding: 10px 8px; }
}
@media (max-width: 540px) { .trust-strip__card { grid-template-columns: 1fr; } .trust-strip__item { border-left: 0 !important; } }

/* ============ cards ============ */
.card-grid { display: grid; gap: 26px; margin-top: 44px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .card-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .card-grid { grid-template-columns: 1fr !important; } }

.svc-card {
  background: #fff; border: 1px solid var(--color-border); display: flex; flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--grn-mid); }
.svc-card__photo { position: relative; line-height: 0; }
.svc-card__photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.svc-card__badge {
  position: absolute; left: 16px; bottom: -20px; width: 44px; height: 44px;
  display: grid; place-items: center; background: var(--ink); color: var(--grn);
  clip-path: polygon(var(--chamfer-sm) 0, 100% 0, 100% calc(100% - var(--chamfer-sm)), calc(100% - var(--chamfer-sm)) 100%, 0 100%, 0 var(--chamfer-sm));
}
.svc-card__badge svg { width: 22px; height: 22px; }
.svc-card__icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--grn-tint); color: var(--grn-deep); margin: 26px 26px 0; }
.svc-card__icon svg { width: 27px; height: 27px; }
.svc-card > h3 { padding: 32px 26px 0; }
.svc-card__photo + h3 { padding-top: 32px; }
.svc-card > p { padding: 10px 26px 0; color: var(--color-text-light); font-size: 15.5px; }
.svc-card__links { padding: 16px 26px 26px; margin-top: auto; display: grid; gap: 7px; }
.svc-card__links li { font-size: 15px; color: var(--color-text-light); display: flex; gap: 7px; align-items: flex-start; }
.svc-card__links a { color: var(--grn-deep); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; min-height: 28px; }
.svc-card__links a:hover { text-decoration: underline; }
.svc-card__links svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; color: var(--grn-deep); }
.svc-card__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--grn-deep); text-decoration: none; }
.svc-card__more:hover { text-decoration: underline; }
.svc-card__more svg { width: 15px; height: 15px; }

.icon-card {
  background: #fff; border: 1px solid var(--color-border); padding: 30px 26px;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-card__icon { width: 50px; height: 50px; display: grid; place-items: center; background: var(--grn-tint); color: var(--grn-deep); margin-bottom: 18px; }
.icon-card__icon svg { width: 25px; height: 25px; }
.icon-card h3 { margin-bottom: 9px; }
.icon-card p { color: var(--color-text-light); font-size: 15.5px; }
.section--surface .icon-card { background: #fff; }

.link-card {
  display: flex; align-items: center; gap: 16px; padding: 19px 22px; background: #fff;
  border: 1px solid var(--color-border); text-decoration: none; color: inherit;
  transition: all var(--speed) var(--ease);
}
.link-card:hover { border-color: var(--grn-mid); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.link-card__icon { width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center; background: var(--ink); color: var(--grn); }
.link-card__icon svg { width: 21px; height: 21px; }
.link-card__body { display: flex; flex-direction: column; }
.link-card__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 17px; letter-spacing: 0.02em; }
.link-card__sub { font-size: 14px; color: var(--color-text-light); line-height: 1.4; }

/* ============ check list (device 2: triangle bullet) ============ */
.check-list { display: grid; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--color-text-light); }
.check-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; color: var(--grn-deep); }
.check-list a { color: var(--color-text); text-decoration: none; font-weight: 600; display: flex; align-items: flex-start; gap: 10px; min-height: 28px; padding: 2px 0; }
.check-list a:hover { color: var(--grn-deep); }
.check-list--cols { columns: 2; column-gap: 34px; }
.check-list--cols li { break-inside: avoid; padding: 4px 0; }
@media (max-width: 640px) { .check-list--cols { columns: 1; } }

/* ============ split ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__img { line-height: 0; }
.split__img img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-md);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}
.split--flip .split__img { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split--flip .split__img { order: 0; } }

.photo-band { margin-top: 40px; line-height: 0; }
.photo-band img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px); }

/* before / after composite, the client's own branded graphics */
.ba-figure { margin: 0; }
.ba-figure img { width: 100%; box-shadow: var(--shadow-md); }
.ba-figure figcaption { margin-top: 12px; font-size: 14.5px; color: var(--color-text-light); }

/* ============ stats ============ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.stat { border-left: 4px solid var(--grn-deep); padding-left: 14px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--ink); }
.stat__label { font-size: 13.5px; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 5px; }
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr 1fr; } }

/* ============ steps ============ */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.step { background: #fff; border: 1px solid var(--color-border); padding: 32px 26px; position: relative; }
.step__num {
  width: 46px; height: 46px; display: grid; place-items: center; background: var(--ink); color: var(--grn);
  font-family: var(--font-display); font-weight: 700; font-size: 21px; margin-bottom: 16px;
  clip-path: polygon(var(--chamfer-sm) 0, 100% 0, 100% calc(100% - var(--chamfer-sm)), calc(100% - var(--chamfer-sm)) 100%, 0 100%, 0 var(--chamfer-sm));
}
.step h3 { margin-bottom: 9px; }
.step p { color: var(--color-text-light); font-size: 15.5px; }
@media (max-width: 860px) { .step-grid { grid-template-columns: 1fr; } }

/* ============ reviews ============ */
.review-card {
  background: #fff; border: 1px solid var(--color-border); padding: 28px 26px; display: flex; flex-direction: column;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
}
.review-card__g { width: 24px; height: 24px; margin-bottom: 12px; }
.review-card__g svg { width: 100%; height: 100%; }
.review-card__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-card__stars svg { width: 17px; height: 17px; color: var(--color-google-star); }
.review-card__text { color: var(--color-text); font-size: 15.5px; line-height: 1.62; }
.review-card__reply { margin-top: 14px; padding-top: 13px; border-top: 1px dashed var(--color-border); font-size: 14.5px; color: var(--color-text-light); }
.review-card__reply strong { color: var(--grn-deep); }
.quote-card .review-card__g { margin-bottom: 12px; }
.review-card__meta { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-card__initial { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink); color: var(--grn); font-family: var(--font-display); font-weight: 700; font-size: 19px; border-radius: 50%; }
.review-card__author { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 16px; letter-spacing: 0.02em; }
.review-card__when { font-size: 13px; color: var(--color-text-light); }
.quote-card { max-width: 800px; margin: 40px auto 0; background: #fff; border: 1px solid var(--color-border); border-top: 4px solid var(--grn-deep); padding: 34px 34px 28px; text-align: center; }
.quote-card .review-card__g, .quote-card .review-card__stars { margin-left: auto; margin-right: auto; }
.quote-card .review-card__stars { justify-content: center; }
.quote-card__text { font-size: 18px; line-height: 1.6; }
.quote-card .review-card__meta { justify-content: center; }
.reviews__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.review-widget { margin-top: 32px; background: #fff; padding: 12px; border: 1px solid var(--color-border); }
.review-widget iframe { display: block; min-height: 620px; }

/* ============ FAQ ============ */
.faq-list { max-width: 900px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--color-border); }
.faq-item__question {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: 0.01em;
  color: var(--color-text); padding: 20px 22px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; text-transform: none; min-height: 56px;
}
.faq-item__question svg { flex-shrink: 0; color: var(--grn-deep); transition: transform 0.3s var(--ease); }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item.active .faq-item__question { color: var(--grn-deep); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.active .faq-item__answer { max-height: 620px; }
.faq-item__answer-inner { padding: 0 22px 22px; color: var(--color-text-light); font-size: 15.5px; }

/* ============ areas ============ */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 860px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }
.area-card { background: #fff; border: 1px solid var(--color-border); border-left: 4px solid var(--grn-deep); padding: 20px 22px; transition: all var(--speed) var(--ease); }
.area-card:hover { box-shadow: var(--shadow-sm); border-left-color: var(--amber-mid); }
.area-card__city { display: flex; min-height: 30px; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 19px; text-transform: uppercase; color: var(--color-text); text-decoration: none; }
.area-card__city svg { width: 18px; height: 18px; color: var(--grn-deep); }
.area-card__city:hover { color: var(--grn-deep); }
.area-card__links { margin-top: 6px; font-size: 14px; color: var(--color-text-light); display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.area-card__links a { display: inline-flex; align-items: center; min-height: 28px; }
.area-card__links a { color: var(--grn-deep); text-decoration: none; }
.area-card__links a:hover { text-decoration: underline; }

/* ============ dark band ============ */
.band { background: var(--ink); color: #fff; padding: 82px 0; position: relative; overflow: hidden; }
.band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tri); background-repeat: no-repeat;
  background-position: left -110px bottom -110px; background-size: 480px; opacity: 0.05;
}
.band .container { position: relative; z-index: 2; }
.band p { color: #C6D1C9; }
.band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
@media (max-width: 940px) { .band__grid { grid-template-columns: 1fr; gap: 36px; } }
.form-card { background: #fff; color: var(--color-text); padding: 30px 28px; box-shadow: var(--shadow-lg); }
.form-card__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; }
.form-card__sub { font-size: 15px; color: var(--color-text-light); margin: 7px 0 18px; }
.form-card__facts { display: grid; gap: 12px; }
.form-card__note { margin-top: 16px; font-size: 14.5px; color: var(--color-text-light); }

/* ============ CTA band ============ */
.cta-section { background: var(--grn-deep); color: #fff; padding: 66px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: linear-gradient(90deg, var(--amber-mid) 0 22%, var(--ink) 22% 100%); }
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.92); max-width: 680px; margin: 0 auto 26px; }

/* ============ lead form ============ */
#estimate { scroll-margin-top: 130px; }
.lead-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 52px; align-items: start; }
.lead-split__copy { max-width: 560px; }
.lead-split__copy > p { color: var(--color-text-light); }
.lead-split__facts { margin-top: 22px; }
.lead-split__phone { display: inline-block; margin-top: 22px; font-family: var(--font-display); font-weight: 700; font-size: 36px; letter-spacing: 0.02em; color: var(--grn-deep); text-decoration: none; }
.lead-split__phone:hover { color: var(--ink); }
.lead-split__steps { counter-reset: lsstep; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--color-border); display: grid; gap: 16px; }
.lead-split__steps li { counter-increment: lsstep; position: relative; padding-left: 48px; font-size: 15px; color: var(--color-text-light); line-height: 1.6; }
.lead-split__steps li::before {
  content: counter(lsstep); position: absolute; left: 0; top: 0; width: 34px; height: 34px;
  background: var(--ink); color: var(--grn); font-family: var(--font-display); font-weight: 700; font-size: 16px;
  display: grid; place-items: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.lead-split__steps strong { display: block; color: var(--color-text); font-size: 16px; }
.lead-split__linkhead { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--color-border); font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.05em; }
.lead-split__links { columns: 2; gap: 24px; margin-top: 12px; }
.lead-split__links li { padding: 3px 0; break-inside: avoid; }
.lead-split__links a { font-size: 15px; font-weight: 600; color: var(--grn-deep); text-decoration: none; display: inline-flex; align-items: center; min-height: 28px; }
.lead-split__links a:hover { text-decoration: underline; }
.lead-split__form { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; }
@media (max-width: 960px) {
  .lead-split { grid-template-columns: 1fr; gap: 34px; }
  .lead-split__copy { max-width: 660px; }
  .lead-split__form { position: static; top: auto; }
}
@media (max-width: 520px) { .lead-split__links { columns: 1; } }

.lead-form { background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-md); padding: 28px 26px; }
.lead-form__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; }
.lead-form__sub { font-size: 15px; color: var(--color-text-light); margin: 7px 0 20px; }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form__full { grid-column: 1 / -1; }
@media (max-width: 520px) { .lead-form__grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text); }
.form-input, .form-textarea, .form-select {
  font-family: var(--font-body); font-size: 16px; padding: 12px 14px;
  border: 1.5px solid var(--color-border); background: #fff; color: var(--color-text); width: 100%;
  transition: border-color 0.25s var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--grn-deep); }
.form-textarea { resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B7D0F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 17px; padding-right: 38px; }
.form-file { font-size: 15px; padding: 10px 0; }
.form-hint { font-size: 13.5px; color: var(--color-text-light); }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--color-text-light); }
.form-consent input { margin-top: 5px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--grn-deep); }
.lead-form__submit {
  grid-column: 1 / -1; font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.07em; text-transform: uppercase; background: var(--grn-deep); color: #fff;
  border: 0; padding: 16px 26px; cursor: pointer; min-height: 54px;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
  transition: background var(--speed) var(--ease);
}
.lead-form__submit:hover { background: var(--grn-deep-hover); }
.lead-form__submit:disabled { opacity: 0.6; cursor: default; }
.lead-form__result { grid-column: 1 / -1; font-size: 15px; padding: 12px 14px; }
.lead-form__result.is-ok { background: var(--grn-tint); color: #0A5E0D; }
.lead-form__result.is-err { background: #FDECEC; color: #9B1C1C; }
.lead-form__consent { grid-column: 1 / -1; font-size: 12.5px; line-height: 1.55; color: var(--color-text-light); }
.lead-form__consent a { color: var(--grn-deep); }

/* ============ gallery ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { line-height: 0; background: var(--ink); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: opacity var(--speed) var(--ease); }
.gallery-item:hover img { opacity: 0.86; }
.gallery-item figcaption { line-height: 1.4; font-size: 13px; color: var(--color-text-light); padding: 9px 2px 0; background: var(--color-bg); }

/* ============ maps ============ */
.map-section { line-height: 0; display: grid; grid-template-columns: 1fr; }
.map-embed { width: 100%; height: 320px; border: 0; display: block; }

/* ============ footer ============ */
.footer { background: var(--ink); color: var(--color-text-on-dark-muted); padding: 66px 0 34px; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tri); background-repeat: no-repeat;
  background-position: right -120px bottom -140px; background-size: 520px; opacity: 0.045;
}
.footer .container { position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo img { height: 84px; width: auto; }
.footer__brand-desc { margin-top: 16px; font-size: 15px; line-height: 1.6; }
.footer__rating { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 14px; color: #fff; }
.footer__rating svg { width: 16px; height: 16px; color: var(--color-google-star); }
.footer__heading { color: #fff; margin-bottom: 16px; letter-spacing: 0.09em; }
.footer__links { display: grid; gap: 4px; }
.footer__links a { color: var(--color-text-on-dark-muted); text-decoration: none; font-size: 15px; display: inline-flex; align-items: center; min-height: 28px; }
.footer__links a:hover { color: var(--grn); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; margin-bottom: 13px; }
.footer__contact-item svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--grn); margin-top: 3px; }
.footer__contact-item a { color: var(--amber); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; min-height: 26px; }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--ink-line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; }
.legal-footer { background: #070A08; color: #7C8A81; text-align: center; padding: 14px 20px; font-size: 13px; }
.legal-footer a { color: #7C8A81; text-decoration: none; display: inline-block; padding: 4px 2px; min-height: 26px; }
.legal-footer a:hover { color: var(--grn); }

/* ============ misc ============ */
.section__footer { text-align: center; margin-top: 44px; }
.section-divider { line-height: 0; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .svc-card:hover, .icon-card:hover { transform: none; }
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* customer pull quote, used where a review line is the best proof available */
.pull-quote { margin: 26px 0 0; padding: 20px 24px; background: var(--grn-tint); border-left: 5px solid var(--grn-deep); font-size: 18px; line-height: 1.55; color: var(--color-text); }
.pull-quote cite { display: block; margin-top: 10px; font-size: 14px; font-style: normal; color: var(--color-text-light); }
