/* ============================================================
   Cleaning City 616 — "Bosque & Crema" design system
   ============================================================ */
:root {
  /* Brand palette */
  --forest:   #305B2E;
  --forest-d: #244620;
  --sage:     #7FA86A;
  --sage-l:   #A8C496;
  --sage-wash:#EAF0E2;
  --pine:      #1F5C2E;
  --lime:      #6FAF3E;
  --lime-d:    #5C9A30;
  --star:      #E8B53C;
  --charcoal: #2B2E2A;
  --charcoal-soft: #4A4E47;
  --cream:    #F7F4EC;
  --cream-d:  #EFEADD;
  --white:    #FFFFFF;
  --line:     #E3DECF;

  --r-btn: 10px;
  --r-card: 16px;
  --r-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(43,46,42,.06), 0 2px 8px rgba(43,46,42,.05);
  --shadow-md: 0 8px 30px rgba(43,46,42,.09);
  --shadow-lg: 0 24px 60px rgba(43,46,42,.14);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);

  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--pine);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--forest); }

.skip-link {
  position: absolute; top: -999px; left: 6px; z-index: 9999;
  padding: 8px 16px; border-radius: 4px;
  background: var(--forest); color: var(--cream);
  font-size: .9rem; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 6px; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.container-wide { max-width: 1340px; margin: 0 auto; padding-inline: var(--pad); }

section { padding-block: clamp(56px, 8vw, 112px); }

/* ---------- Typographic scale ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 1rem;
}
.eyebrow.on-dark { color: var(--sage-l); }

h1, .h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3, .h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--charcoal-soft); line-height: 1.55; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .85em 1.5em; border-radius: var(--r-btn);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--lime); color: var(--pine); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--lime-d); color: var(--pine); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-ghost { background: var(--white); color: var(--forest); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--sage); }
.btn-lg { padding: 1.02em 1.9em; font-size: 1.08rem; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,236,.92);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-topbar {
  border-bottom: 1px solid var(--line);
  max-height: 44px; opacity: 1; overflow: hidden;
  transition: max-height .32s cubic-bezier(.4,0,.2,1), opacity .22s ease, border-color .32s ease;
}
.site-header.scrolled .header-topbar {
  max-height: 0; opacity: 0; border-bottom-color: transparent;
}
.header-topbar-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 var(--pad);
  height: 38px; display: flex; align-items: center; justify-content: flex-end;
}
.topbar-link {
  font-size: .85rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap;
  color: var(--charcoal); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4em;
  transition: color .15s ease;
}
.topbar-link:hover { color: var(--lime); }
.header-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 var(--pad);
  height: 86px; display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-logo { height: 58px; width: auto; display: block; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--forest); display: grid; place-items: center;
  color: var(--cream); position: relative;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.16rem; color: var(--forest); }
.brand-tag { font-size: .68rem; letter-spacing: .04em; color: var(--charcoal-soft); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3em;
  font-weight: 500; font-size: .98rem; color: var(--charcoal);
  text-decoration: none; padding: .55em .8em; border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover, .nav-item:hover .nav-link { background: var(--sage-wash); color: var(--forest); }
.nav-link.active { color: var(--forest); font-weight: 600; }
.nav-link .caret { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-item.open .nav-link .caret { transform: rotate(180deg); }
button.nav-link { border: 0; background: none; font-family: inherit; cursor: pointer; }
.nav-link:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
#services, #industries { scroll-margin-top: 120px; }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 264px;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
}
.dropdown.wide { min-width: 300px; }
.nav-item:hover .dropdown, .nav-item.open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 11px;
  padding: .62em .7em; border-radius: 9px; text-decoration: none;
  color: var(--charcoal); font-size: .94rem; font-weight: 500;
}
.dropdown a:hover { background: var(--sage-wash); color: var(--forest); }
.dropdown a .ico { width: 18px; height: 18px; color: var(--sage); flex: none; }
.dropdown a:hover .ico { color: var(--forest); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--white); border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center; flex: none;
}
.hamburger svg { width: 22px; height: 22px; color: var(--forest); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(43,46,42,.4);
}
.mobile-nav.open { display: block; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--cream); padding: 22px; overflow-y: auto;
  box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .26s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-close { width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white); border-radius: 10px; cursor: pointer; display: grid; place-items: center; }
.mobile-close svg { width: 20px; height: 20px; }
.m-link { display: block; padding: .8em .4em; font-size: 1.08rem; font-weight: 500; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--line); }
.m-group-label { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); font-weight: 600; margin: 18px 0 4px; }
.m-sub { display: flex; align-items: center; gap: .6em; padding: .55em .4em .55em .8em; color: var(--charcoal-soft); text-decoration: none; font-size: .98rem; }
.m-sub:hover { color: var(--forest); }
.m-sub-ico { color: var(--sage); flex: none; transition: color .15s ease; }
.m-sub:hover .m-sub-ico { color: var(--forest); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-copy { padding-block: clamp(40px, 5vw, 72px); }
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 1.8em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-media { position: relative; }
.hero-media image-slot, .hero-media .img-ph { width: 100%; aspect-ratio: 16/11; }

/* full-bleed background hero */
.hero-full {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 78vh, 780px);
  background-image: url('hero-lobby.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-full .hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(247,244,236,.5) 0%,
      rgba(247,244,236,.28) 38%,
      rgba(247,244,236,.3) 62%,
      rgba(247,244,236,.46) 100%);
}
.hero-full .hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 64% 58% at 50% 50%, rgba(247,244,236,.66) 0%, rgba(247,244,236,.26) 52%, rgba(247,244,236,0) 100%);
}
.hero-full .container { position: relative; z-index: 1; width: 100%; }
.hero-full-copy { max-width: 760px; margin-inline: auto; text-align: center; padding-block: clamp(56px, 9vw, 120px); }
.hero-full-copy h1 { margin-bottom: .35em; }
.hero-full-copy .lead { margin-bottom: 1.8em; color: var(--charcoal); margin-inline: auto; }
.hero-full-copy .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }

/* page hero (interior) */
.page-hero { background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero .hero-grid { grid-template-columns: 1fr 1fr; }
.page-hero-copy { padding-block: clamp(36px, 5vw, 64px); }

/* ============================================================
   IMAGE PLACEHOLDER (striped) — used as fallback caption styling
   ============================================================ */
image-slot {
  --slot-bg: var(--sage-wash);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-md);
  background-image:
    repeating-linear-gradient(135deg, var(--sage-wash) 0 14px, #E2EAD6 14px 28px);
  border: 1px solid var(--line);
}
.img-ph {
  border-radius: var(--r-card); box-shadow: var(--shadow-md);
  background-image: repeating-linear-gradient(135deg, var(--sage-wash) 0 14px, #E2EAD6 14px 28px);
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--forest);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .8rem;
  text-align: center; padding: 1rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: #fff; border-top: 1px solid #E5E5E5; border-bottom: 1px solid #E5E5E5; padding-block: 0; }
.marquee {
  overflow: hidden; padding-block: 38px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee-track {
  display: flex; width: max-content; align-items: center;
  animation: cc-marquee 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-logo {
  flex: none; height: 62px; width: auto; display: block;
  margin-right: clamp(48px, 6vw, 84px);
}
@keyframes cc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   GENERIC SECTION HELPERS
   ============================================================ */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-creamd { background: var(--cream-d); }
.bg-sage { background: var(--sage-wash); }
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--white); }
.bg-forest .lead { color: var(--sage-l); }

.section-head { max-width: 64ch; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.media-left > .split-media { order: -1; }
.split-media image-slot, .split-media .img-ph { width: 100%; aspect-ratio: 4/3; }
.split-photo {
  width: 100%; height: 100%; min-height: 380px; object-fit: cover;
  border-radius: var(--r-card); box-shadow: var(--shadow-md);
}

/* ============================================================
   SERVICE / INDUSTRY GRID CARDS
   ============================================================ */
.card-grid { display: grid; gap: 18px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 26px 24px;
  text-decoration: none; color: var(--charcoal);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.svc-ico {
  width: 50px; height: 50px; border-radius: 13px; flex: none;
  background: var(--sage-wash); color: var(--forest);
  display: grid; place-items: center;
}
.svc-ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.18rem; margin: 0; }
.svc-card .svc-more { margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--forest); display: inline-flex; align-items: center; gap: .4em; }

/* icon-first clickable service tiles (home preview) */
.svc-tile {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 40px 24px;
  text-decoration: none; color: var(--charcoal);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.svc-tile:focus-visible { outline: 2.5px solid var(--forest); outline-offset: 3px; }
.svc-tile-ico {
  width: 96px; height: 96px; border-radius: 50%; flex: none;
  background: var(--sage-wash); color: var(--forest);
  display: grid; place-items: center;
  transition: background .2s ease;
}
.svc-tile:hover .svc-tile-ico { background: var(--sage-l); }
.svc-tile-ico svg { width: 54px; height: 54px; stroke-width: 1.5; }
.svc-tile h3 { font-size: 1.14rem; margin: 0; }

/* industry image cards */
.ind-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
/* Row 1: three cards across (span 2 each) */
.ind-grid > .ind-card:nth-child(1),
.ind-grid > .ind-card:nth-child(2),
.ind-grid > .ind-card:nth-child(3) { grid-column: span 2; }
/* Row 2: two cards, centered (span 2, offset by 1) */
.ind-grid > .ind-card:nth-child(4) { grid-column: 2 / span 2; }
.ind-grid > .ind-card:nth-child(5) { grid-column: 4 / span 2; }

.ind-card {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  text-decoration: none; color: var(--white); box-shadow: var(--shadow-md);
  display: block; transition: transform .25s ease, box-shadow .25s ease;
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ind-card:focus-visible { outline: 3px solid var(--forest); outline-offset: 3px; }
.ind-card > img {
  width: 100%; height: 320px; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.2,.6,.2,1);
}
.ind-card:hover > img { transform: scale(1.06); }
.ind-card .ind-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; pointer-events: none;
  background: linear-gradient(to top, rgba(247,244,236,.92) 0%, rgba(247,244,236,.58) 24%, rgba(247,244,236,.12) 52%, transparent 76%);
  transition: background .25s ease;
}
.ind-card:hover .ind-overlay {
  background: linear-gradient(to top, rgba(247,244,236,.96) 0%, rgba(247,244,236,.7) 28%, rgba(247,244,236,.22) 58%, transparent 80%);
}
.ind-card h3 { color: var(--forest); font-size: 1.5rem; margin: 0; text-shadow: 0 1px 8px rgba(247,244,236,.7); }

/* ============================================================
   STEPS (How it works)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 34px 30px; position: relative; overflow: hidden;
  background-size: 200% 200%; background-position: 0% 0%;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .25s ease, filter .25s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .step { animation: step-drift 22s ease-in-out infinite alternate; }
  .step:nth-child(2) { animation-duration: 26s; animation-delay: -6s; }
  .step:nth-child(3) { animation-duration: 30s; animation-delay: -12s; }
}
@keyframes step-drift {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); filter: brightness(1.03); }

/* Progressive green treatment: light -> medium -> deep forest */
.step:nth-child(1) { background-image: linear-gradient(145deg, #FFFFFF 0%, #EEF3E6 55%, #DDE9CF 100%); border-color: #E0E8D2; }
.step:nth-child(2) { background-image: linear-gradient(145deg, #E9F0E0 0%, #CBDDB4 55%, #A9C593 100%); border-color: #B4CEA0; }
.step:nth-child(3) { background-image: linear-gradient(145deg, #4C8A45 0%, #3A7438 52%, #2C6330 100%); border-color: transparent; box-shadow: var(--shadow-md); }

.step-num {
  font-family: var(--serif); font-size: 1.05rem; color: var(--forest);
  display: inline-flex; align-items: center; gap: .65em; margin-bottom: 16px; font-weight: 700;
}
.step-num::before {
  content: ''; width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 1.15rem; font-weight: 700;
  font-family: var(--serif); box-shadow: 0 4px 12px rgba(20,40,18,.18);
}
.step:nth-child(1) .step-num::before { content: '1'; background: var(--white); color: var(--forest); }
.step:nth-child(2) .step-num::before { content: '2'; background: var(--forest); color: var(--white); }
.step:nth-child(3) .step-num::before { content: '3'; background: var(--lime); color: var(--pine); }
.step h3 { font-size: 1.28rem; }
.step ul { margin: 16px 0 0; padding: 0; list-style: none; }
.step ul li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: .96rem; color: var(--charcoal-soft); }
.step ul li::before {
  content: ''; position: absolute; left: 0; top: .5em; width: 14px; height: 14px;
  background: var(--forest); border-radius: 4px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5'/></svg>") center/contain no-repeat;
}
/* Deep card 3: light text for contrast */
.step:nth-child(3) .step-num { color: #EAF3E0; }
.step:nth-child(3) h3 { color: var(--white); }
.step:nth-child(3) p { color: rgba(247,244,236,.95); }
.step:nth-child(3) ul li { color: rgba(247,244,236,.9); }
.step:nth-child(3) ul li::before { background: var(--sage-l); }

/* ============================================================
   CHECK LISTS (what's included / what we clean)
   ============================================================ */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.check-list.two-col { grid-template-columns: 1fr 1fr; gap: 13px 32px; }
.check-list li { position: relative; padding-left: 34px; line-height: 1.5; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  border-radius: 7px; background: var(--sage-wash);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23305B2E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
}

/* ============================================================
   NON-TOXIC DIFFERENCE band
   ============================================================ */
.diff-band {
  background: var(--forest); color: var(--cream);
  border-radius: var(--r-lg); padding: clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.diff-band h2 { color: var(--white); }
.diff-band p { color: var(--sage-l); margin-bottom: 0; }
.diff-seals { display: flex; gap: 14px; flex-wrap: wrap; }
.seal {
  display: flex; align-items: center; gap: 11px; background: rgba(247,244,236,.08);
  border: 1px solid rgba(247,244,236,.18); border-radius: 12px; padding: 14px 18px;
}
.seal svg { width: 30px; height: 30px; color: var(--sage-l); flex: none; }
.seal span { font-size: .92rem; font-weight: 500; color: var(--cream); line-height: 1.25; }
.seal strong { display: block; font-weight: 700; }

/* ============================================================
   INSURED & BONDED reusable block
   ============================================================ */
.insured {
  background: var(--cream-d); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 52px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 3vw, 44px); align-items: center;
}
.insured-shield {
  width: 96px; height: 96px; border-radius: 22px; flex: none;
  background: var(--forest); color: var(--sage-l); display: grid; place-items: center;
}
.insured-shield svg { width: 50px; height: 50px; }
.insured h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.insured-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.badge {
  display: inline-flex; align-items: center; gap: .5em; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em;
  font-size: .9rem; font-weight: 600; color: var(--forest);
}
.badge svg { width: 16px; height: 16px; color: var(--sage); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* Animated testimonial columns */
.review-wall {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  height: 620px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
}
.review-col { position: relative; overflow: hidden; }
.review-col-track {
  display: flex; flex-direction: column; gap: 22px;
  animation-name: review-scroll; animation-timing-function: linear; animation-iteration-count: infinite;
  will-change: transform;
}
.review-wall:hover .review-col-track { animation-play-state: paused; }
@keyframes review-scroll { from { transform: translateY(0); } to { transform: translateY(calc(-50% - 11px)); } }
@media (prefers-reduced-motion: reduce) { .review-col-track { animation: none; } }

.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px; display: flex; flex-direction: column; gap: 14px; margin: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review-col .review { flex: none; }
.review-col .review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.review-stars { display: flex; gap: 3px; color: var(--star); font-size: 1.15rem; letter-spacing: 2px; }
.review-stars svg { width: 19px; height: 19px; color: var(--star); }
.review-body { font-size: 1rem; line-height: 1.58; color: var(--charcoal); margin: 0; font-style: normal; }
.review-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-id { display: flex; flex-direction: column; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: var(--white); display: grid; place-items: center; font-weight: 600; font-family: var(--serif); flex: none; }
.review-name { font-weight: 600; font-size: .98rem; color: var(--forest); }
.review-meta { font-size: .82rem; color: var(--charcoal-soft); display: flex; align-items: center; gap: 6px; }
.g-logo { width: 15px; height: 15px; flex: none; }
.review-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   CTA band
   ============================================================ */
/* Integrated Getting Started CTA (home) */
.gs-cta {
  text-align: center;
  max-width: 60ch;
  margin: clamp(56px, 7vw, 96px) auto 0;
}
.gs-cta h2 { color: var(--forest); margin-bottom: .4em; }
.gs-cta p { max-width: 52ch; margin-inline: auto; margin-bottom: 1.8em; }

.cta-band { background: var(--sage-wash); }
.cta-card {
  background: var(--forest); color: var(--cream); border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 80px); text-align: center;
  position: relative; overflow: hidden;
}
.cta-card h2 { color: var(--white); margin-bottom: .4em; }
.cta-card p { color: var(--sage-l); max-width: 52ch; margin-inline: auto; margin-bottom: 1.8em; }
.cta-card .btn-secondary { border-color: var(--sage-l); color: var(--cream); }
.cta-card .btn-secondary:hover { background: var(--cream); color: var(--forest); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.field label .req { color: var(--forest); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--charcoal);
  padding: .75em .9em; border: 1.5px solid var(--line); border-radius: var(--r-btn);
  background: var(--cream); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(127,168,106,.22); background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { font-size: .82rem; color: var(--charcoal-soft); }
.field.invalid input, .field.invalid select { border-color: #C0492F; }

.consent {
  grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
}
.consent input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--forest); }
.consent label { font-size: .82rem; color: var(--charcoal-soft); line-height: 1.5; }
.form-success {
  display: none; background: var(--sage-wash); border: 1px solid var(--sage);
  border-radius: var(--r-card); padding: 28px; text-align: center; color: var(--forest);
}
.form-success.show { display: block; }
.form-success svg { width: 44px; height: 44px; color: var(--forest); margin: 0 auto 10px; }

/* contact aside */
.contact-aside { display: flex; flex-direction: column; gap: 4px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row svg { width: 24px; height: 24px; color: var(--sage); flex: none; margin-top: 2px; }
.contact-row .k { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 600; }
.contact-row .v { font-size: 1.12rem; color: var(--forest); font-weight: 600; text-decoration: none; }
.contact-row a.v:hover { color: var(--forest); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 1.16rem; color: var(--forest);
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-q .pm { width: 26px; height: 26px; flex: none; position: relative; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ''; position: absolute; background: var(--forest); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-q .pm::before { width: 14px; height: 2.5px; }
.faq-q .pm::after { width: 2.5px; height: 14px; transition: transform .22s ease; }
.faq-item.open .faq-q .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--charcoal-soft); }

/* ============================================================
   PRODUCT CATALOG (Janitorial Supplies)
   ============================================================ */
.cat-group { margin-bottom: 56px; }
.cat-label { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.cat-label h3 { font-size: 1.6rem; margin: 0; }
.cat-label .rule { flex: 1; height: 1px; background: var(--line); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column;
}
.product image-slot, .product .img-ph { width: 100%; aspect-ratio: 4/3; border-radius: 0; box-shadow: none; }
.product-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product h4 { font-family: var(--serif); font-size: 1.16rem; color: var(--forest); margin: 0; }
.product p { font-size: .94rem; color: var(--charcoal-soft); margin: 0; }
.cert-seal {
  display: inline-flex; align-items: center; gap: .45em; margin-top: auto;
  background: var(--sage-wash); color: var(--forest); border-radius: 999px;
  padding: .4em .85em; font-size: .8rem; font-weight: 600; align-self: flex-start;
}
.cert-seal svg { width: 14px; height: 14px; }

/* ============================================================
   ABOUT page values
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px; display: flex; gap: 16px; align-items: flex-start;
}
.value .v-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-wash); color: var(--forest); display: grid; place-items: center; flex: none; }
.value .v-ico svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.18rem; margin: 0 0 5px; }
.value p { margin: 0; font-size: .96rem; color: var(--charcoal-soft); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv-card { border-radius: var(--r-lg); padding: 40px; }
.mv-card.mission { background: var(--forest); color: var(--cream); }
.mv-card.mission h3 { color: var(--white); }
.mv-card.mission p { color: var(--sage-l); margin: 0; }
.mv-card.vision { background: var(--lime); color: var(--pine); }
.mv-card.vision h3 { color: var(--pine); }
.mv-card.vision p { color: var(--pine); margin: 0; }
.mv-card .mv-k { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; opacity: .85; }

.creds { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.creds li { display: flex; gap: 12px; align-items: center; font-size: 1.05rem; font-weight: 500; }
.creds li svg { width: 24px; height: 24px; color: var(--sage); flex: none; }

/* ============================================================
   DOC pages (privacy)
   ============================================================ */
.doc { max-width: 820px; margin: 0 auto; }
.doc h2 { font-size: 1.5rem; margin-top: 2.2em; }
.doc h3 { font-size: 1.15rem; margin-top: 1.6em; }
.doc ul { padding-left: 1.2em; }
.doc li { margin-bottom: .5em; }
.note-box { background: var(--sage-wash); border: 1px solid var(--forest); border-radius: 12px; padding: 18px 22px; font-size: .94rem; color: var(--charcoal); }
.note-box strong { color: var(--pine); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-d); color: #CFD2CB; padding-block: 64px 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tag { color: var(--sage-l); font-style: italic; }
.footer-logo {
  display: inline-block;
}
.footer-logo img { width: 300px; max-width: 100%; height: auto; display: block; }
.footer-brand p { margin-top: 22px; font-size: .94rem; max-width: 32ch; }
.footer-col h4 { color: var(--cream); font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; color: #CFD2CB; text-decoration: none; padding: 6px 0; font-size: .96rem; }
.footer-col a:hover { color: var(--sage-l); }
.footer-contact div { margin-bottom: 12px; }
.footer-contact .k { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-l); }
.footer-contact a, .footer-contact span { color: var(--cream); text-decoration: none; font-size: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #9DA199; padding-top: 28px; }
.footer-bottom a { color: #9DA199; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; }
.footer-social a:hover { background: var(--forest); }
.footer-social svg { width: 19px; height: 19px; color: var(--cream); }


/* ============================================================
   REVEAL animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav, .header-cta .btn-secondary { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 70px; }
  .brand-logo { height: 44px; }
  .footer-logo img { width: 240px; }
  .hero-grid, .page-hero .hero-grid, .split, .diff-band, .insured { grid-template-columns: 1fr; }
  .hero-full { min-height: 0; }
  .hero-full .hero-overlay {
    background: linear-gradient(175deg, rgba(247,244,236,.58) 0%, rgba(247,244,236,.36) 38%, rgba(247,244,236,.44) 72%, rgba(247,244,236,.65) 100%);
  }
  .hero-full .hero-overlay::after {
    background: radial-gradient(ellipse 64% 58% at 50% 50%, rgba(247,244,236,.32) 0%, rgba(247,244,236,.10) 52%, rgba(247,244,236,0) 100%);
  }
  .hero-full-copy { max-width: 100%; padding-block: clamp(40px, 9vw, 72px); }
  .hero-media { order: -1; }
  .insured { text-align: left; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  /* Industries: 2 per row on tablet */
  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .ind-grid > .ind-card:nth-child(1),
  .ind-grid > .ind-card:nth-child(2),
  .ind-grid > .ind-card:nth-child(3),
  .ind-grid > .ind-card:nth-child(4),
  .ind-grid > .ind-card:nth-child(5) { grid-column: auto; }
  .ind-card > img { height: 260px; }
  .marquee { padding-block: 28px; }
  .mq-logo { height: 46px; margin-right: clamp(34px, 9vw, 56px); }
  .steps, .reviews, .product-grid, .values, .creds, .mv-grid, .footer-top { grid-template-columns: 1fr; }
  .review-wall { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr; }
  .review-col { height: 620px; }
  .review-col:nth-child(3) { display: none; }
  .footer-top { gap: 32px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cols-4, .cols-3, .cols-2, .check-list.two-col, .form-grid { grid-template-columns: 1fr; }
  .insured { grid-template-columns: 1fr; }
  .diff-seals { width: 100%; }
  /* Industries: stacked on mobile */
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card > img { height: 240px; }
  .review-wall { grid-template-columns: 1fr; height: 560px; grid-template-rows: 1fr; }
  .review-col { height: 560px; }
  .review-col:nth-child(2), .review-col:nth-child(3) { display: none; }
}
