/* =========================================================
   APEX — Public marketing site
   ========================================================= */

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s }
.reveal[data-d="2"] { transition-delay: .16s }
.reveal[data-d="3"] { transition-delay: .24s }
.reveal[data-d="4"] { transition-delay: .32s }
.reveal[data-d="5"] { transition-delay: .40s }

/* ---------- announcement ---------- */
.topbar {
  background: var(--navy-900); color: rgba(255,255,255,.86);
  font-family: var(--font-brand); font-size: 12px; font-weight: 500;
  letter-spacing: .06em;
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 40px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar__links { display: flex; align-items: center; gap: 22px; }
.topbar__links a:hover { color: var(--green-400); }
@media (max-width: 860px) { .topbar__msg { display: none } .topbar__in { justify-content: center } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s ease;
}
.nav.is-stuck { box-shadow: 0 6px 24px rgba(13,27,61,.08); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--font-brand); font-size: 12.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--navy);
  text-decoration: none; position: relative; padding: 6px 0;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--green); transition: right .3s cubic-bezier(.16,1,.3,1);
}
.nav__link:hover::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  font-family: var(--font-brand); font-weight: 700; font-size: 14px;
  color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.nav__phone:hover { color: var(--green); }
.nav__burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--navy); position: relative; }
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy);
}
.nav__burger span::before { top: -6px } .nav__burger span::after { top: 6px }

@media (max-width: 1120px) {
  .nav__menu, .nav__phone { display: none }
  .nav__burger { display: inline-flex }
}
@media (max-width: 560px) { .nav__cta .btn { display: none } }

.mobilemenu {
  position: fixed; inset: 0; z-index: 80; background: var(--navy);
  display: flex; flex-direction: column; padding: 26px var(--gutter);
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
}
.mobilemenu.is-open { transform: none }
.mobilemenu__top { display: flex; align-items: center; justify-content: space-between; }
.mobilemenu__close { background: none; border: 0; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }
.mobilemenu__list { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.mobilemenu__list a {
  font-family: var(--font-display); font-size: 32px; color: #fff; text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobilemenu__foot { margin-top: auto; padding-top: 34px; display: grid; gap: 12px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(56px, 9vw, 104px) 0 0; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0 auto auto 50%; transform: translateX(-50%);
  width: 1400px; height: 700px; background: radial-gradient(ellipse at center, rgba(14,124,75,.07), transparent 62%);
  pointer-events: none;
}
.hero__in { position: relative; text-align: center; }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(42px, 7.4vw, 92px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--navy); max-width: 16ch; margin: 22px auto 0;
}
.hero__title em { font-style: italic; color: var(--green); }
.hero__sub {
  margin: 26px auto 0; max-width: 62ch; font-size: clamp(17px, 1.5vw, 20px);
  color: var(--slate-700); line-height: 1.6;
}
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__note {
  margin-top: 18px; font-family: var(--font-brand); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--slate-400);
}

.hero__media {
  position: relative; margin-top: clamp(40px, 6vw, 68px);
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 21 / 9; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 55%, var(--green-700) 130%);
  box-shadow: var(--shadow-lg);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: clamp(16px,3vw,34px); bottom: clamp(16px,3vw,34px);
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-radius: var(--radius-lg); padding: 16px 22px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow);
}
.hero__badge svg { width: 34px; height: 31px; flex: none; }
.hero__badge b { display: block; font-family: var(--font-brand); font-size: 13px; letter-spacing: .04em; }
.hero__badge span { font-size: 12.5px; color: var(--slate); }
@media (max-width: 700px) { .hero__media { aspect-ratio: 4/3 } .hero__badge { display: none } }

/* ---------- stat strip ---------- */
.stats { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); margin-top: clamp(48px,7vw,90px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 20px; text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0 }
.stat__n { font-family: var(--font-display); font-size: clamp(30px,3.6vw,46px); color: var(--navy); line-height: 1; }
.stat__n span { color: var(--green) }
.stat__l { margin-top: 10px; font-family: var(--font-brand); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); }
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr) }
  .stat:nth-child(2) { border-right: 0 }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft) }
}

/* ---------- section shell ---------- */
.section { padding: clamp(66px, 9vw, 128px) 0; }
.section--tint { background: var(--paper-2); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy .sec__title { color: #fff }
.section--navy .sec__lede { color: rgba(255,255,255,.72) }
.sec__head { max-width: 760px; }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(31px, 4.3vw, 54px); line-height: 1.08; letter-spacing: -.022em;
  color: var(--navy); margin-top: 16px;
}
.sec__lede { margin-top: 18px; font-size: 17.5px; color: var(--slate-700); line-height: 1.65; }

/* ---------- services ---------- */
.svc-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 38px; }
.svc-tab {
  font-family: var(--font-brand); font-weight: 700; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; padding: 12px 22px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; color: var(--slate); cursor: pointer;
  transition: all .2s ease;
}
.svc-tab:hover { border-color: var(--navy-500); color: var(--navy) }
.svc-tab.is-on { background: var(--navy); border-color: var(--navy); color: #fff }

.svc-panel { display: none; margin-top: 40px; }
.svc-panel.is-on { display: block; animation: fade .5s cubic-bezier(.16,1,.3,1); }
@keyframes fade { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }

.svc-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr } }

.svc-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(140deg, var(--navy), var(--green-700)); box-shadow: var(--shadow); position: relative; }
.svc-figure img { width: 100%; height: 100%; object-fit: cover; }

.svc-groups { display: grid; gap: 26px; }
.svc-group h3 {
  font-family: var(--font-brand); font-size: 12.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy); padding-bottom: 10px; border-bottom: 2px solid var(--green);
  display: inline-block;
}
.svc-list { margin-top: 14px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px 22px; }
@media (max-width: 560px) { .svc-list { grid-template-columns: 1fr } }
.svc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--slate-700); }
.svc-list li::before {
  content: ''; flex: none; width: 7px; height: 7px; margin-top: 9px; border-radius: 2px;
  background: var(--green); transform: rotate(45deg);
}

/* ---------- green certification ---------- */
.green { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.green::after {
  content: ''; position: absolute; right: -12%; top: -30%; width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(63,169,107,.28), transparent 62%); pointer-events: none;
}
.green__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,76px); align-items: center; }
@media (max-width: 920px) { .green__grid { grid-template-columns: 1fr } }
.green__points { margin-top: 34px; display: grid; gap: 22px; }
.green__point { display: flex; gap: 16px; }
.green__ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(63,169,107,.16); border: 1px solid rgba(63,169,107,.3);
}
.green__ico svg { width: 22px; height: 22px; stroke: var(--green-400); fill: none; stroke-width: 1.7; }
.green__point b { display: block; font-family: var(--font-brand); font-size: 14.5px; letter-spacing: .01em; margin-bottom: 4px; }
.green__point p { color: rgba(255,255,255,.7); font-size: 15px; }

.cert-card {
  background: #fff; color: var(--navy); border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-lg); position: relative;
}
.cert-card__seal {
  width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: var(--green-50); border: 2px solid var(--green); margin-bottom: 22px;
}
.cert-card__seal span {
  font-family: var(--font-brand); font-size: 9.5px; font-weight: 800; letter-spacing: .12em;
  line-height: 1.35; color: var(--green-700); text-transform: uppercase;
}
.cert-card h3 { font-family: var(--font-display); font-size: 27px; font-weight: 400; }
.cert-card p { margin-top: 14px; color: var(--slate-700); font-size: 15.5px; }
.cert-card ul { margin-top: 22px; display: grid; gap: 11px; }
.cert-card li { display: flex; gap: 11px; font-size: 15px; color: var(--navy); align-items: flex-start; }
.cert-card li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; stroke: var(--green); fill: none; stroke-width: 2.2; }
.cert-card__foot { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--slate-400); }
.cert-card__foot a { color: var(--green-700); font-weight: 600; }

/* ---------- values ---------- */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; margin-top: 46px; }
@media (max-width: 980px) { .values { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr } }
.value { background: #fff; padding: 32px 26px; }
.value svg { width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 1.6; }
.value b { display: block; margin-top: 18px; font-family: var(--font-brand); font-size: 12.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); }
.value p { margin-top: 9px; font-size: 14.5px; color: var(--slate); line-height: 1.55; }

/* ---------- process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; counter-reset: step; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr } }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-family: var(--font-display); font-size: 40px; color: var(--green); line-height: 1;
}
.step h3 { margin-top: 14px; font-family: var(--font-brand); font-size: 13px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.step p { margin-top: 10px; font-size: 15px; color: var(--slate-700); }

/* ---------- industries ---------- */
.inds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.ind {
  font-family: var(--font-brand); font-size: 12.5px; font-weight: 600; letter-spacing: .05em;
  padding: 11px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); background: rgba(255,255,255,.05);
}

/* ---------- service area ---------- */
.area__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px,4vw,64px); align-items: center; }
@media (max-width: 900px) { .area__grid { grid-template-columns: 1fr } }
.area__list { margin-top: 30px; display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.area__list div { background: #fff; padding: 20px 22px; }
.area__list b { font-family: var(--font-brand); font-size: 14px; display: block; }
.area__list span { font-size: 13px; color: var(--slate-400); }
.area__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: var(--paper-3); position: relative; }
.area__map svg { width: 100%; height: 100%; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr } }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--feature { border-color: var(--navy); box-shadow: var(--shadow); position: relative; }
.plan--feature::before {
  content: 'Most requested'; position: absolute; top: -12px; left: 30px;
  background: var(--green); color: #fff; font-family: var(--font-brand); font-size: 10.5px;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px;
}
.plan h3 { font-family: var(--font-brand); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.plan__price { margin-top: 16px; font-family: var(--font-display); font-size: 46px; line-height: 1; color: var(--navy); }
.plan__price sup { font-size: 20px; top: -18px; position: relative; }
.plan__per { font-family: var(--font-body); font-size: 14px; color: var(--slate-400); }
.plan p { margin-top: 14px; font-size: 14.5px; color: var(--slate-700); }
.plan ul { margin-top: 22px; display: grid; gap: 10px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.plan li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--green); fill: none; stroke-width: 2.4; }
.plan .btn { margin-top: 28px; }
.plan__foot { margin-top: auto; }
.pricing-note { margin-top: 26px; text-align: center; font-size: 13.5px; color: var(--slate-400); }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr } }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; }
.quote__stars { display: flex; gap: 3px; }
.quote__stars svg { width: 16px; height: 16px; fill: var(--green); }
.quote p { margin-top: 18px; font-family: var(--font-display); font-size: 19px; line-height: 1.5; color: var(--navy); }
.quote footer { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--slate-400); }
.quote footer b { display: block; font-family: var(--font-brand); font-size: 13px; color: var(--navy); letter-spacing: .02em; }

/* ---------- quote form ---------- */
.quoteform { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.quoteform::before {
  content: ''; position: absolute; left: -14%; bottom: -40%; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(63,169,107,.25), transparent 62%);
}
.qf__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px,5vw,72px); align-items: start; }
@media (max-width: 940px) { .qf__grid { grid-template-columns: 1fr } }
.qf__promises { margin-top: 32px; display: grid; gap: 18px; }
.qf__promise { display: flex; gap: 14px; align-items: flex-start; }
.qf__promise svg { width: 20px; height: 20px; flex: none; margin-top: 3px; stroke: var(--green-400); fill: none; stroke-width: 2.2; }
.qf__promise b { font-family: var(--font-brand); font-size: 14px; display: block; }
.qf__promise span { font-size: 14.5px; color: rgba(255,255,255,.68); }
.qf__contact { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); display: grid; gap: 14px; }
.qf__contact a { display: flex; gap: 12px; align-items: center; color: #fff; text-decoration: none; font-size: 15.5px; }
.qf__contact a:hover { color: var(--green-400) }
.qf__contact svg { width: 18px; height: 18px; stroke: var(--green-400); fill: none; stroke-width: 1.9; }

.card-form {
  background: #fff; color: var(--navy); border-radius: var(--radius-xl);
  padding: clamp(26px,3.4vw,42px); box-shadow: var(--shadow-lg);
}
.card-form h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; }
.card-form > p { margin-top: 8px; font-size: 14.5px; color: var(--slate); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.fgrid .full { grid-column: 1 / -1 }
@media (max-width: 620px) { .fgrid { grid-template-columns: 1fr } }
.field label {
  display: block; font-family: var(--font-brand); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 7px;
}
.field label .req { color: var(--green) }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2); font-size: 15.5px; transition: border-color .18s, background .18s, box-shadow .18s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(14,124,75,.1);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--red) }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; padding: 10px 16px; border: 1.5px solid var(--line); border-radius: 999px;
  font-family: var(--font-brand); font-size: 12px; font-weight: 600; letter-spacing: .04em;
  cursor: pointer; transition: all .18s ease; background: #fff;
}
.chip input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff }
.chip input:focus-visible + span { outline: 3px solid var(--green-400); outline-offset: 2px }
.form-legal { margin-top: 18px; font-size: 12.5px; color: var(--slate-400); line-height: 1.5; }
.form-success {
  display: none; text-align: center; padding: 20px 0;
}
.form-success.is-on { display: block; animation: fade .5s ease }
.form-success__ico {
  width: 76px; height: 76px; border-radius: 50%; background: var(--green-50);
  display: grid; place-items: center; margin: 0 auto 22px; border: 2px solid var(--green);
}
.form-success__ico svg { width: 34px; height: 34px; stroke: var(--green); fill: none; stroke-width: 2.6 }
.form-success h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400 }
.form-success p { margin-top: 12px; color: var(--slate-700); font-size: 15.5px }
.form-success .ref {
  margin-top: 22px; display: inline-flex; flex-direction: column; gap: 4px; padding: 16px 26px;
  background: var(--paper-2); border: 1px dashed var(--line); border-radius: var(--radius);
}
.form-success .ref b { font-family: var(--font-brand); font-size: 22px; letter-spacing: .04em }
.form-success .ref span { font-family: var(--font-brand); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400) }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 46px auto 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--font-brand); font-size: 16px; font-weight: 600; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg) }
.faq p { padding: 0 44px 26px 0; color: var(--slate-700); font-size: 15.5px }

/* ---------- CTA band ---------- */
.band { background: var(--green); color: #fff; }
.band__in { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(40px,5vw,62px) 0; flex-wrap: wrap; }
.band h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px,3.4vw,40px); max-width: 20ch }
.band p { margin-top: 10px; color: rgba(255,255,255,.82); font-size: 16px }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: clamp(52px,6vw,84px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr } }
.footer h4 { font-family: var(--font-brand); font-size: 11.5px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 18px }
.footer ul { display: grid; gap: 11px }
.footer a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14.5px }
.footer a:hover { color: var(--green-400) }
.footer__about { font-size: 14.5px; line-height: 1.65; margin-top: 20px; max-width: 42ch }
.footer__bottom {
  margin-top: 56px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.footer__bottom a { font-size: 13px }

/* ---------- floating employee login ---------- */
.emplogin {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff; text-decoration: none;
  padding: 13px 20px; border-radius: 999px; box-shadow: var(--shadow-lg);
  font-family: var(--font-brand); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.emplogin:hover { transform: translateY(-3px); background: var(--green) }
.emplogin svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2 }
@media (max-width: 560px) { .emplogin { right: 14px; bottom: 14px; padding: 12px 16px } .emplogin span { display: none } }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 140%);
  background: var(--navy); color: #fff; padding: 15px 24px; border-radius: 999px;
  font-family: var(--font-brand); font-size: 13px; letter-spacing: .04em;
  box-shadow: var(--shadow-lg); z-index: 90; transition: transform .45s cubic-bezier(.16,1,.3,1);
  display: flex; align-items: center; gap: 10px;
}
.toast.is-on { transform: translate(-50%, 0) }
.toast svg { width: 17px; height: 17px; stroke: var(--green-400); fill: none; stroke-width: 2.4 }

/* ---------- fixes / refinements ---------- */
.green .sec__title, .quoteform .sec__title { color: #fff; }
.green .sec__lede, .quoteform .sec__lede { color: rgba(255,255,255,.72); }
.green .sec__lede strong, .quoteform .sec__lede strong { color: #fff; }

.hero__badge img.lockup-mini { width: 34px; height: 31px; flex: none; }
.hero__badge > span { display: block; }

.svc-groups > .btn { justify-self: start; }

.plan__price sup { font-size: 22px; top: -.55em; position: relative; margin-right: 2px; }

.quote footer b { letter-spacing: .01em; }
.quotes-note { margin-top: 22px; text-align: center; font-size: 13px; color: var(--slate-400); font-style: italic; }

.area__map { align-self: stretch; }

/* ---------- why-choose strip (replaces the invented stat strip) ---------- */
.whystrip {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  margin-top: clamp(48px,7vw,90px); padding: 30px 0; text-align: center;
}
.whystrip .eyebrow { display: block; margin-bottom: 18px; }
.whystrip__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0;
}
.whystrip__list li {
  font-family: var(--font-brand); font-size: 12.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--navy);
  padding: 0 22px; position: relative;
}
.whystrip__list li + li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 1px; background: var(--green); rotate: 45deg;
}
@media (max-width: 700px) {
  .whystrip__list li { font-size: 11.5px; padding: 0 14px }
}

/* ---------- sourced pricing table ---------- */
.pricetable {
  max-width: 720px; margin: 44px auto 0; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.pricetable__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 20px 26px; border-bottom: 1px solid var(--line-soft); font-size: 16px;
}
.pricetable__row:last-child { border-bottom: 0 }
.pricetable__row--head {
  background: var(--paper-2); font-family: var(--font-brand); font-size: 10.5px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400);
  padding: 13px 26px;
}
.pricetable__row b { font-family: var(--font-brand); font-size: 20px; font-weight: 700; color: var(--navy) }
.pricetable__row em { font-style: normal; font-size: 13px; color: var(--slate-400); margin-left: 4px }

/* keep nav items on one line */
.nav__link, .nav__phone { white-space: nowrap; }
.nav__menu { gap: 24px; }
@media (max-width: 1180px) { .nav__menu { gap: 18px } .nav__link { font-size: 11.5px } }

/* ---------- photo attachments on the request form ---------- */
.dropzone {
  display: grid; place-items: center; gap: 4px; padding: 26px 18px; cursor: pointer;
  border: 2px dashed var(--line); border-radius: var(--radius); background: var(--paper-2);
  transition: border-color .18s, background .18s; text-align: center;
}
.dropzone:hover { border-color: var(--green); background: var(--green-50); }
.dropzone svg { width: 26px; height: 26px; stroke: var(--green); }
.dropzone__t { font-family: var(--font-brand); font-size: 13px; font-weight: 700; color: var(--navy); }
.dropzone__s { font-size: 12.5px; color: var(--slate-400); }
.thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.thumb { position: relative; margin: 0; width: 84px; height: 84px; border-radius: 10px; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb__x {
  position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border-radius: 50%;
  border: 0; background: rgba(8,18,43,.75); color: #fff; cursor: pointer; font-size: 15px; line-height: 1;
}

/* ---------- hero: wordmark headline ---------- */
.hero__title { max-width: 20ch; }

/* ---------- Green Clean Institute badge ---------- */
/* Aspect-agnostic: the source may be a square seal or a horizontal lockup,
   so the chip sizes to the artwork rather than forcing it into a square. */
.cert-badge {
  margin: 0 0 24px; display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-xs);
}
.cert-badge img {
  width: auto; height: auto; max-width: 190px; max-height: 84px;
  object-fit: contain; display: block;
}
.cert-badge figcaption {
  font-family: var(--font-brand); font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-700);
  line-height: 1.5; max-width: 8ch;
}
.cert-badge[data-fallback] img { display: none; }
.cert-badge[data-fallback]::before {
  content: 'GCI'; width: 76px; height: 76px; flex: none; border-radius: 12px;
  background: var(--green-50); border: 2px solid var(--green); display: grid; place-items: center;
  font-family: var(--font-brand); font-weight: 800; font-size: 22px; color: var(--green-700);
}

.footer__badge {
  margin: 22px 0 0; display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 10px; padding: 9px 13px;
}
.footer__badge img { width: auto; height: auto; max-width: 130px; max-height: 44px; object-fit: contain; display: block; }
.footer__badge figcaption {
  font-family: var(--font-brand); font-size: 9.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-700); max-width: 9ch; line-height: 1.4;
}
.footer__badge[data-fallback] { display: none; }

/* =========================================================
   AUGUST 2026 REVISION
   Logo swap · contact strip · commercial-first services ·
   government band · split exterior/interior · area SEO ·
   memberships · quote modal
   ========================================================= */

/* ---------- brand mark (raster) ---------- */
.lockup__mark { width: 42px; height: 42px; object-fit: contain; }
.nav .lockup__mark { width: 44px; height: 44px; }
.lockup__name { font-size: 21px; }
@media (max-width: 400px) {
  .nav .lockup__mark { width: 38px; height: 38px; }
  .lockup__name { font-size: 18px; letter-spacing: .13em; }
  .lockup__sub { font-size: 7.5px; letter-spacing: .22em; }
}

/* GCI seal in the header */
.nav__gci { width: 44px; height: 44px; object-fit: contain; flex: none; }
/* the brand block must never be squeezed narrower than its contents, or the seal
   overflows its box and lands on top of the first nav link */
.nav__brand { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.nav__brand::before {
  content: ""; width: 1px; height: 30px; background: var(--line);
  order: 1; flex: none;
}
.nav__brand .lockup { order: 0; flex: none; }
.nav__brand .nav__gcilink { order: 2; }


/* ---------- topbar: phone + email can never collide ---------- */
.topbar__in {
  height: auto; min-height: 40px; padding-block: 5px;
  flex-wrap: wrap; row-gap: 2px;
}
.topbar__msg { min-width: 0; }
.topbar__links { display: flex; align-items: center; gap: 0; flex-wrap: wrap; min-width: 0; justify-content: center; }
.topbar__link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 3px 15px; position: relative; min-width: 0;
  max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-size: 13.5px;
}
.topbar__link:last-child { padding-right: 0; }
.topbar__links .topbar__link:first-child { padding-left: 0; }
.topbar__link + .topbar__link::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 14px; background: rgba(255,255,255,.3);
}
.topbar__link svg { width: 14px; height: 14px; flex: none; stroke: var(--green-400); fill: none; stroke-width: 2; }
.topbar__short { display: none; }
@media (max-width: 700px) {
  .topbar__full { display: none; }
  .topbar__short { display: inline; }
  .topbar__link { font-size: 13px; padding-inline: 12px; }
}

/* ---------- SEO copy under each service panel ---------- */
.svc-seo {
  grid-column: 1 / -1; margin-top: 34px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px 44px;
}
@media (max-width: 800px) { .svc-seo { grid-template-columns: 1fr; } }
.svc-seo h4 {
  font-family: var(--font-brand); font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-700);
  margin-bottom: 10px;
}
.svc-seo p { font-size: 15px; line-height: 1.7; color: var(--slate-700); }
.svc-seo p + p { margin-top: 12px; }
.svc-layout { grid-template-areas: none; }

/* ---------- government / institutional band ---------- */
.govt { background: var(--navy); color: #fff; overflow: hidden; }
.govt__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  gap: 0; min-height: 460px;
}
@media (max-width: 900px) { .govt__grid { grid-template-columns: 1fr; } }
.govt__grid > * { min-width: 0; }
.govt__media { position: relative; margin: 0; overflow: hidden; min-width: 0; min-height: 320px; background: var(--navy-700); }
.govt__media img { width: 100%; height: 100%; object-fit: cover; }
.govt__media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 28px 22px;
  background: linear-gradient(to top, rgba(8,18,43,.94) 12%, rgba(8,18,43,0));
  font-family: var(--font-brand); font-size: 12.5px; letter-spacing: .07em;
  text-transform: uppercase; color: #fff; font-weight: 700;
}
.govt__media figcaption span {
  display: block; margin-top: 7px; font-family: var(--font-body);
  font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 400;
  color: rgba(255,255,255,.76);
}
.govt__body { padding: clamp(40px, 5vw, 74px) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.govt__body .sec__title { color: #fff; }
.govt__body .sec__lede { color: rgba(255,255,255,.74); }
.govt__list { margin-top: 30px; display: grid; gap: 13px; }
.govt__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,.82); }
.govt__list svg { width: 18px; height: 18px; flex: none; margin-top: 4px; stroke: var(--green-400); fill: none; stroke-width: 2.4; }
.govt__body .btn { margin-top: 34px; align-self: start; }

/* ---------- split: exterior vs interior ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split__half { position: relative; margin: 0; overflow: hidden; min-height: min(62vh, 528px); background: var(--navy-700); }
@media (max-width: 860px) { .split__half { min-height: 420px; } }
.split__half img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.split__half:hover img { transform: scale(1.045); }
.split__half::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,18,43,.95) 4%, rgba(8,18,43,.72) 34%, rgba(8,18,43,.28) 62%, rgba(8,18,43,.10)),
    linear-gradient(to right, rgba(8,18,43,.35), rgba(8,18,43,0) 55%);
}
.split__cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(28px, 4vw, 52px); color: #fff; }
.split__cap .eyebrow { color: var(--green-400); }
.split__cap h3 {
  margin-top: 12px; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 2.7vw, 34px); line-height: 1.12; max-width: 15ch;
}
.split__cap p { margin-top: 12px; font-size: 15.5px; color: rgba(255,255,255,.8); max-width: 38ch; }
.split__cap .btn { margin-top: 22px; }
.split__intro { text-align: center; padding: clamp(60px, 8vw, 104px) 0 clamp(34px, 4vw, 54px); }

/* ---------- areas we service: SEO cards ---------- */
.areacards {
  margin-top: clamp(38px, 5vw, 62px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) { .areacards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .areacards { grid-template-columns: 1fr; } }
.areacard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.areacard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(14,124,75,.34); }
.areacard h3 {
  font-family: var(--font-brand); font-size: 13px; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: var(--navy);
}
.areacard__rule { height: 2px; width: 40px; background: var(--green); margin: 14px 0 16px; }
.areacard p { font-size: 14.8px; line-height: 1.68; color: var(--slate-700); }
.areacard__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.areacard__tags span {
  font-family: var(--font-brand); font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: var(--green-50); color: var(--green-700); border: 1px solid rgba(14,124,75,.16);
}
.areacard--ask { background: var(--navy); border-color: var(--navy); }
.areacard--ask h3 { color: #fff; }
.areacard--ask p { color: rgba(255,255,255,.74); }
.areacard--ask .btn { margin-top: 22px; align-self: start; }

/* ---------- memberships ---------- */
.memberships { background: var(--paper-2); }
.mem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(38px, 5vw, 56px); }
.mem-grid > * { min-width: 0; }
@media (max-width: 900px) { .mem-grid { grid-template-columns: 1fr; } }
.mem {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 38px 34px 34px;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.mem:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mem--feature { border-color: var(--navy); box-shadow: var(--shadow); }
.mem--feature::before {
  content: "Most popular for property managers";
  position: absolute; top: -13px; left: 34px; right: auto; max-width: calc(100% - 48px);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: var(--font-brand); font-size: 10px; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
  background: var(--navy); color: #fff; padding: 7px 14px; border-radius: 999px;
}
.mem__type {
  font-family: var(--font-brand); font-size: 12px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: var(--slate);
}
.mem__price { margin-top: 16px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.mem__price b { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5vw, 54px); line-height: 1; color: var(--navy); }
.mem__price em { font-style: normal; font-size: 14px; color: var(--slate-400); }
.mem__terms {
  margin-top: 14px; font-size: 14.5px; color: var(--slate-700);
  padding-bottom: 22px; border-bottom: 1px solid var(--line-soft);
}
.mem ul { margin-top: 22px; display: grid; gap: 11px; }
.mem li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--navy); }
.mem li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--green); fill: none; stroke-width: 2.4; }
.mem__foot { margin-top: auto; padding-top: 28px; }
.mem__foot .btn { width: 100%; }

.mem-form {
  margin-top: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 44px);
}
.mem-form h3 { font-family: var(--font-display); font-weight: 400; font-size: 27px; }
.mem-form > p { margin-top: 8px; font-size: 14.8px; color: var(--slate); }
.mem-form .fgrid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .mem-form .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .mem-form .fgrid { grid-template-columns: 1fr; } }
.mem-form__actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.mem-form__actions .btn { flex: none; }
.mem-form__note { font-size: 13px; color: var(--slate-400); max-width: 46ch; }
.mem-success {
  display: none; text-align: center; padding: 12px 0 4px;
}
.mem-success.is-on { display: block; animation: fade .5s ease; }
.mem-success h3 { font-family: var(--font-display); font-weight: 400; font-size: 27px; }
.mem-success p { margin-top: 12px; font-size: 15.5px; color: var(--slate-700); }
.mem-success__ico {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--green-50); display: grid; place-items: center;
}
.mem-success__ico svg { width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 2.6; }

/* ---------- sticky quote button + modal ---------- */
.quotefab {
  position: fixed; right: 22px; bottom: 84px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--green); color: #fff;
  font-family: var(--font-brand); font-weight: 800; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(14,124,75,.36);
  transform: translateY(14px); opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s ease, background .2s ease;
}
.quotefab.is-on { transform: none; opacity: 1; pointer-events: auto; }
.quotefab:hover { background: var(--green-700); }
.quotefab svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2.2; }
@media (max-width: 560px) {
  .quotefab { right: 12px; left: 12px; bottom: 12px; justify-content: center; padding: 15px 18px; }
  /* employee portal sits above the full-width quote bar, never on top of it */
  .emplogin { right: 12px; bottom: 74px; padding: 11px 14px; }
}

.qmodal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: flex-start; justify-content: center;
  padding: clamp(12px, 4vh, 46px) 16px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.qmodal.is-open { display: flex; }
.qmodal__veil { position: fixed; inset: 0; background: rgba(8,18,43,.62); backdrop-filter: blur(3px); animation: fade .3s ease; }
.qmodal__card {
  position: relative; z-index: 1; width: 100%; max-width: 640px;
  background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  padding: clamp(26px, 4vw, 40px); margin: auto;
  animation: qpop .42s cubic-bezier(.16,1,.3,1);
}
@keyframes qpop { from { opacity: 0; transform: translateY(20px) scale(.985); } to { opacity: 1; transform: none; } }
.qmodal__x {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  border: 1px solid var(--line); background: #fff; border-radius: 50%;
  font-size: 22px; line-height: 1; color: var(--slate); cursor: pointer;
}
.qmodal__x:hover { border-color: var(--navy); color: var(--navy); }
.qmodal__head { display: flex; align-items: center; gap: 14px; padding-right: 46px; }
.qmodal__head img { width: 42px; height: 42px; object-fit: contain; flex: none; }
.qmodal__head h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(23px, 3vw, 28px); }
.qmodal__head span { display: block; margin-top: 5px; font-size: 13.5px; color: var(--slate); }
.qmodal .fgrid { margin-top: 24px; }
.qmodal .field label { font-size: 10.5px; }
.qmodal__legal { margin-top: 14px; font-size: 12px; color: var(--slate-400); line-height: 1.55; text-align: center; }
.qmodal__steps {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  font-size: 12.5px; color: var(--slate-400);
}
.qmodal__steps b { color: var(--navy); font-family: var(--font-brand); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
body.qmodal-open { overflow: hidden; }

/* chips inside compact forms */
.chips--sm .chip span { padding: 9px 14px; font-size: 11.5px; }

/* ---------- green cleaning page ---------- */
.gpage-hero { background: var(--navy); color: #fff; padding: clamp(56px, 8vw, 104px) 0 clamp(46px, 6vw, 80px); position: relative; overflow: hidden; }
.gpage-hero::after {
  content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(63,169,107,.22), transparent 66%); pointer-events: none;
}
.gpage-hero__in { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .gpage-hero__in { grid-template-columns: 1fr; } }
.gpage-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 5.4vw, 60px); line-height: 1.06; margin-top: 18px; }
.gpage-hero p { margin-top: 20px; font-size: 17.5px; line-height: 1.66; color: rgba(255,255,255,.76); max-width: 54ch; }
.gpage-seal { justify-self: center; text-align: center; }
.gpage-seal img { width: min(280px, 62vw); height: auto; margin-inline: auto; }
.gpage-seal figcaption {
  margin-top: 16px; font-family: var(--font-brand); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green-400);
}
.gprose { max-width: 780px; }
.gprose h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.14; }
.gprose h3 {
  margin-top: 42px; font-family: var(--font-brand); font-size: 13px; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: var(--navy);
}
.gprose p { margin-top: 16px; font-size: 16.5px; line-height: 1.72; color: var(--slate-700); }
.gprose ul { margin-top: 18px; display: grid; gap: 12px; }
.gprose ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--navy); }
.gprose ul svg { width: 19px; height: 19px; flex: none; margin-top: 4px; stroke: var(--green); fill: none; stroke-width: 2.3; }
.gprose blockquote {
  margin: 34px 0 0; padding: 26px 30px; border-left: 3px solid var(--green);
  background: var(--green-50); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-size: 20px; line-height: 1.5; color: var(--navy);
}
.gcompare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
@media (max-width: 720px) { .gcompare { grid-template-columns: 1fr; } }
.gcompare__col { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; background: #fff; }
.gcompare__col--apex { border-color: rgba(14,124,75,.4); background: var(--green-50); }
.gcompare__col h4 {
  font-family: var(--font-brand); font-size: 11.5px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; color: var(--slate);
}
.gcompare__col--apex h4 { color: var(--green-700); }
.gcompare__col li { display: flex; gap: 10px; font-size: 15px; color: var(--slate-700); align-items: flex-start; }
.gcompare__col ul { display: grid; gap: 11px; }
.gcompare__col li::before { content: "—"; color: var(--slate-300); flex: none; }
.gcompare__col--apex li { color: var(--navy); }
.gcompare__col--apex li::before { content: "✓"; color: var(--green); font-weight: 700; }
.breadcrumbs { font-size: 13px; color: rgba(255,255,255,.6); font-family: var(--font-brand); letter-spacing: .06em; }
.breadcrumbs a { color: var(--green-400); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- footer additions ---------- */
.footer__badge img { max-width: 96px; max-height: 96px; }

/* ---------- fix: visually-hidden radios inside .chip were sizing against the
   viewport (no positioned ancestor) and creating horizontal overflow ---------- */
.chip { position: relative; }
.chip input {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 1px; margin: 0; padding: 0;
  opacity: 0; pointer-events: none;
}

/* the GCI seal in the header is wrapped in a link/span — keep it from collapsing */
.nav__gcilink { flex: none; display: flex; line-height: 0; }
.nav__gcilink:hover { opacity: .82; }
/* Nothing in the header shrinks. Flex items that shrink below their content while
   their children are `white-space: nowrap` overflow their own box and land on the
   neighbouring column — that is exactly how the seal ended up on top of "Services".
   Instead the seal is hidden at the width where the row stops fitting. */
.nav__brand, .nav__menu, .nav__cta { flex: 0 0 auto; }

/* the service-area map is a stretched grid item with an aspect-ratio, so the ratio was
   deriving its WIDTH from the stretched height and blowing past the column */
.area__grid > * { min-width: 0; }
.area__map { max-width: 100%; }

/* LAST WORD on the header seal: it only shows when there is real room beside the menu.
   This block must stay at the end of the file — it is the same specificity as the
   .nav__gcilink rules above, so it has to come after them to win. */
@media (max-width: 1300px) {
  .nav__brand::before { display: none; }
  .nav__gcilink { display: none; }
}


/* very narrow phones (≤340px) — tighten the cards so nothing forces the page wide */
@media (max-width: 360px) {
  .mem { padding: 34px 22px 28px; }
  .mem--feature::before { left: 22px; font-size: 9px; padding: 6px 11px; }
  .areacard { padding: 24px 20px; }
  .split__cap { padding: 24px 20px; }
}


/* ---------- Apex photography framing (Aug 17) ---------- */
.split__half img { object-position: center 55%; }
.svc-panel .svc-figure img { object-position: center 58%; }

/* eyebrows sit over the brightest part of the photo — lift them clear of it */
.split__cap .eyebrow { color: #8FD6AC; text-shadow: 0 1px 10px rgba(8,18,43,.85); }
.split__cap h3, .split__cap p { text-shadow: 0 1px 14px rgba(8,18,43,.5); }

/* the turnover photo's furniture sits left and right of centre — bias the crop so the
   frame lands on the room rather than the French doors */
.split__half:last-child img { object-position: 44% 72%; }

/* ---------- instant quote: the ballpark range ----------
   Sits on the modal's success screen. Deliberately restrained — a big green
   number that looks like a bill would undercut the "this is an estimate"
   message sitting right under it. Must stay ABOVE the final nav media block
   at the end of this file (see the header-seal note). */
.qrange {
  margin: 22px auto 0; max-width: 420px; padding: 22px 24px;
  background: linear-gradient(180deg, #F4FAF6 0%, #EDF6F0 100%);
  border: 1px solid #CFE6D8; border-radius: 16px; text-align: center;
}
.qrange__eyebrow {
  display: block; font-family: var(--font-brand); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; color: #2F7A52;
}
.qrange__figure {
  display: block; margin-top: 8px; font-family: var(--font-brand);
  font-size: clamp(24px, 5.4vw, 32px); line-height: 1.15; color: var(--navy, #0D1B3D);
  overflow-wrap: break-word;
}
.qrange__per {
  display: block; margin-top: 4px; font-size: 13px; color: var(--slate-400, #64748B);
}
.qrange__extra { margin-top: 14px; display: grid; gap: 7px }
.qrange__extra span {
  display: block; font-size: 13px; line-height: 1.5; color: #33465F;
}
.qrange__legal {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid #D8E8DE;
  font-size: 11.5px; line-height: 1.55; color: var(--slate-400, #64748B);
}
@media (max-width: 420px) {
  .qrange { padding: 18px 16px; border-radius: 14px }
}

/* =========================================================
   GREEN LIVING PAGE — mission-led blocks (2026-09-10)
   Added for Jackson's "why we are green cleaners" rewrite.
   All classes are .g*-prefixed; nothing here touches .nav__gcilink,
   so this block is safe at the end of the file.
   ========================================================= */

/* Mission: prose on the left, numbered pillars on the right */
.gmission {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 68px); align-items: start;
}
.gmission > * { min-width: 0; }
@media (max-width: 900px) { .gmission { grid-template-columns: 1fr; } }

.gpillars { display: grid; gap: 2px; }
.gpillar {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  align-items: start; padding: 22px 4px;
  border-top: 1px solid var(--line);
}
.gpillar:last-child { border-bottom: 1px solid var(--line); }
.gpillar__num {
  font-family: var(--font-brand); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; color: var(--green); padding-top: 3px;
}
.gpillar b {
  display: block; font-family: var(--font-brand); font-size: 13.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--navy);
}
.gpillar p { margin-top: 7px; font-size: 15.5px; line-height: 1.6; color: var(--slate-700); }

/* Pull-tagline used under the mission copy */
.gtag {
  margin-top: 22px; font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(15px, 2vw, 17.5px); line-height: 1.45; color: var(--green-700);
}
.gtag--light { color: var(--green-400); }

/* Leading from the front — owner card */
.gowner {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(22px, 4vw, 40px);
  align-items: center; padding: clamp(26px, 4vw, 40px);
  background: var(--green-50); border: 1px solid rgba(14,124,75,.25);
  border-radius: var(--radius-lg);
}
.gowner > * { min-width: 0; }
.gowner img { width: clamp(96px, 16vw, 150px); height: auto; }
.gowner h3 {
  font-family: var(--font-brand); font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-700);
}
.gowner p {
  margin-top: 12px; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(19px, 2.6vw, 25px); line-height: 1.34; color: var(--navy);
}
@media (max-width: 620px) {
  .gowner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* Practice grid — how it shows up on a job */
.gpractice { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.gpractice > * { min-width: 0; }
@media (max-width: 860px) { .gpractice { grid-template-columns: 1fr; } }
.gpractice__card {
  padding: 26px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.gpractice__card svg {
  width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.7;
}
.gpractice__card b {
  display: block; margin-top: 14px; font-family: var(--font-brand);
  font-size: 14.5px; color: var(--navy);
}
.gpractice__card p { margin-top: 8px; font-size: 15px; line-height: 1.62; color: var(--slate-700); }

/* Ask-your-cleaning-company callout */
.gask {
  margin-top: 8px; padding: clamp(28px, 4vw, 44px);
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1fr auto; gap: clamp(22px, 4vw, 40px);
  align-items: center;
}
.gask > * { min-width: 0; }
@media (max-width: 780px) { .gask { grid-template-columns: 1fr; } }
.gask__eyebrow {
  display: block; font-family: var(--font-brand); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green-400);
}
.gask h3 {
  margin-top: 14px; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(21px, 3vw, 30px); line-height: 1.24;
}
.gask p { margin-top: 14px; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.72); }
