:root {
:  --red: #C8412A;
:  --red-light: #E8503A;
:  --red-pale: #FDF0EE;
:  --navy: #0E1F3D;
:  --charcoal: #1C1C1C;
:  --warm-white: #FAF8F5;
:  --off-white: #F2EFE9;
:  --mid-gray: #8A8880;
:  --border: rgba(0,0,0,0.09);
:  --font-display: 'Playfair Display', Georgia, serif;
:  --font-body: 'DM Sans', sans-serif;
:}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
}
.icon svg { width: 100%; height: 100%; display: block; }

.footer-credit {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-credit:hover { color: #fff; }

/* NAV (extracted from ace-cleaning-website.html) */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.5px;
}
.nav-logo-text { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--charcoal); line-height: 1.2; }
.nav-logo-sub { font-size: 10px; font-weight: 400; color: var(--mid-gray); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--charcoal); text-decoration: none; letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  font-size: 13px; font-weight: 600; padding: 9px 22px;
  background: var(--red); color: #fff; border-radius: 5px;
  text-decoration: none; letter-spacing: 0.02em; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-light); }
.nav-active { color: var(--red) !important; font-weight: 600; }

/* Mobile nav (implemented using existing tokens/sizes) */
.nav-hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-hamburger-lines {
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(28,28,28,0.85);
  border-radius: 2px;
}
.nav-mobile {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-mobile-inner {
  padding: 14px 5% 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-mobile a {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta { display: inline-flex; width: max-content; margin-top: 4px; border-bottom: none; padding: 9px 22px; }
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

main { padding-top: 68px; }

/* SHARED BUTTONS */
.btn-red {
  font-size: 14px; font-weight: 600; padding: 13px 30px;
  background: var(--red); color: #fff; border-radius: 5px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-red:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-outline {
  font-size: 14px; font-weight: 500; padding: 13px 30px;
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 5px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before,
.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
}
.section-body-tight { max-width: 440px; }
.arrow-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--red);
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.01em;
}
.arrow-link span { transition: transform 0.2s ease; }
.arrow-link:hover span { transform: translateX(4px); }

/* PAGE HERO */
.page-hero {
  padding: 64px 5% 62px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 920px; margin: 0 auto; }
.page-hero-dark {
  background: var(--charcoal);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero-dark .page-hero-title { color: #fff; }
.page-hero-dark .page-hero-eyebrow { color: #e8a090; }
.page-hero-light { background: #fff; }
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 720px;
  color: rgba(28,28,28,0.68);
}
.page-hero-dark .page-hero-sub { color: rgba(255,255,255,0.62); }

/* SESSION 2 — HERO */
.hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  position: relative;
  background: linear-gradient(160deg, #1a0a06 0%, #2d1208 40%, #0E1F3D 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 75% 40%, rgba(40,20,10,0.3) 0%, transparent 70%);
  opacity: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,12,10,0.88) 45%, rgba(14,12,10,0.3) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  height: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 40px;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-h1 em { color: var(--red-light); font-style: italic; }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 40px;
}
.hero-image {
  width: 100%;
  height: calc(100% - 80px);
  margin-top: 80px;
  border-radius: 0;
  background:
    linear-gradient(155deg, #2d1208, #0E1F3D),
    url("../images/hero-photo.jpg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-badge {
  position: absolute;
  top: 104px;
  right: 6%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.hero-badge-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.55);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* SESSION 2 — MARQUEE */
.marquee-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  padding: 18px 5% 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.marquee-track-wrap {
  padding: 18px 0 22px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  padding: 10px 36px;
  border-right: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #bbb;
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--charcoal); }

/* SESSION 2 — STATS BAR */
.stats-section {
  background: var(--red);
  padding: 48px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-plus { color: rgba(255,255,255,0.65); font-size: 36px; }
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* SESSION 4 — SERVICES SPLITS */
.service-splits {
  padding: 72px 5% 84px;
  background: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.split:last-child { border-bottom: none; }
.split-image {
  border-radius: 10px;
  min-height: 320px;
  background: linear-gradient(145deg, #e8e0d4, #d0c8bc);
  border: 1px solid var(--border);
}
.split-text h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.split-text p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
  margin-bottom: 14px;
}
.split-text ul {
  padding-left: 18px;
  color: rgba(28,28,28,0.72);
  line-height: 1.8;
  font-size: 13px;
}
.split-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--red-pale);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.split-icon svg { width: 24px; height: 24px; display: block; }
.section-reverse .split-image { order: 2; }
.section-reverse .split-text { order: 1; }

.img-janitorial { background: linear-gradient(135deg, #e8e2d8, #d4ccc4), url("../images/service-janitorial.jpg"); background-size: cover; background-position: center; }
.img-grounds { background: linear-gradient(135deg, #fef0ee, #e8d0c8), url("../images/service-grounds.jpg"); background-size: cover; background-position: center; }
.img-waste { background: linear-gradient(135deg, #eef0fa, #d4dce8), url("../images/service-waste.jpg"); background-size: cover; background-position: center; }
.img-fumigation { background: linear-gradient(135deg, #e8e2d8, #d4ccc4), url("../images/service-fumigation.jpg"); background-size: cover; background-position: center; }
.img-laundry { background: linear-gradient(135deg, #fef0ee, #e8d0c8), url("../images/service-laundry.jpg"); background-size: cover; background-position: center; }
.img-labour { background: linear-gradient(135deg, #eef0fa, #d4dce8), url("../images/service-labour.jpg"); background-size: cover; background-position: center; }

/* CTA band */
.cta-band {
  background: var(--red);
  padding: 54px 5%;
}
.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ABOUT — MISSION/VISION */
.mv-section {
  padding: 72px 5%;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mv-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mv-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
}

/* BLOG */
.blog-list { padding: 72px 5% 86px; background: var(--off-white); }
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding: 16px 16px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--charcoal);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.blog-thumb {
  position: relative;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e8e2d8, #d4ccc4);
}
.blog-thumb-1 { background: linear-gradient(135deg, #e8e2d8, #d4ccc4); }
.blog-thumb-2 { background: linear-gradient(135deg, #fef0ee, #e8d0c8); }
.blog-thumb-3 { background: linear-gradient(135deg, #eef0fa, #d4dce8); }
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(28,28,28,0.55);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(28,28,28,0.7);
}

/* BLOG ARTICLE */
.article-shell { padding: 64px 5% 86px; background: #fff; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.back-link-bottom { margin-top: 18px; }
.article-hero {
  height: 300px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e8e2d8, #d4ccc4);
  margin: 18px 0 22px;
}
.article-head { max-width: 880px; margin: 0 auto 22px; }
.article-tag-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.article-tag {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-date { font-size: 12px; color: rgba(28,28,28,0.55); font-weight: 600; }
.article-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.article-author { font-size: 13px; color: rgba(28,28,28,0.6); font-weight: 600; }
.prose { max-width: 880px; margin: 0 auto; }
.prose p { font-size: 15px; line-height: 1.9; color: rgba(28,28,28,0.78); margin-bottom: 14px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 22px 0 10px;
  letter-spacing: -0.01em;
}
.related { max-width: 1100px; margin: 44px auto 0; }
.related-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* CONTACT */
.contact-shell { padding: 72px 5% 86px; background: var(--off-white); }
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: rgba(28,28,28,0.7); }
.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  font-size: 13px;
}
.form-grid textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.form-success { color: var(--red); font-weight: 700; margin-top: 12px; font-size: 13px; }
.form-error { color: #c00; font-weight: 600; margin-top: 12px; font-size: 13px; }
.contact-side { display: grid; gap: 20px; }
.contact-detail { margin-top: 10px; font-size: 13px; color: rgba(28,28,28,0.72); line-height: 1.7; }
.contact-label { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(28,28,28,0.5); margin-bottom: 4px; }
.contact-detail a { color: var(--red); text-decoration: none; font-weight: 700; }
.contact-detail a:hover { color: var(--red-light); }
.sep { padding: 0 6px; color: rgba(28,28,28,0.4); }
.map-card { padding: 0; overflow: hidden; }
.map-placeholder {
  height: 300px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid-gray);
}

/* SESSION 3 — VIDEO HERO BAND */
.video-hero-band {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(155deg, #2d1208, #0E1F3D);
}
.vhb-video-wrap {
  position: absolute;
  inset: 0;
}
.vhb-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vhb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,6,0.82) 45%, rgba(10,8,6,0.35) 100%);
}
.vhb-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}
.vhb-content .eyebrow { color: var(--red-light); }
.vhb-content .eyebrow::before { background: var(--red-light); }
.vhb-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}

/* SESSION 3 — ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--warm-white);
}
.about-image {
  position: relative;
  background:
    linear-gradient(145deg, #e8e0d4, #d0c8bc),
    url("../images/about-photo.jpg");
  background-size: cover;
  background-position: center;
}
.about-image::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}
.about-copy {
  padding: 64px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checklist {
  list-style: none;
  margin-top: 22px;
  border-top: 1px solid var(--border);
}
.checklist li {
  position: relative;
  padding: 14px 0 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: rgba(28,28,28,0.75);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--red);
}

/* SESSION 3 — SERVICES GRID */
.services-section {
  background: var(--off-white);
  padding: 88px 5%;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 0.25s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.svc-card:hover::before { width: 4px; }
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}
.svc-icon svg { width: 26px; height: 26px; display: block; }
.svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(28,28,28,0.7);
}

/* SESSION 3 — WHY ACE */
.why-ace {
  background: #fff;
  padding: 76px 5%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}
.why-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: rgba(200,65,42,0.15);
  margin-bottom: 12px;
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: rgba(28,28,28,0.7); line-height: 1.7; }

/* SESSION 3 — TEAM */
.team-section {
  background: var(--off-white);
  padding: 88px 5%;
}
.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.08); }
.team-photo {
  height: 190px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
}
.team-photo-1 { background: linear-gradient(145deg, var(--off-white), #d8d0c4); }
.team-photo-2 { background: linear-gradient(145deg, #e8d8f0, #d4c0e0); }
.team-photo-3 { background: linear-gradient(145deg, #daecd6, #b8d4c0); }
.team-initials {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.team-initials-purple { background: #7B52A8; }
.team-icon {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,28,28,0.7);
}
.team-icon svg { width: 26px; height: 26px; display: block; }
.team-info { padding: 22px 22px 26px; }
.team-name { font-weight: 700; margin-bottom: 6px; }
.team-role { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.team-info p { font-size: 13px; line-height: 1.7; color: rgba(28,28,28,0.72); }

/* SESSION 3 — HOUSEHELPERS TEASER */
.hh-teaser {
  background: var(--navy);
  padding: 80px 5%;
}
.hh-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hh-pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(200,65,42,0.15);
  border: 1px solid rgba(200,65,42,0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.hh-inner h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hh-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 22px;
  max-width: 640px;
}
.hh-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hh-tags span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.hh-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hh-form input[type="email"] {
  width: min(420px, 100%);
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
.hh-form input::placeholder { color: rgba(255,255,255,0.55); }
.hh-form button {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.hh-form button:hover { background: var(--red-light); }
.form-note {
  margin-top: 12px;
  min-height: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* SESSION 3 — VIDEO GALLERY */
.video-gallery {
  background: var(--charcoal);
  padding: 88px 5%;
}
.gallery-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8a090;
  margin-bottom: 10px;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.video-thumbs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.video-tile {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(155deg, #24110b, #0E1F3D);
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.video-feature { aspect-ratio: 16/9; }
.video-thumb { min-height: 120px; }
.video-tile-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #24110b, #0E1F3D);
}
.video-bg-1 { background: linear-gradient(155deg, #2b1a14, #151515); }
.video-bg-2 { background: linear-gradient(155deg, #151515, #1b2b36); }
.video-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.05) 100%);
}
.play-btn {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.play-btn svg { width: 22px; height: 22px; }
.play-btn-sm { width: 44px; height: 44px; left: 14px; top: 14px; }
.video-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px 5%;
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  width: min(980px, 100%);
  position: relative;
}
.lightbox video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #000;
}
.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(17,17,17,0.7);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* FOOTER (extracted from ace-cleaning-website.html) */
footer { background: #111; padding: 60px 5% 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-mark {
  width: 38px; height: 38px; background: var(--red); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact-item span,
.footer-contact-item a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  text-decoration: none;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.85); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-col a.red-link { color: rgba(200,65,42,0.7); }
.footer-col a.red-link:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
  .hero { grid-template-columns: 1fr; min-height: 640px; }
  .hero-inner { grid-template-columns: 1fr; padding: 0 5%; }
  .hero-left { padding-top: 96px; padding-bottom: 0; }
  .hero-right { padding: 0; }
  .hero-image {
    height: 300px;
    margin-top: 14px;
    clip-path: none;
  }
  .hero-badge { top: auto; bottom: 22px; right: 5%; }
  .stats-section { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .video-hero-band { height: 280px; }
  .vhb-overlay { background: linear-gradient(to right, rgba(10,8,6,0.9) 45%, rgba(10,8,6,0.55) 100%); }
  .vhb-content h2 { font-size: 34px; }

  .about-split { grid-template-columns: 1fr; }
  .about-image { height: 300px; }
  .about-image::after { right: auto; left: 0; top: auto; bottom: 0; width: 100%; height: 3px; }
  .about-copy { padding: 44px 6%; }
  .section-title { font-size: 32px; }

  .section-head { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .video-thumbs { grid-template-rows: auto; grid-template-columns: 1fr; }

  .page-hero-title { font-size: 38px; }
  .page-hero-sub { font-size: 15px; }
  .split { grid-template-columns: 1fr; }
  .section-reverse .split-image { order: 1; }
  .section-reverse .split-text { order: 2; }
  .split-image { min-height: 240px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .mv-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-title { font-size: 34px; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-section { grid-template-columns: 1fr; }
  .stat-item { border-right: none; padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 26px 22px; }
  .blog-grid { grid-template-columns: 1fr; }
}
