/* ================================================================
   HOME PAGE — Clean editorial template
   Apex palette (black, red, bone) applied through a light,
   card-driven layout with rounded pill buttons and soft surfaces.
   Scoped to `body.home` so other pages keep the brutalist base.
   ================================================================ */

body.home {
  background: var(--bone);
  color: var(--black);
  font-family: var(--f-body);
  --paper: #f5f3ee;
  --paper-2: #ffffff;
  --ink: #0c0c0c;
  --ink-soft: rgba(12,12,12,0.62);
  --ink-mute: rgba(12,12,12,0.40);
  --rule: rgba(12,12,12,0.10);
  --rule-strong: rgba(12,12,12,0.18);
  --accent: #e11d28;
  --r-pill: 999px;
}

/* override the global Anton/uppercase from styles.css for home only */
body.home h1, body.home h2, body.home h3, body.home h4 {
  font-family: var(--f-body);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: none;
  line-height: 1.05;
}
body.home em, body.home i {
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: inherit;
}

/* ---------- ✦ section-label star accent ---------- */
.home .star {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85em;
  margin-right: 0.35em;
  transform: translateY(-1px);
}

/* ================================================================
   NAV — light, slim, sticky
   ================================================================ */
body.home .bar {
  background: rgba(245,243,238,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  padding: 0.85rem var(--pad-x);
}
body.home .bar__brand {
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  gap: 0.55rem;
  align-items: center;
}
body.home .bar__brand-text { color: var(--ink); }
body.home .bar__phone {
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
}
body.home .bar__phone a:hover { color: var(--accent); }
body.home .bar__menu {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  padding: 0.55rem 1.1rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
}
body.home .bar__menu:hover { background: var(--accent); color: #fff; }

body.home .menu {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
body.home .menu a {
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}
body.home .menu a:hover { color: var(--accent); border-bottom-color: var(--accent); }
body.home .menu a.is-current { color: var(--accent); }

/* ================================================================
   01. HERO — light bg, headline left, form card right
   ================================================================ */
body.home .hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: clamp(4rem, 7vh, 6rem) var(--pad-x) clamp(3rem, 6vh, 5rem);
  background: var(--paper);
  overflow: hidden;
}
body.home .hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(225,29,40,0.06), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(12,12,12,0.04), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
body.home .hero__bg::after { content: none; }

body.home .hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
body.home .hero__content { max-width: 600px; }

body.home .hero__tag {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

body.home .hero__headline {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1.02;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
body.home .hero__headline em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
  letter-spacing: -0.01em;
}

body.home .hero__desc {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2rem;
}

body.home .hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

body.home .hero__cta {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
body.home .hero__cta:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
body.home .hero__cta--filled {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
body.home .hero__cta--filled:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
body.home .hero__cta--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

body.home .hero__form {
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  backdrop-filter: none;
}

@media (max-width: 960px) {
  body.home .hero { padding-top: 2rem; }
  body.home .hero__split { grid-template-columns: 1fr; gap: 2rem; }
  body.home .hero__form { max-width: 480px; margin: 0 auto; }
}

/* Mobile-only: hide the in-hero form and swap the primary CTA to "Get a quote" */
body.home .hero__cta--mobile { display: none; }
@media (max-width: 760px) {
  body.home .hero__form { display: none; }
  body.home .hero__split { gap: 0; }
  body.home .hero__cta--desktop { display: none; }
  body.home .hero__cta--mobile { display: inline-flex; }
}

/* ================================================================
   01b. STATS STRIP — three tiles inside the bone bg
   ================================================================ */
body.home .stats-strip {
  background: var(--paper);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: clamp(2rem, 4vw, 3rem) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  max-width: none;
  margin: 0;
}
body.home .stats-strip__item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.5rem 1.5rem 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
body.home .stats-strip__item + .stats-strip__item {
  border-left: 1px solid var(--rule);
  padding-left: 1.75rem;
}
body.home .stats-strip__num {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.03em;
}
body.home .stats-strip__num sup,
body.home .stats-strip__unit {
  color: var(--accent);
  font-size: 0.5em;
  margin-left: 0.05em;
}
body.home .stats-strip__num sup { top: -0.6em; }
body.home .stats-strip__label {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  body.home .stats-strip { grid-template-columns: 1fr; }
  body.home .stats-strip__item { padding: 0.5rem 0 !important; }
  body.home .stats-strip__item + .stats-strip__item { border-left: 0; border-top: 1px solid var(--rule); padding-top: 1.25rem !important; }
}

/* ================================================================
   02. VALUES — bone bg, four white tiles
   ================================================================ */
body.home .values {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
body.home .values__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
body.home .values__label,
body.home .projects__label,
body.home .about__label,
body.home .svc-grid-section__label,
body.home .process__label,
body.home .area-section__label,
body.home .cta__label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
body.home .values__headline,
body.home .projects__headline,
body.home .about__headline,
body.home .svc-grid-section__headline,
body.home .process__headline,
body.home .area-section__headline,
body.home .cta__headline {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  text-transform: none;
  color: var(--ink);
  letter-spacing: -0.025em;
}
body.home .values__headline em,
body.home .projects__headline em,
body.home .about__headline em,
body.home .svc-grid-section__headline em,
body.home .process__headline em,
body.home .area-section__headline em,
body.home .cta__headline em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent);
  letter-spacing: -0.015em;
}

body.home .values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
body.home .values__card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 2rem 1.75rem 2rem 0;
  position: relative;
}
body.home .values__card + .values__card {
  border-left: 1px solid var(--rule);
  padding-left: 1.75rem;
}
body.home .values__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
body.home .values__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
body.home .values__card-title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
body.home .values__card-text {
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  body.home .values__grid { grid-template-columns: repeat(2, 1fr); }
  body.home .values__card:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 2rem; }
  body.home .values__card:nth-child(4) { border-top: 1px solid var(--rule); padding-top: 2rem; }
}
@media (max-width: 540px) {
  body.home .values__grid { grid-template-columns: 1fr; }
  body.home .values__card { border-left: 0 !important; padding-left: 0 !important; }
  body.home .values__card + .values__card { border-top: 1px solid var(--rule); padding-top: 2rem; }
}

/* ================================================================
   03. ABOUT — light, portrait card on right
   ================================================================ */
body.home .about {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  max-width: 1240px;
  margin: 0 auto;
}
body.home .about__text {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
body.home .about__headline { color: var(--ink); }
body.home .about__body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
}

body.home .about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  margin: 1.5rem 0 1rem;
}
body.home .about__stats li {
  padding: 1.1rem 1rem 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
body.home .about__stats li + li { border-left: 1px solid var(--rule); padding-left: 1.25rem; }
body.home .about__stat-num {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.025em;
}
body.home .about__stat-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.3;
}
@media (max-width: 540px) {
  body.home .about__stats { grid-template-columns: 1fr; }
  body.home .about__stats li + li { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 1.1rem; }
  body.home .about__stats li { padding-left: 0; }
}

body.home .about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--accent);
  margin-top: 0.5rem;
  width: max-content;
  padding: 0.8rem 1.4rem;
  border: 1.5px solid var(--accent);
  border-radius: var(--r-pill);
  transition: background 0.25s, color 0.25s;
}
body.home .about__link:hover { background: var(--accent); color: #fff; }

body.home .about__image {
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  aspect-ratio: 4 / 5;
}
body.home .about__image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  -webkit-touch-callout: none; user-select: none;
}
@media (max-width: 760px) {
  body.home .about { grid-template-columns: 1fr; }
}

/* ================================================================
   04. PROJECTS — 2×2 image cards, rounded
   ================================================================ */
body.home .projects {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
body.home .projects__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1240px;
}
body.home .projects__view-all {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  transition: background 0.25s, color 0.25s;
}
body.home .projects__view-all:hover { background: var(--ink); color: var(--paper); }

body.home .projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}
body.home .project-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
body.home .project-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  border: 0;
  margin-bottom: 0.85rem;
}
body.home .project-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  -webkit-touch-callout: none; user-select: none;
}
body.home .project-card__meta {
  padding: 0;
  border-top: 0;
  margin-top: 0;
}
body.home .project-card__name {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
body.home .project-card__loc {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 540px) {
  body.home .projects__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ================================================================
   05. SERVICES — bone bg, 4-col rounded tiles
   ================================================================ */
body.home .svc-grid-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
body.home .svc-grid-section__header {
  margin: 0 auto 3rem;
  text-align: center;
  max-width: 720px;
}
body.home .svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}
body.home .svc-card {
  display: block;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}
body.home .svc-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
  margin: 0 0 0.85rem;
  border: 0;
}
body.home .svc-card__img img { width: 100%; height: 100%; object-fit: cover; }
body.home .svc-card h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 0.35rem;
  padding: 0;
  border-top: 0;
  transition: color 0.25s;
}
body.home .svc-card:hover h3 { color: var(--accent); }
body.home .svc-card p {
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 0;
}
@media (max-width: 900px) { body.home .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { body.home .svc-grid { grid-template-columns: 1fr; gap: 2rem; } }

body.home .svc-grid-section__cta {
  text-align: center;
  margin-top: 3rem;
}
body.home .svc-grid-section__cta .hero__cta { display: inline-block; }

/* ================================================================
   06. PROCESS — bone bg, 4 numbered steps
   ================================================================ */
body.home .process {
  background: var(--paper-2);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
body.home .process__header {
  margin: 0 auto 3rem;
  max-width: 1240px;
}
body.home .process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
body.home .process__step {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 2rem 1.75rem 0.5rem 0;
  border-bottom: 0;
}
body.home .process__step + .process__step { padding-left: 1.75rem; border-left: 1px solid var(--rule); }
body.home .process__num {
  display: block;
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.85rem;
  letter-spacing: -0.04em;
}
body.home .process__step-title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
body.home .process__step-text {
  font-family: var(--f-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  body.home .process__steps { grid-template-columns: repeat(2, 1fr); }
  body.home .process__step:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 2rem; margin-top: 1rem; }
  body.home .process__step:nth-child(4) { border-top: 1px solid var(--rule); padding-top: 2rem; margin-top: 1rem; }
}
@media (max-width: 540px) {
  body.home .process__steps { grid-template-columns: 1fr; }
  body.home .process__step { border-left: 0 !important; padding-left: 0 !important; }
  body.home .process__step + .process__step { border-top: 1px solid var(--rule); padding-top: 2rem; margin-top: 0; }
}

/* ================================================================
   07. SERVICE AREA — bone bg, soft city pills
   ================================================================ */
body.home .area-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  text-align: center;
}
body.home .area-section__header {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
body.home .area-section__sub {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 1rem;
}
body.home .area-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}
body.home .area-cities li {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  background: var(--paper-2);
  color: var(--ink);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
body.home .area-cities li:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}
body.home .area-section__cta {
  text-align: center;
  margin-top: 2rem;
}
body.home .area-section__cta .hero__cta { display: inline-block; }
body.home .hero__cta--ghost { color: var(--ink); border-color: var(--ink); background: transparent; }

/* ================================================================
   08. CTA — red finale slab
   ================================================================ */
body.home .cta {
  background: var(--accent);
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  position: relative;
}
body.home .cta__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
body.home .cta__left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
body.home .cta__label {
  color: #fff;
  opacity: 0.85;
  margin-bottom: 0;
}
body.home .cta__headline { color: #fff; }
body.home .cta__headline em { color: #0c0c0c; font-family: var(--f-serif); }
body.home .cta__desc {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 44ch;
}
body.home .cta__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
body.home .cta__phone {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.025em;
  transition: color 0.25s;
}
body.home .cta__phone:hover { color: var(--ink); }
body.home .cta__email {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
body.home .cta__email:hover { color: var(--ink); }
body.home .cta__hours {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0.35rem;
}

body.home .cta__form {
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  overflow: hidden;
}
@media (max-width: 760px) {
  body.home .cta__split { grid-template-columns: 1fr; }
  body.home .cta__form { padding: 1rem; }
}

/* ================================================================
   FOOTER — light, muted
   ================================================================ */
body.home .home-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem var(--pad-x);
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
  gap: 1rem;
}
body.home .home-footer__brand {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}
body.home .home-footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
body.home .home-footer__nav a { color: var(--ink-soft); transition: color 0.25s; }
body.home .home-footer__nav a:hover { color: var(--accent); }
body.home .home-footer__legal { display: flex; gap: 1.5rem; align-items: center; }
body.home .home-footer__legal a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  transition: color 0.25s;
}
body.home .home-footer__legal a:hover { color: var(--accent); }
body.home .home-footer__copy { color: var(--ink-mute); }

@media (max-width: 760px) {
  body.home { padding-bottom: 0; }
  body.home .home-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  body.home .home-footer__brand {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  body.home .home-footer__brand img {
    width: 88px !important;
    height: auto !important;
    margin-right: 0 !important;
    vertical-align: baseline !important;
  }
  body.home .home-footer__nav,
  body.home .home-footer__legal { justify-content: center; }
  body.home .home-footer__copy { font-size: 0.78rem; }
}

/* ---------- mobile dock override on home ---------- */
@media (max-width: 760px) {
  body.home .dock { background: var(--ink); color: #fff; border-top: 3px solid var(--accent); }
  body.home .dock a + a { background: var(--accent); }
}

/* ================================================================
   MOBILE SPACING — tighten section rhythm on small screens
   ================================================================ */
@media (max-width: 760px) {
  body.home {
    --pad-x: 1.25rem;
  }
  body.home .hero {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
  body.home .hero__split { gap: 1.75rem; }
  body.home .hero__content { max-width: none; }
  body.home .hero__headline { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  body.home .hero__desc { margin-bottom: 1.5rem; }
  body.home .hero__form { padding: 1.25rem 1rem; }

  body.home .stats-strip { padding: 1.5rem var(--pad-x); }

  body.home .values,
  body.home .about,
  body.home .projects,
  body.home .svc-grid-section,
  body.home .process,
  body.home .area-section,
  body.home .cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  body.home .values__header,
  body.home .svc-grid-section__header,
  body.home .area-section__header { margin-bottom: 2rem; }
  body.home .projects__header,
  body.home .process__header { margin-bottom: 2rem; }

  body.home .values__headline,
  body.home .projects__headline,
  body.home .about__headline,
  body.home .svc-grid-section__headline,
  body.home .process__headline,
  body.home .area-section__headline,
  body.home .cta__headline {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  }

  body.home .about { gap: 1.75rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  body.home .about__image { aspect-ratio: 4 / 5; }

  body.home .projects__grid { gap: 1.75rem; }
  body.home .projects__view-all { padding: 0.7rem 1.25rem; font-size: 0.9rem; }

  body.home .svc-grid-section__cta { margin-top: 2rem; }
  body.home .area-section__cta { margin-top: 1.5rem; }
  body.home .area-cities { gap: 0.4rem; }
  body.home .area-cities li { padding: 0.45rem 0.9rem; font-size: 0.85rem; }

  body.home .cta__split { gap: 2rem; }
  body.home .cta__phone { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

@media (max-width: 480px) {
  body.home .hero__form { padding: 1rem 0.85rem; }
  body.home .cta__form { padding: 1rem 0.85rem; }
  body.home .hero__cta { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
}

/* ================================================================
   INTERIOR PAGES — re-skin pages.css brutalist classes
   ================================================================ */

/* page hero */
body.home .pg-hero,
body.home .pg-hero--dark,
body.home .pg-hero--red {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}
body.home .pg-hero__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--ink);
}
body.home .pg-hero__title em {
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}
body.home .pg-hero__sub {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  margin-top: 1.25rem;
  max-width: 56ch;
  color: var(--ink-soft);
  opacity: 1;
}

/* service detail blocks */
body.home .svc-detail,
body.home .svc-detail--alt {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
body.home .svc-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--pad-x);
}
body.home .svc-detail--alt .svc-detail__inner { direction: ltr; }
body.home .svc-detail--alt .svc-detail__inner > * { direction: ltr; }
body.home .svc-detail--alt .svc-detail__img { order: 2; border: 0; }
body.home .svc-detail--alt .svc-detail__body { order: 1; }
body.home .svc-detail__img {
  border: 0;
  border-radius: 0;
  background: transparent;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
body.home .svc-detail__body { padding: 0; gap: 1rem; }
body.home .svc-detail__name {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--ink);
}
body.home .svc-detail--alt .svc-detail__name { color: var(--ink); }
body.home .svc-detail__desc {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
}
body.home .svc-detail--alt .svc-detail__desc { color: var(--ink-soft); }
body.home .svc-detail__scope {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.1rem;
  margin-top: 0.5rem;
}
body.home .svc-detail--alt .svc-detail__scope { border-color: var(--rule); }
body.home .svc-detail__scope li {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
body.home .svc-detail__scope li::before { background: var(--accent); }
body.home .svc-detail__cta {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0.75rem 1.4rem;
  border: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  border-radius: var(--r-pill);
  transition: background 0.25s, color 0.25s;
}
body.home .svc-detail__cta:hover,
body.home .svc-detail .svc-detail__cta:hover,
body.home .svc-detail--alt .svc-detail__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
@media (max-width: 760px) {
  body.home .svc-detail__inner { grid-template-columns: 1fr; padding: 2rem var(--pad-x); }
  body.home .svc-detail--alt .svc-detail__img { order: 0; }
  body.home .svc-detail--alt .svc-detail__body { order: 1; }
  body.home .svc-detail__img { border: 0; }
}

/* gallery */
body.home .gallery {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
}
body.home .gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
}
body.home .gallery__item { background: transparent; }
body.home .gallery__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}
body.home .gallery__img img { transition: none; }
body.home .gallery__item:hover .gallery__img img { transform: none; }
body.home .gallery__meta {
  background: transparent;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.65rem 0;
}
@media (max-width: 900px) { body.home .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  body.home .gallery__grid { grid-template-columns: 1fr; }
  body.home .gallery__item--wide { grid-column: span 1; }
}

/* about bio */
body.home .about-bio {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
}
body.home .about-bio__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  border: 0;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}
body.home .about-bio__portrait {
  border: 0;
  background: transparent;
  border-radius: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
body.home .about-bio__body { padding: 0; gap: 1rem; }
body.home .about-bio__name {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
}
body.home .about-bio__role {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
}
body.home .about-bio__text {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 760px) { body.home .about-bio__inner { grid-template-columns: 1fr; } }

/* about values */
body.home .about-values {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
  border-top: 1px solid var(--rule);
}
body.home .about-values__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 1240px;
}
body.home .about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0;
  border-top: 1px solid var(--rule);
  max-width: 1240px;
  margin: 0 auto;
}
body.home .about-values__item {
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 2rem 1.75rem 2rem 0;
}
body.home .about-values__item + .about-values__item {
  border-left: 1px solid var(--rule);
  padding-left: 1.75rem;
}
body.home .about-values__item h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
body.home .about-values__item p {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 900px) { body.home .about-values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  body.home .about-values__grid { grid-template-columns: 1fr; }
  body.home .about-values__item { border-left: 0 !important; padding-left: 0 !important; }
}

/* about quote */
body.home .about-quote {
  background: var(--accent);
  color: #fff;
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
  text-align: center;
}
body.home .about-quote blockquote {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 32ch;
  margin: 0 auto 1.25rem;
  color: #fff;
}
body.home .about-quote cite {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: #fff;
  opacity: 0.9;
}

/* contact */
body.home .contact {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
}
body.home .contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1240px;
  margin: 0 auto;
}
body.home .contact__phone {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  border: 0;
  border-bottom: 0;
  padding-bottom: 0;
  letter-spacing: -0.03em;
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
body.home .contact__phone:hover { color: var(--accent); border: 0; }
body.home .contact__rows {
  margin-top: 2rem;
  border-top: 1px solid var(--rule);
}
body.home .contact__row {
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  padding: 1rem 0;
}
body.home .contact__row > span:first-child {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
body.home .contact__row a, body.home .contact__row p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}
body.home .contact__row a:hover { color: var(--accent); }
body.home .contact__right {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  background: var(--ink);
  color: #fff;
}
body.home .contact__right .contact__form-eyebrow {
  color: rgba(255,255,255,0.85);
}
body.home .contact__right .contact__form-eyebrow .star {
  color: var(--accent);
}
body.home .contact__form-title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  color: #fff;
}
body.home .contact__form-title em { color: var(--accent); font-style: normal; }
body.home .contact__form-sub,
body.home .contact__form-fineprint {
  color: rgba(255,255,255,0.78);
}
body.home .contact__form-fineprint a { color: var(--accent); }
@media (max-width: 760px) { body.home .contact__inner { grid-template-columns: 1fr; } }

/* contact service area */
body.home .contact-service-area {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
  border-top: 1px solid var(--rule);
}
body.home .contact-service-area__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
body.home .contact-service-area__sub {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
body.home .contact-service-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  max-width: 1240px;
  margin: 0 auto;
}
body.home .contact-service-area__cities li {
  padding: 0.5rem 1rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  background: var(--paper-2);
  display: flex;
  align-items: center;
  gap: 0;
}
body.home .contact-service-area__cities li::before { content: none; }

/* property managers */
body.home .pm-pitch,
body.home .pm-process {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
}
body.home .pm-scopes {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
body.home .pm-pitch__inner,
body.home .pm-pitch__title,
body.home .pm-scopes__title,
body.home .pm-process__title { max-width: 1240px; margin-left: auto; margin-right: auto; }
body.home .pm-pitch__title,
body.home .pm-scopes__title,
body.home .pm-process__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
body.home .pm-pitch__title-cut {
  display: inline;
  background: transparent;
  color: var(--accent);
  padding: 0;
}
body.home .pm-pitch__copy {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 60ch;
}
body.home .pm-scopes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 0;
  border-top: 1px solid var(--rule);
  max-width: 1240px;
  margin: 0 auto;
}
body.home .pm-scopes__item {
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 2rem 1.75rem 2rem 0;
}
body.home .pm-scopes__item:nth-child(2n) { border-left: 1px solid var(--rule); padding-left: 1.75rem; }
body.home .pm-scopes__item h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
body.home .pm-scopes__item > p {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
}
body.home .pm-scopes__item ul {
  border-top: 1px solid var(--rule);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
}
body.home .pm-scopes__item li {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
body.home .pm-scopes__item li::before { background: var(--accent); }
@media (max-width: 640px) {
  body.home .pm-scopes__grid { grid-template-columns: 1fr; }
  body.home .pm-scopes__item:nth-child(2n) { border-left: 0; padding-left: 0; }
}
body.home .pm-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0;
  border-top: 1px solid var(--rule);
  max-width: 1240px;
  margin: 0 auto;
}
body.home .pm-process__step {
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 2rem 1.5rem 2rem 0;
}
body.home .pm-process__step + .pm-process__step { border-left: 1px solid var(--rule); padding-left: 1.5rem; }
body.home .pm-process__step h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
body.home .pm-process__step p {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 900px) {
  body.home .pm-process__steps { grid-template-columns: repeat(2, 1fr); }
  body.home .pm-process__step:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 560px) {
  body.home .pm-process__steps { grid-template-columns: 1fr; }
  body.home .pm-process__step { border-left: 0 !important; padding-left: 0 !important; }
}

/* service area page */
body.home .sa-intro {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
}
body.home .sa-intro__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
body.home .sa-intro__title-cut {
  display: inline;
  background: transparent;
  color: var(--accent);
  padding: 0;
}
body.home .sa-intro__copy {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 60ch;
}
body.home .sa-cities {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
  border-top: 1px solid var(--rule);
}
body.home .sa-cities__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
body.home .sa-cities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0;
  border-top: 1px solid var(--rule);
  max-width: 1240px;
  margin: 0 auto;
}
body.home .sa-city {
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 1.75rem 1.5rem 1.75rem 0;
  transition: background 0.25s;
}
body.home .sa-city + .sa-city { border-left: 1px solid var(--rule); padding-left: 1.5rem; }
body.home .sa-city:hover { background: var(--paper-2); }
body.home .sa-city h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.4rem;
  transition: color 0.25s;
}
body.home .sa-city:hover h3 { color: var(--accent); }
body.home .sa-city p {
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
body.home .sa-cities__note {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 2rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
body.home .sa-cities__note a { color: var(--accent); border-bottom: 1px solid var(--accent); }
@media (max-width: 900px) {
  body.home .sa-cities__grid { grid-template-columns: repeat(2, 1fr); }
  body.home .sa-city:nth-child(3n+1) { border-left: 0; padding-left: 0; }
  body.home .sa-city:nth-child(odd) { border-left: 0; padding-left: 0; }
  body.home .sa-city:nth-child(even) { border-left: 1px solid var(--rule); padding-left: 1.5rem; }
}
@media (max-width: 560px) {
  body.home .sa-cities__grid { grid-template-columns: 1fr; }
  body.home .sa-city { border-left: 0 !important; padding-left: 0 !important; }
}

/* faq */
body.home .faq-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x);
}
body.home .faq-list {
  border-top: 1px solid var(--rule);
  max-width: 860px;
  margin: 0 auto;
}
body.home .faq { border-bottom: 1px solid var(--rule); }
body.home .faq__q {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  padding: 1.5rem 3rem 1.5rem 0;
}
body.home .faq__q::after {
  font-family: var(--f-body);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
}
body.home .faq__a p {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
}
body.home .faq__a a { color: var(--accent); border-bottom: 1px solid var(--accent); }
body.home .faq__a li {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--ink);
}
body.home .faq__a li::before { background: var(--accent); }

/* compact CTA used on interior pages */
body.home .call--compact {
  background: var(--accent);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
}
body.home .call__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  color: #fff;
}
body.home .call__title-cut {
  display: inline;
  background: var(--ink);
  color: #fff;
  padding: 0 0.25em;
  border-radius: 4px;
}
body.home .call__sub {
  font-family: var(--f-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
}
body.home .call__phone {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  border-bottom: 0;
  letter-spacing: -0.03em;
  padding-bottom: 0;
  margin: 1.5rem 0;
  width: max-content;
  max-width: 100%;
  display: block;
}
body.home .call__phone:hover { color: var(--ink); border-color: transparent; }
body.home .call__rows {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 2rem;
}
body.home .call__row {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
}
body.home .call__row > span:first-child {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
body.home .call__row a, body.home .call__row p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
}
body.home .call__row a:hover { color: var(--ink); }
body.home .call__form {
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  overflow: hidden;
}

/* tape divider — hide on home class pages, no longer fits the editorial style */
body.home .tape { display: none; }

/* legal/long-form pages — privacy, terms, thank-you */
body.home main p,
body.home main h2,
body.home main h3,
body.home main h4 { color: var(--ink); }
body.home main {
  background: var(--paper);
}

/* ================================================================
   PARALLAX BANNERS — fixed-attachment background break sections
   ================================================================ */
body.home .parallax {
  position: relative;
  min-height: 420px;
  padding: clamp(4rem, 10vw, 8rem) var(--pad-x);
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.home .parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
body.home .parallax--sawblade { background-image: url('../images/work/parallax-sawblade.webp'); }
body.home .parallax--tools { background-image: url('../images/work/parallax-tools.webp'); }

/* JS-driven parallax variant — bg moves at fraction of scroll speed */
body.home .parallax--js {
  background-image: none;
  background-color: var(--ink);
}
body.home .parallax__bg {
  position: absolute;
  inset: -50% 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  z-index: 0;
}
body.home .parallax__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
body.home .parallax__eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
body.home .parallax__eyebrow .star { color: var(--accent); }
body.home .parallax__title {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.25rem;
}
body.home .parallax__title em {
  font-style: normal;
  color: var(--accent);
}
body.home .parallax__sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto;
}
body.home .parallax__cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-weight: 600;
}

/* iOS / mobile: background-attachment fixed is unreliable, fall back to scroll */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  body.home .parallax {
    background-attachment: scroll;
    min-height: 340px;
  }
}

/* ================================================================
   GALLERY REVEAL — fade + rise on scroll into view
   ================================================================ */
body.home [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
body.home [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
body.home .gallery--clean {
  padding-top: clamp(5rem, 8vw, 7rem);
}
@media (prefers-reduced-motion: reduce) {
  body.home [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   LOGO WATERMARK — oversized stamp behind a section
   ================================================================ */
body.home .watermark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body.home .watermark::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: clamp(420px, 55vw, 820px);
  aspect-ratio: 1.26 / 1;
  background-image: url('../images/logo/apex-logo.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
body.home .watermark > * { position: relative; z-index: 1; }
@media (max-width: 760px) {
  body.home .watermark::before {
    right: -25%;
    width: 110%;
    opacity: 0.04;
  }
}

/* Hero stamp — same shape as the values watermark, just on the hero */
body.home .hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: clamp(420px, 55vw, 820px);
  aspect-ratio: 1.26 / 1;
  background-image: url('../images/logo/apex-logo.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 760px) {
  body.home .hero::after {
    top: 6%;
    right: -25%;
    transform: none;
    width: 110%;
    opacity: 0.07;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  body.home *, body.home *::before, body.home *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body.home .parallax {
    background-attachment: scroll;
  }
}
