: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;
}

.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; }

/* 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; }

/* 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);
}

/* 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; }
}

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