/* ============================================================
   JUNK SQUAD — shared design system
   Bebas Neue (display) + Outfit (body)
   ============================================================ */

:root {
  --bg:        #1A0A0A;
  --bg-2:      #231212;
  --surface:   #2D1515;
  --ink:       #0D0505;
  --maroon:    #6B1A1A;
  --maroon-br: #8B2020;
  --cream:     #F2EDE8;
  --body:      #A89890;
  --muted:     #5A4A40;
  --line:      rgba(255,255,255,0.06);
  --line-2:    rgba(255,255,255,0.12);
  --maxw:      1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Type ---------- */
.display, h1, h2, h3 {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.012em;
}
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--maroon-br);
  display: inline-block;
}
.red { color: var(--maroon); }
.lead { color: var(--body); font-size: 1.05rem; max-width: 540px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 36px; border: 1px solid transparent; cursor: pointer;
  border-radius: 10px; transition: opacity .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--maroon); color: var(--cream); }
.btn-primary:hover { opacity: 0.85; }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--cream); }
.btn-lg { padding: 20px 42px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--ink); color: var(--cream);
  font-size: 12px; font-weight: 400; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; justify-content: center; gap: 26px; padding: 9px 32px; white-space: nowrap; }
.topbar .dot { color: var(--maroon-br); }
.topbar a { font-weight: 600; }
.topbar a:hover { color: var(--maroon-br); }
@media (max-width: 720px) { .topbar .sep, .topbar .hide-sm { display: none; } }
@media (max-width: 768px) {
  .topbar .wrap { padding: 6px 20px; font-size: 11px; }
  header.site .wrap { height: 64px; }
  .brand-logo { height: 44px; }
  .header-cta { gap: 12px; }
  .header-cta .btn { display: none; }
}

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,10,10,0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
header.site.scrolled {
  background: rgba(26,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark { width: 44px; height: 44px; flex: none; }
.brand .name { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.04em; line-height: 1; }
.brand-logo { height: 58px; width: auto; display: block; }
footer.site .brand-logo { height: 64px; }
@media (max-width: 520px) { .brand-logo { height: 50px; } }
nav.main { display: flex; align-items: center; gap: 28px; }
nav.main a {
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); transition: color .2s; white-space: nowrap;
}
nav.main a:hover, nav.main a.active { color: var(--cream); }
nav.main a.active { color: var(--maroon-br); }
.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--maroon-br); }
.menu-btn { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; }
.menu-btn svg { width: 28px; height: 28px; }
@media (max-width: 1060px) {
  nav.main, .header-phone { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 520px) { .header-cta .btn { display: none; } }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: flex; flex-direction: column; padding: 24px 32px;
  transform: translateX(100%); transition: transform .34s cubic-bezier(.32,.72,0,1);
}
.drawer.open { transform: translateX(0); }
.drawer .d-top { display: flex; justify-content: space-between; align-items: center; }
.drawer nav { display: flex; flex-direction: column; margin-top: 42px; }
.drawer nav a {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; letter-spacing: 0.03em;
  padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--cream);
}
.drawer nav a:active { color: var(--maroon-br); }
.drawer .d-cta { margin-top: auto; display: flex; flex-direction: column; gap: 13px; }
.drawer .close { background: none; border: 0; color: var(--cream); cursor: pointer; }
.drawer .close svg { width: 30px; height: 30px; }

/* ---------- Sections ---------- */
section.block { padding: 110px 0; }
section.block.tight { padding: 88px 0; }
.bg-2 { background: var(--bg-2); }
.bg-1 { background: var(--bg); }
.section-head { max-width: 760px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.section-head p { color: var(--body); margin-top: 22px; font-size: 1.05rem; max-width: 560px; }
.toplink {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 36px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--maroon-br);
}
.toplink svg { width: 15px; height: 15px; transition: transform .2s; }
.toplink:hover svg { transform: translateX(5px); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero .ph-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #2D1515 0%, #1A0A0A 60%, #231212 100%); z-index: 0; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .inner { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; padding: 80px 0; max-width: 820px; }
.page-hero.short .inner { min-height: 42vh; }
.page-hero h1 { font-size: clamp(3rem, 8vw, 6.4rem); margin: 22px 0 0; }
.page-hero p { color: var(--body); margin-top: 24px; font-size: 1.12rem; max-width: 560px; }
.page-hero .ghost-g { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 420px; opacity: 0.04; z-index: 1; pointer-events: none; }

/* ---------- Marquee ---------- */
.marquee { background: var(--maroon); overflow: hidden; padding: 14px 0; }
.marquee .track { display: flex; width: max-content; white-space: nowrap; animation: scroll 38s linear infinite; }
.marquee span {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(242,237,232,0.88);
  padding: 0 22px; display: inline-flex; align-items: center; gap: 22px;
}
.marquee span::after { content: "●"; font-size: 5px; color: rgba(242,237,232,0.5); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); padding: 76px 0 38px; border-top: 1px solid var(--line); }
footer.site .top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 44px; }
footer.site .col h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
footer.site .col a, footer.site .col p { display: block; color: var(--body); font-size: 14px; margin-bottom: 11px; }
footer.site .col a:hover { color: var(--cream); }
footer.site .blurb { margin-top: 16px; max-width: 280px; }
footer.site .phone-big { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; margin-top: 16px; letter-spacing: 0.03em; }
footer.site .cities-line { color: var(--muted); font-size: 12.5px; line-height: 1.9; }
footer.site .bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px; }
@media (max-width: 860px) { footer.site .top { grid-template-columns: 1fr 1fr; gap: 38px; } }
@media (max-width: 480px) { footer.site .top { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); border-top: 1px solid var(--line-2); padding: 11px 14px; gap: 11px;
}
.sticky-bar .btn { flex: 1; padding: 15px; font-size: 11px; letter-spacing: 0.15em; }
@media (max-width: 640px) {
  .sticky-bar {
    display: flex;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
  }
  .sticky-bar.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  body { padding-bottom: 70px; }
}

/* ---------- Final CTA ---------- */
.finalcta { background: var(--bg-2); position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.finalcta .wrap { padding: 110px 32px; position: relative; z-index: 2; max-width: 880px; text-align: center; }
.finalcta .eyebrow { margin-bottom: 18px; }
.finalcta h2 { font-size: clamp(2.8rem, 6.5vw, 5.4rem); }
.finalcta p { color: var(--body); font-size: 1.12rem; margin-top: 20px; }
.finalcta .cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.finalcta .note { margin-top: 22px; font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }
.finalcta .ghost-g { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 540px; opacity: 0.04; z-index: 1; pointer-events: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.25,.46,.45,.94), transform .75s cubic-bezier(.25,.46,.45,.94); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- image-slot theming ---------- */
image-slot::part(frame) { background: linear-gradient(135deg, #2D1515 0%, #1A0A0A 100%); border-radius: 0; }
image-slot::part(empty) { color: rgba(242,237,232,0.55); }

/* baked-in real photos */
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.tile .ph-img { transition: transform .6s ease; }
.tile:hover .ph-img { transform: scale(1.03); }
.masonry .m-tile img.ph-mason { width: 100%; height: auto; display: block; object-fit: cover; transition: transform .5s ease; }
.masonry .m-tile:hover img.ph-mason { transform: scale(1.02); }

/* ============================================================
   SHARED COMPONENTS USED ACROSS PAGES
   ============================================================ */

/* ===== WHAT WE HAUL ===== */
.haul-section {
  background: #F5F2EB;
  padding: 32px 0 88px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: #111;
  position: relative;
  overflow: hidden;
}

/* Faint gorilla watermark — bottom right, barely visible */
.haul-wm {
  position: absolute;
  right: -70px;
  bottom: -50px;
  width: 480px;
  height: 480px;
  opacity: 0.04;
  pointer-events: none;
}

/* Intro row */
.haul-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 40px; position: relative; z-index: 1; }
.haul-intro-left .eyebrow { color: #8B2020; display: block; margin-bottom: 16px; }
.haul-headline { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.85rem, 2.8vw, 2.7rem); line-height: 1.1; color: #111; text-transform: none; letter-spacing: -0.02em; }
.haul-body { color: #404040; font-size: 1.04rem; line-height: 1.7; margin-bottom: 24px; }
.haul-cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.haul-cta { display: inline-block; border-radius: 8px; padding: 14px 26px; }
.haul-cta-note { font-size: 12.5px; color: #777; font-style: italic; }

/* Main body: photo card left + 2x2 category grid right */
.haul-body-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 20px; align-items: stretch; position: relative; z-index: 1; }

/* Photo card */
.haul-photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.haul-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.haul-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,2,2,0.9) 0%, rgba(8,2,2,0.45) 48%, rgba(8,2,2,0.08) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
}
.haul-photo-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 7px;
}
.haul-photo-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.haul-photo-sub {
  font-size: 0.83rem;
  color: rgba(242,237,232,0.7);
  line-height: 1.5;
}

/* 2x2 category cards */
.haul-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.haul-card2 {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  padding: 18px 18px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.haul-card2:hover {
  box-shadow: 0 6px 22px rgba(107,26,26,0.1), 0 2px 5px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

/* Category label — replaces number badge */
.hc2-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B2020;
  display: block;
  margin-bottom: 9px;
}
.hc2-body { flex: 1; }
.hc2-body h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; color: #111; text-transform: none; letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 7px; }
.hc2-body p { font-size: 0.825rem; color: #555; line-height: 1.58; margin: 0 0 12px; font-weight: 400; }
.hc2-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.hc2-chips span { background: rgba(107,26,26,0.07); color: #7f181c; font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 5px; border: 1px solid rgba(107,26,26,0.18); letter-spacing: 0.02em; }

.haul-footnote2 { font-size: 13px; color: #666; text-align: center; margin-top: 28px; font-style: italic; position: relative; z-index: 1; }

@media (max-width: 900px) {
  .haul-body-grid { grid-template-columns: 1fr; }
  .haul-photo-card { min-height: 0; aspect-ratio: 16/9; }
  .haul-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .haul-intro { grid-template-columns: 1fr; gap: 20px; align-items: start; margin-bottom: 28px; }
  .haul-section { padding: 44px 0 56px; }
  .haul-cta-wrap { align-items: stretch; }
  .haul-cta { text-align: center; }
}
@media (max-width: 560px) {
  .haul-cards-grid { grid-template-columns: 1fr; gap: 10px; }
  .haul-photo-card { aspect-ratio: 4/3; }
  .haul-footnote2 { margin-top: 20px; }
}

/* ===== PROCESS SECTION ===== */
.proc-section {
  background: var(--bg-2);
  padding: 76px 0 72px;
  border-top: 1px solid var(--line);
}
/* Desktop: photo left (spans both text rows), intro top-right, steps bottom-right */
.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "photo intro"
    "photo steps";
  grid-template-rows: auto 1fr;
  gap: 20px 64px;
}
.proc-intro    { grid-area: intro; align-self: end; }
.proc-photo-col{ grid-area: photo; display: flex; flex-direction: column; }
.proc-steps-col{ grid-area: steps; display: flex; flex-direction: column; }

/* Photo card — stretches to fill both grid rows */
.proc-photo-card {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  max-height: 580px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
}
.proc-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,1,1,0.92) 0%, rgba(6,1,1,0.35) 52%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
}
.proc-photo-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.proc-photo-sub { font-size: 0.83rem; color: rgba(242,237,232,0.6); line-height: 1.5; }

/* Intro text */
.proc-intro .eyebrow { color: var(--maroon-br); display: block; margin-bottom: 12px; }
.proc-headline { font-size: clamp(1.9rem, 2.8vw, 2.8rem); line-height: 1.05; margin-bottom: 12px; }
.proc-body { color: var(--body); font-size: 1.04rem; line-height: 1.5; }

/* Four step rows */
.proc-steps { display: flex; flex-direction: column; margin-bottom: 20px; flex: 1; }
.proc-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.proc-step:first-child { border-top: 1px solid var(--line); }
.proc-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  color: var(--maroon-br);
  letter-spacing: 0.14em;
  line-height: 1.8;
}
.proc-step-body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.2;
  margin: 0 0 6px;
}
.proc-step-body p { font-size: 0.875rem; color: var(--body); line-height: 1.48; margin: 0; }

/* CTA row */
.proc-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.proc-note { font-size: 12px; color: var(--muted); font-style: italic; margin-bottom: 16px; }

/* Mobile — flex column; HTML order gives us intro → photo → steps naturally */
@media (max-width: 860px) {
  .proc-section { padding: 56px 0 48px; }
  .proc-grid { display: flex; flex-direction: column; gap: 22px; }
  .proc-photo-card { min-height: 0; max-height: none; aspect-ratio: 4/3; flex: none; }
  .proc-cta-row { flex-direction: column; }
  .proc-cta-row .btn { width: 100%; text-align: center; }
}

/* steps (old — used on other pages, do not remove) */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; }
.steps3 .step { padding: 0 38px; }
.steps3 .step:not(:last-child) { border-right: 1px solid var(--line); }
.steps3 .num { font-family: 'Bebas Neue', sans-serif; font-size: 4.2rem; color: rgba(107,26,26,0.4); line-height: 1; }
.steps3 h3 { font-size: 1.7rem; margin-top: 14px; }
.steps3 p { color: var(--body); margin-top: 12px; font-size: 0.98rem; }
@media (max-width: 820px) { .steps3 { grid-template-columns: 1fr; gap: 40px; } .steps3 .step { padding: 0 0 36px; } .steps3 .step:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); } }

/* split (photo + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split .ph { position: relative; min-height: 540px; }
.split .ph image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.split .tx { display: flex; flex-direction: column; justify-content: center; padding: 80px; }
.split.bg-2 .tx, .split .tx.pad-2 { padding: 80px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split .ph { min-height: 360px; } .split .tx { padding: 60px 32px; } }

/* ===== THE RESULT SECTION ===== */
.result-section {
  background: var(--bg-2);
  padding: 100px 0 96px;
  border-top: 1px solid var(--line);
}
/* Desktop: text left (40%), visual right (60%) — visual is the hero */
.result-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-areas:
    "header visual"
    "lower  visual";
  grid-template-rows: auto 1fr;
  gap: 24px 56px;
}
.result-header { grid-area: header; align-self: end; }
.result-visual  { grid-area: visual; display: flex; flex-direction: column; gap: 14px; }
.result-lower   { grid-area: lower; display: flex; flex-direction: column; }

/* Header text */
.result-header .eyebrow { color: var(--maroon-br); display: block; margin-bottom: 16px; }
.result-headline { font-size: clamp(2.4rem, 3.8vw, 3.6rem); line-height: 1.0; margin-bottom: 18px; }
.result-body { color: var(--body); font-size: 0.97rem; line-height: 1.52; max-width: 480px; }

/* Before/after card */
.result-ba-card {
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 64px rgba(0,0,0,0.6);
  height: 560px;
  flex: 1;
}
.result-ba-half { flex: 1; position: relative; overflow: hidden; }
.result-ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.result-ba-half:last-child .result-ba-img { object-position: 70% center; }
.result-ba-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,1,1,0.82) 0%, rgba(6,1,1,0.12) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px 16px;
}
.result-ba-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}
.result-ba-divider { width: 3px; flex-shrink: 0; background: rgba(255,255,255,0.15); }
.result-ba-caption { font-size: 12.5px; color: var(--muted); font-style: italic; text-align: center; }

/* Outcome rows */
.result-outcomes { display: flex; flex-direction: column; margin-bottom: 22px; flex: 1; }
.result-outcome { padding: 14px 0; border-bottom: 1px solid var(--line); }
.result-outcome:first-child { border-top: 1px solid var(--line); }
.result-outcome-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 5px;
}
.result-outcome p { font-size: 0.84rem; color: var(--body); line-height: 1.48; margin: 0; }

/* CTAs */
.result-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.result-support { font-size: 12.5px; color: var(--muted); font-style: italic; }

/* Mobile — flex column; HTML order: header → visual → lower ✓ */
@media (max-width: 860px) {
  .result-section { padding: 56px 0 48px; }
  .result-grid { display: flex; flex-direction: column; gap: 28px; }
  .result-body { max-width: none; }
  .result-ba-card { height: 300px; }
  .result-cta-row { flex-direction: column; }
  .result-cta-row .btn { width: 100%; text-align: center; }
}
@media (max-width: 520px) {
  .result-ba-card { flex-direction: column; height: 480px; }
  .result-ba-divider { width: 100%; height: 3px; }
}

/* numbered reasons — kept for other pages */
.reasons { margin-top: 34px; }
.reason { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start; }
.reason:first-child { border-top: 1px solid var(--line); }
.reason .rn { font-family: 'Bebas Neue', sans-serif; font-size: 0.82rem; color: var(--maroon-br); letter-spacing: 0.14em; line-height: 1.8; }
.reason h3 { font-size: 1.15rem; }
.reason p { color: var(--body); margin-top: 7px; font-size: 0.95rem; line-height: 1.65; }
.why-support { font-size: 12.5px; color: var(--muted); font-style: italic; margin-top: 12px; }

/* social proof */
.proof { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 64px; align-items: start; }
.proof .score .big { font-family: 'Bebas Neue', sans-serif; font-size: 6rem; line-height: 0.85; }
.proof .score .stars { color: var(--maroon-br); letter-spacing: 3px; font-size: 1.3rem; margin-top: 10px; }
.proof .score .cnt { color: var(--body); font-size: 0.95rem; margin-top: 14px; }
.proof .score .gbadge { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--muted); font-size: 12px; letter-spacing: 0.04em; }
.proof .quotes { display: flex; flex-direction: column; gap: 40px; }
.proof .q .mark { font-family: 'Bebas Neue', sans-serif; font-size: 3.4rem; color: var(--maroon); line-height: 0.5; }
.proof .q blockquote { font-size: 1.18rem; font-style: italic; color: #C8C4BC; line-height: 1.6; margin-top: 8px; }
.proof .q .by { margin-top: 16px; font-size: 13px; letter-spacing: 0.06em; color: var(--body); }
.proof .q .by b { color: var(--cream); font-weight: 600; font-style: normal; }
@media (max-width: 820px) { .proof { grid-template-columns: 1fr; gap: 44px; } }

/* ===== REVIEW STRIP ===== */
.js-review-strip {
  background: #1b090d;
  color: #f5f2eb;
  padding: 72px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.js-review-strip * {
  box-sizing: border-box;
}
.js-review-strip__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.reviews-widget-area {
  width: 100%;
  max-width: 760px;
  overflow: visible;
}
.js-review-strip__eyebrow {
  color: #9b2026;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.js-review-strip__title {
  margin: 0;
  color: #f5f2eb;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.02;
  text-transform: uppercase;
}
.js-review-strip__text {
  margin: 18px 0 0;
  color: rgba(245,242,235,0.68);
  font-size: 18px;
  line-height: 1.5;
  max-width: 420px;
}
.js-review-strip__score {
  font-size: 64px;
  line-height: 0.9;
  font-weight: 900;
  color: #f5f2eb;
}
.js-review-strip__stars {
  color: #9b2026;
  letter-spacing: 0.08em;
  font-size: 22px;
  margin-top: 18px;
}
.js-review-strip__count {
  color: rgba(245,242,235,0.72);
  margin-top: 14px;
  font-size: 16px;
}
.js-review-strip__source {
  color: rgba(245,242,235,0.42);
  margin-top: 10px;
  font-size: 14px;
}
.js-review-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 280px;
}
.js-review-strip__btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 13px;
}
.js-review-strip__btn--primary {
  background: #8b1d22;
  color: #fff;
}
.js-review-strip__btn--secondary {
  background: transparent;
  color: #f5f2eb;
  border: 1px solid rgba(255,255,255,0.16);
}
@media (max-width: 900px) {
  .js-review-strip { padding: 56px 22px; }
  .js-review-strip__inner { grid-template-columns: 1fr; gap: 36px; }
  .js-review-strip__actions { width: 100%; }
  .reviews-widget-area { max-width: none; }
}

/* gallery teaser / grid cells */
.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 54px; }
.tile { position: relative; height: 340px; overflow: hidden; }
.tile image-slot { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform .6s ease; }
.tile:hover image-slot { transform: scale(1.03); }
.tile .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); z-index: 2; pointer-events: none; }
.tile .lbl { position: absolute; left: 22px; bottom: 20px; z-index: 3; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.tile .city { position: absolute; right: 22px; bottom: 20px; z-index: 3; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr; } }

/* ===== SERVICE AREA ===== */
.sa-section { background: var(--bg); padding: 100px 0 96px; border-top: 1px solid var(--line); }
.sa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sa-copy .eyebrow { color: var(--maroon-br); display: block; margin-bottom: 16px; }
.sa-headline { font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.05; margin-bottom: 16px; }
.sa-body { color: var(--body); font-size: 1rem; line-height: 1.6; margin-bottom: 24px; max-width: 460px; }
.sa-towns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; margin-bottom: 20px; }
.sa-towns span { color: var(--body); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.sa-towns span::before { content: ""; width: 6px; height: 6px; background: var(--maroon); flex-shrink: 0; border-radius: 50%; }
.sa-note { color: var(--muted); font-size: 0.85rem; font-style: italic; margin-bottom: 28px; max-width: 400px; }
.sa-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Map card */
.sa-map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
  line-height: 0;
}
.sa-map-iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 860px) {
  .sa-section { padding: 72px 0 64px; }
  .sa-grid { grid-template-columns: 1fr; gap: 40px; }
  .sa-map-iframe { height: 300px; }
  .sa-ctas { flex-direction: column; }
  .sa-ctas .btn { text-align: center; }
}

/* service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
.svc-card { background: var(--surface); border: 1px solid var(--line); padding: 36px 32px; display: flex; flex-direction: column; transition: border-color .25s ease, transform .25s ease; }
.svc-card:hover { border-color: rgba(107,26,26,0.5); transform: translateX(4px); }
.svc-card .ic { width: 34px; height: 34px; color: var(--maroon-br); margin-bottom: 22px; }
.svc-card .ic svg { width: 100%; height: 100%; stroke-width: 1.5; }
.svc-card h3 { font-size: 1.55rem; }
.svc-card .price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--maroon-br); margin-top: 8px; letter-spacing: 0.03em; }
.svc-card p { color: var(--body); margin-top: 14px; font-size: 0.96rem; flex: 1; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* 3-col text columns (pricing transparency) */
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 54px; }
.cols3 .c { padding: 0 38px; }
.cols3 .c:not(:last-child) { border-right: 1px solid var(--line); }
.cols3 .c .k { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.03em; }
.cols3 .c .k span { color: var(--maroon-br); }
.cols3 .c p { color: var(--body); margin-top: 14px; font-size: 0.98rem; }
@media (max-width: 820px) { .cols3 { grid-template-columns: 1fr; gap: 36px; } .cols3 .c { padding: 0 0 32px; } .cols3 .c:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); } }

/* full process rows */
.proc-row { display: grid; grid-template-columns: 130px 1fr; gap: 40px; padding: 44px 0; border-bottom: 1px solid var(--line); align-items: start; }
.proc-row:first-of-type { border-top: 1px solid var(--line); }
.proc-row .num { font-family: 'Bebas Neue', sans-serif; font-size: 4.4rem; color: rgba(107,26,26,0.35); line-height: 0.8; }
.proc-row .c h3 { font-size: 1.9rem; }
.proc-row .c p { color: var(--body); margin-top: 14px; font-size: 1.04rem; max-width: 680px; }
@media (max-width: 700px) { .proc-row { grid-template-columns: 1fr; gap: 12px; } .proc-row .num { font-size: 3.2rem; } }

/* accordion (FAQ) */
.faq { max-width: 860px; margin-top: 50px; border-top: 1px solid var(--line); }
.faq .item { border-bottom: 1px solid var(--line); }
.faq .q { width: 100%; background: none; border: 0; cursor: pointer; color: var(--cream); text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.03em; }
.faq .q .pm { color: var(--maroon-br); font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 1.7rem; line-height: 1; flex: none; transition: transform .3s ease; }
.faq .item.open .q .pm { transform: rotate(45deg); }
.faq .a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq .a p { color: var(--body); padding: 0 0 26px; font-size: 1rem; max-width: 720px; }
.faq .item.open .a { max-height: 320px; }

/* form */
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.contact-info .phone-xl { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem, 5.5vw, 3.1rem); letter-spacing: 0.02em; line-height: 1; display: inline-block; white-space: nowrap; }
.contact-info .hours { color: var(--body); margin-top: 22px; }
.contact-info .hours b { color: var(--cream); font-weight: 600; }
.contact-info .signals { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.contact-info .signals .s { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.contact-info .signals .s svg { width: 20px; height: 20px; color: var(--maroon-br); margin-top: 2px; flex: none; stroke-width: 1.8; }
.contact-info .signals .s span { color: var(--body); font-size: 0.96rem; }
.form { background: var(--surface); border: 1px solid var(--line); padding: 40px; }
.form .row { margin-bottom: 22px; }
.form .row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.form input, .form select, .form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); color: var(--cream);
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 300; padding: 14px 16px; border-radius: 0;
  transition: border-color .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--maroon-br); }
.form textarea { resize: vertical; min-height: 110px; }
.form .submitted { color: var(--maroon-br); font-size: 0.95rem; margin-top: 14px; text-align: center; display: none; }
.form .note { margin-top: 16px; font-size: 12px; color: var(--muted); text-align: center; }
@media (max-width: 860px) { .contact-split { grid-template-columns: 1fr; gap: 48px; } .form .row.two { grid-template-columns: 1fr; } }

/* before/after slider */
.ba-wrap { margin-top: 30px; }
.ba { position: relative; width: 100%; height: 460px; overflow: hidden; user-select: none; border: 1px solid var(--line); }
.ba .layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba .after { z-index: 1; }
.ba .before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba .tag { position: absolute; bottom: 18px; z-index: 4; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 13px; background: rgba(13,5,5,0.78); }
.ba .tag.b { left: 18px; color: var(--cream); }
.ba .tag.a { right: 18px; color: var(--maroon-br); }
.ba .divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--cream); z-index: 5; transform: translateX(-1px); }
.ba .handle { position: absolute; top: 50%; left: 50%; z-index: 6; width: 44px; height: 44px; border-radius: 50%; background: var(--cream); transform: translate(-50%,-50%); display: flex; align-items: center; justify-content: center; cursor: ew-resize; }
.ba .handle svg { width: 22px; height: 22px; color: var(--ink); }
.ba-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.04em; margin-bottom: 4px; }
.ba-meta { color: var(--muted); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }

/* tabs (gallery filter) */
.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; border-bottom: 1px solid var(--line); padding-bottom: 0; }
.tabs button {
  background: none; border: 0; border-bottom: 2px solid transparent; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--body); padding: 14px 18px; transition: color .2s, border-color .2s;
}
.tabs button:hover { color: var(--cream); }
.tabs button.active { color: var(--cream); border-bottom-color: var(--maroon); }
.masonry { columns: 3; column-gap: 4px; margin-top: 40px; }
.masonry .m-tile { break-inside: avoid; margin-bottom: 4px; position: relative; overflow: hidden; }
.masonry .m-tile image-slot { width: 100%; display: block; transition: transform .5s ease; }
.masonry .m-tile:hover image-slot { transform: scale(1.02); }
.masonry .m-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%); z-index: 2; pointer-events: none; }
.masonry .m-lbl { position: absolute; left: 16px; bottom: 14px; z-index: 3; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.masonry .m-city { position: absolute; right: 16px; bottom: 14px; z-index: 3; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* hero (home) — dark split layout */
body[data-page="home"] header.site:not(.scrolled) { background: #120607; border-bottom-color: rgba(255,255,255,0.08); }
/* ===== Homepage hero — split layout ===== */
.home-hero {
  position: relative;
  margin-top: -80px;
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, #0E0305 0%, #160708 55%, #1C0C0C 100%);
}
.home-hero .wrap {
  display: grid;
  grid-template-columns: 54% 1fr;
  gap: 52px;
  align-items: center;
}
.hero-card { /* left column — no extra constraints needed */ }
.home-hero .h-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: #E8A0A0;
  margin-bottom: 16px;
}
.home-hero h1 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400; text-transform: none;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem); line-height: 1.02; letter-spacing: 0.02em;
  color: #fff; margin: 0;
}
.home-hero .h1-br { display: inline; }
.home-hero p.sub {
  color: rgba(242,237,232,0.82); font-size: 1.03rem; line-height: 1.66;
  margin-top: 20px;
}
.home-hero .cta-row {
  display: flex; gap: 13px; margin-top: 28px; flex-wrap: wrap; align-items: center;
}
.home-hero .cta-row .btn { border-radius: 11px; padding: 18px 30px; }
.home-hero .h-proof {
  margin-top: 18px; font-size: 12px;
  color: rgba(242,237,232,0.48); line-height: 1.8; letter-spacing: 0.01em;
}
/* Photo card — right column */
.hero-photo {
  position: relative;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(107,26,26,0.32);
  box-shadow: 0 16px 52px rgba(0,0,0,0.50), 0 2px 8px rgba(0,0,0,0.25);
}
.hero-photo img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover; object-position: 45% 60%;
  transform: scale(1.08);
}
/* Desktop crop — focus on loaded trailer and truck, crop sky/trees */
@media (min-width: 861px) {
  .hero-photo img {
    object-position: 45% 72%;
    transform: scale(1.15);
  }
}
/* subtle darkening so image fits the dark hero */
.hero-photo::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: rgba(10,3,5,0.20);
}
/* Mobile */
@media (max-width: 860px) {
  .home-hero { padding: 96px 0 60px; }
  .home-hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo img { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .home-hero .h1-br { display: none; }
}
@media (max-width: 560px) {
  .home-hero { padding: 100px 0 48px; }
  .home-hero .cta-row { flex-direction: column; align-items: stretch; }
  .home-hero .cta-row .btn { width: 100%; text-align: center; }
  .hero-photo img { aspect-ratio: 3 / 2; }
}

/* ===== Direct-answer blocks (AEO) ===== */
.da-block {
  border-left: 3px solid var(--maroon-br);
  background: rgba(107,26,26,0.10);
  padding: 18px 24px;
  margin: 0 0 32px;
  border-radius: 0 6px 6px 0;
}
.da-q {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon-br);
  margin-bottom: 8px;
}
.da-a {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.6;
  font-weight: 400;
}

/* ===== FAQ page — open Q&A format ===== */
.faq-qa { border-top: 1px solid var(--line); margin-top: 52px; }
.faq-qa-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 24px 56px;
}
.faq-qa-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1.1;
  text-transform: uppercase;
  padding-top: 2px;
}
.faq-qa-a { color: var(--body); font-size: 0.97rem; line-height: 1.72; }
.faq-qa-a strong { color: var(--cream); font-weight: 600; }
.faq-qa-a p + p { margin-top: 10px; }
@media (max-width: 820px) { .faq-qa-item { grid-template-columns: 1fr; gap: 10px; } }

/* ===== Pricing page ===== */
.pricing-factor {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.pricing-factor:first-child { border-top: 1px solid var(--line); }
.pricing-factor__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--maroon-br);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}
.pricing-factor__body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 5px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}
.pricing-factor__body p { font-size: 0.9rem; color: var(--body); margin: 0; line-height: 1.58; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.price-table thead th {
  background: var(--maroon);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 22px;
  text-align: left;
}
.price-table tbody tr { border-bottom: 1px solid var(--line); }
.price-table tbody tr:last-child { border-bottom: 0; }
.price-table tbody td {
  padding: 15px 22px;
  font-size: 0.93rem;
  background: var(--surface);
  color: var(--body);
}
.price-table tbody td:last-child { color: var(--cream); font-weight: 600; }
.price-table tbody tr:nth-child(even) td { background: rgba(45,21,21,0.6); }

/* ===== Service area towns grid ===== */
.sa-towns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.sa-town-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px 22px;
  border-radius: 6px;
  transition: border-color .25s ease;
}
.sa-town-card:hover { border-color: rgba(107,26,26,0.5); }
.sa-town-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
}
.sa-town-card__county {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon-br);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
.sa-town-card p { color: var(--body); font-size: 0.85rem; line-height: 1.58; margin: 0; font-family: 'Outfit', sans-serif; }
@media (max-width: 860px) { .sa-towns-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .sa-towns-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ===== About page ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.about-photo img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/5; }
.about-copy .eyebrow { color: var(--maroon-br); display: block; margin-bottom: 20px; }
.about-copy h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.02; margin: 0 0 24px; }
.about-copy p { color: var(--body); font-size: 1rem; line-height: 1.72; margin: 0 0 18px; }
.about-copy p:last-of-type { margin-bottom: 0; }
.about-values {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 36px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.about-value__icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--maroon-br); }
.about-value__text { font-size: 0.94rem; color: var(--body); line-height: 1.55; font-family: 'Outfit', sans-serif; }
.about-value__text strong { color: var(--cream); font-weight: 600; }
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; gap: 48px; } }
