:root{
  --red:#b91c1c;
  --red2:#d11b1b;
  --ink:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
  --alt:#f6f7f9;
  --border:#e5e7eb;
  --shadow:0 14px 30px rgba(0,0,0,.08);
  --shadow2:0 10px 22px rgba(0,0,0,.06);
  --r:18px;

  --mmcTopbarH: 52px;
  --mmcHeaderH: 92px;

  --safeTop: env(safe-area-inset-top);
  --safeBottom: env(safe-area-inset-bottom);
}

@media (max-width: 520px){
  :root{ --mmcHeaderH: 104px; }
}

*{ box-sizing:border-box; }
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top: calc(var(--mmcTopbarH) + var(--mmcHeaderH) + var(--safeTop) + 16px);
}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
  padding-top: calc(var(--mmcTopbarH) + var(--mmcHeaderH) + var(--safeTop));
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.wrap{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

main{
  padding-bottom: calc(94px + var(--safeBottom));
}

.section{ padding:54px 0; }
.section-alt{
  background:var(--alt);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.02em;
  font-weight:950;
}
.section-head p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
  max-width:820px;
}

.center-cta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* =========================
   TOP BAR
   ========================= */
.top-bar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:9999;
  height: calc(var(--mmcTopbarH) + var(--safeTop));
  padding-top: var(--safeTop);
  background:#0b1220;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.top-bar-inner{
  height: var(--mmcTopbarH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.top-tagline{
  font-size:13px;
  font-weight:800;
  opacity:.92;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:48vw;
}

.top-bar-right{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.top-phone{
  color:#fff;
  font-weight:900;
  font-size:13px;
  opacity:.95;
}

.top-cta{
  background:linear-gradient(135deg, var(--red), var(--red2));
  color:#fff;
  font-weight:950;
  font-size:13px;
  padding:9px 12px;
  border-radius:999px;
  box-shadow: 0 10px 18px rgba(185,28,28,.25);
}

@media (max-width: 420px){
  .top-tagline{ display:none; }
}

/* =========================
   HEADER
   ========================= */
.main-header{
  position:fixed;
  top: calc(var(--mmcTopbarH) + var(--safeTop));
  left:0; right:0;
  z-index:9998;
  height: var(--mmcHeaderH);
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  height: var(--mmcHeaderH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-decoration:none;
  color:inherit;
}

.logo-img{
  height:56px;
  width:auto;
  object-fit:contain;
  flex:0 0 auto;
}

.logo-text{
  display:flex;
  flex-direction:column;
  min-width:0;
  line-height:1.1;
}

.brand-name{
  font-weight:950;
  font-size:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.brand-sub{
  margin-top:4px;
  font-size:11px;
  color:var(--muted);
  letter-spacing:.24em;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav-toggle{
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
  line-height:1;
  cursor:pointer;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.main-nav a{
  font-weight:850;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}

.main-nav a:hover{ background:var(--alt); }

.nav-cta{
  background:linear-gradient(135deg, var(--red), var(--red2));
  color:#fff !important;
  padding:10px 14px !important;
  border-radius:999px !important;
}

@media (max-width: 980px){
  .main-nav{
    position:fixed;
    left:12px;
    right:12px;
    top: calc(var(--mmcTopbarH) + var(--mmcHeaderH) + var(--safeTop) + 10px);
    z-index:9997;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    gap:0;
  }
  .main-nav a{
    display:block;
    width:100%;
    padding:12px 12px;
  }
  .main-nav.is-open{ display:flex; }
}

@media (min-width: 981px){
  .nav-toggle{ display:none; }
}

/* =========================
   HERO
   ========================= */
.hero{
  position:relative;
  min-height: calc(100svh - (var(--mmcTopbarH) + var(--mmcHeaderH)));
  overflow:hidden;
  background:#0b1220;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:contrast(1.05) saturate(1.05);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.74) 0%,
    rgba(0,0,0,0.60) 45%,
    rgba(0,0,0,0.38) 70%,
    rgba(0,0,0,0.10) 100%
  );
}

.hero-inner{
  position:relative;
  z-index:2;
  padding-top: 22px;
  padding-bottom: calc(170px + var(--safeBottom));
  display:grid;
  gap:12px;
  align-content:start;
}

.hero-script{
  width: min(280px, 70vw);
  height:auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.55));
}

.hero-eyebrow{
  margin:0;
  color:rgba(255,255,255,.86);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
  font-size:12px;
}

.hero-title{
  margin:0;
  color:#fff;
  font-weight:980;
  font-size: clamp(30px, 5vw, 52px);
  line-height:1.05;
  text-shadow:0 18px 30px rgba(0,0,0,.45);
}

.hero-sub{
  margin:0;
  color:rgba(255,255,255,.90);
  font-size:16px;
  max-width:760px;
  line-height:1.55;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:12px 16px;
  font-weight:950;
  font-size:14px;
  border:1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:active{ transform: translateY(1px); }

.primary-btn{
  background:linear-gradient(135deg, var(--red), var(--red2));
  color:#fff;
  box-shadow: 0 16px 28px rgba(185,28,28,.25);
}
.secondary-btn{
  background: rgba(255,255,255,.12);
  color:#fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}

.badges{
  margin-top: 18px;
  display:grid;
  gap:12px;
  max-width: 720px;
}

.badge{
  display:grid;
  grid-template-columns: 52px 1fr 18px;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border-radius:18px;
  background: rgba(25,25,25,.55);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  position:relative;
  overflow:hidden;
}

.badge-ico{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.badge-ico svg{ width:24px; height:24px; display:block; }
.badge .st{
  fill:none;
  stroke:#fff;
  stroke-width:2.3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.badge strong{ display:block; font-weight:950; font-size:16px; line-height:1.15; }
.badge small{ display:block; opacity:.88; font-size:13px; margin-top:3px; }
.badge-arrow{ opacity:.7; font-size:22px; }

/* =========================
   SERVICES
   ========================= */
.services-grid{
  margin-top:18px;
  display:grid;
  gap:16px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 980px){
  .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px){
  .services-grid{ grid-template-columns: 1fr; }
}

.service-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow2);
  transition: transform .22s ease, box-shadow .22s ease;
  position:relative;
  overflow:hidden;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-img-wrap{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 12px;
  background: #fff;
}
.service-img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .28s ease;
}
.service-card:hover .service-img{
  transform: scale(1.06);
}

.service-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 8px;
  font-weight:950;
}

.service-ico{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(185,28,28,.10);
  border: 1px solid rgba(185,28,28,.18);
  flex:0 0 auto;
  overflow:hidden;
}
.service-ico svg{ width:22px; height:22px; display:block; }
.service-ico .st{
  fill:none;
  stroke: var(--red);
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.mini-link{
  display:inline-block;
  margin-top:12px;
  color: var(--red);
  font-weight:950;
}

/* =========================
   EQUIPMENT TRUST SECTION
   ========================= */
.equip-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:center;
}
@media (max-width: 980px){
  .equip-grid{ grid-template-columns: 1fr; }
}

.equip-photo{
  position:relative;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  background:#0b1220;
}
.equip-photo img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .35s ease;
}
@media (max-width: 640px){
  .equip-photo img{ height: 320px; }
}
.equip-photo:hover img{
  transform: scale(1.06);
}

.equip-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.28) 55%,
    rgba(0,0,0,.62) 100%
  );
}

.equip-badge{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.equip-badge-title{ display:block; font-weight:980; font-size:16px; }
.equip-badge-sub{ display:block; margin-top:4px; font-size:13px; opacity:.90; line-height:1.35; }

.equip-title{ margin:0; font-size:30px; font-weight:980; letter-spacing:-.02em; }
.equip-sub{ margin: 10px 0 0; color: var(--muted); line-height: 1.65; max-width: 620px; }

.equip-points{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.equip-points li{
  padding: 12px 12px;
  border-radius: 14px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow2);
  line-height: 1.45;
}

.equip-mini{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
@media (max-width: 520px){
  .equip-mini{ grid-template-columns: 1fr; }
}
.equip-stat{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(185,28,28,.08);
  border: 1px solid rgba(185,28,28,.14);
}
.equip-num{ font-weight: 980; color: var(--ink); }
.equip-lbl{ margin-top: 4px; font-size: 13px; color: rgba(17,24,39,.72); }
.equip-actions{ margin-top: 16px; display:flex; gap: 12px; flex-wrap: wrap; }

/* =========================
   RECENT PROJECTS BAR
   ========================= */
.mmc-bar-wrap{ position: relative; margin-top: 18px; }
.mmc-photo-bar{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding: 6px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.mmc-photo-bar.is-dragging{ cursor: grabbing; }
.mmc-photo-bar::-webkit-scrollbar{ height: 10px; }
.mmc-photo-bar::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.18);
  border-radius: 999px;
}
.mmc-photo-chip{
  flex: 0 0 auto;
  width: min(78vw, 320px);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow2);
  scroll-snap-align: start;
  transition: transform .18s ease, box-shadow .18s ease;
  position:relative;
}
.mmc-photo-chip:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.mmc-photo-chip img{
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.mmc-chip-cap{
  display:block;
  padding: 12px 12px;
  font-weight: 950;
  font-size: 14px;
}

.mmc-bar-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  cursor: pointer;
  display:none;
  z-index: 4;
}
.mmc-bar-btn.prev{ left: -6px; }
.mmc-bar-btn.next{ right: -6px; }
@media (min-width: 900px){
  .mmc-bar-btn{ display:grid; place-items:center; }
}

.mmc-swipe-hint{
  position:absolute;
  right: 10px;
  top: -6px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.mmc-swipe-hint.is-on{ opacity: 1; transform: translateY(0); }
.mmc-swipe-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  color:#fff;
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
}

/* =========================
   REVIEWS
   ========================= */
.grid-2{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 820px){
  .grid-2{ grid-template-columns: 1fr; }
}
.review{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--r);
  padding:18px;
  box-shadow: var(--shadow2);
}
.stars{ font-weight:950; letter-spacing:.06em; }
.review p{ margin:10px 0 0; color:#374151; line-height:1.6; }
.who{ margin-top:10px; font-weight:950; }

/* =========================
   FORM
   ========================= */
.form-card{
  margin-top:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow2);
}
.form-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 720px){
  .form-grid{ grid-template-columns: 1fr; }
}
label{ font-weight:900; font-size:13px; }
input, select, textarea{
  width:100%;
  margin-top:8px;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  font-family: inherit;
}
.span-2{ grid-column: 1 / -1; }
.btn-full{ width:100%; }

/* =========================
   FOOTER
   ========================= */
.site-footer{
  background:#0b1220;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer-grid-simple{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:26px;
  padding: 34px 0 22px;
}
@media (max-width: 900px){
  .footer-grid-simple{
    grid-template-columns: 1fr;
    gap:18px;
    padding: 26px 0 16px;
  }
}
.site-footer h4{
  margin:0 0 12px;
  font-size:14px;
  font-weight:950;
  letter-spacing:.02em;
}
.footer-logo{
  height:42px;
  width:auto;
  object-fit:contain;
}
.footer-desc{
  margin:12px 0 10px;
  color: rgba(255,255,255,.82);
  line-height:1.6;
  max-width: 420px;
}
.footer-strong{ margin:0; font-weight:900; color: rgba(255,255,255,.92); }
.footer-strong a{ color:#fff; text-decoration:none; }
.footer-link{
  display:block;
  margin:10px 0 0;
  color: rgba(255,255,255,.88);
  font-weight:900;
}
.footer-link:hover{ color:#fff; text-decoration:underline; text-underline-offset:3px; }

.footer-bottom-simple{
  border-top:1px solid rgba(255,255,255,.10);
  padding: 14px 0 18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color: rgba(255,255,255,.78);
  font-size:13px;
}
@media (max-width: 700px){
  .footer-bottom-simple{ flex-direction:column; align-items:flex-start; }
}
.footer-back{ color:#fff; font-weight:950; }
.footer-back:hover{ text-decoration:underline; text-underline-offset:3px; }

/* =========================
   STICKY CTA
   ========================= */
.sticky{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px;
  padding-bottom: calc(10px + var(--safeBottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--border);
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  z-index:120;
}
.sticky-btn{
  border-radius:14px;
  padding:12px 10px;
  text-align:center;
  font-weight:950;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow2);
}
.sticky-primary{
  background: linear-gradient(135deg, var(--red), var(--red2));
  color:#fff;
  border-color: transparent;
}
@media (min-width: 900px){
  .sticky{ display:none; }
  main{ padding-bottom: 0; }
}

/* =========================
   REVEAL (SAFE)
   ========================= */
.reveal{ opacity:1; transform:none; }
html.js .reveal{
  opacity:0;
  transform:translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
html.js .reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   SHIMMER BLINK
   ========================= */
.mmc-blink{ position: relative; overflow: hidden; }
.mmc-blink::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-70%;
  width: 55%;
  height: 180%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.10) 35%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.10) 65%,
    transparent 100%
  );
  transform: rotate(12deg);
  opacity: 0;
  pointer-events:none;
}
.mmc-blink.mmc-blink-on::before{
  animation: mmcShimmer 1.05s ease forwards;
}
@keyframes mmcShimmer{
  0%{ left:-70%; opacity: 0; }
  12%{ opacity: .85; }
  100%{ left: 120%; opacity: 0; }
}

/* =========================
   MASON STYLE GLOW HOVER
   ========================= */
.service-card::after,
.badge::after,
.mmc-photo-chip::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(360px 160px at var(--mx, 20%) var(--my, 40%), rgba(185,28,28,.14), transparent 60%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}
.service-card:hover::after,
.badge:hover::after,
.mmc-photo-chip:hover::after{
  opacity: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  html.js .reveal,
  html.js .reveal.visible,
  .service-card,
  .mmc-photo-chip{
    transition:none !important;
    animation:none !important;
  }
  .mmc-blink.mmc-blink-on::before{ animation:none !important; }
}

/* ===========================
   ELITE SERVICE AREAS (sa2)
   Paste at VERY BOTTOM
   =========================== */

.sa2-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .sa2-grid{ grid-template-columns: 1fr; }
}

.sa2-card{
  position: relative;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sa2-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(185,28,28,.22);
}

/* top row */
.sa2-top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin-bottom: 12px;
}

.sa2-ico{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(185,28,28,.10);
  border: 1px solid rgba(185,28,28,.18);
  flex: 0 0 auto;
  overflow:hidden;
}

/* HARD clamp any svg so it never becomes a giant black house */
.sa2-ico svg{
  width: 22px !important;
  height: 22px !important;
  display:block !important;
  max-width: 22px !important;
  max-height: 22px !important;
}

.sa2-ico .st{
  fill: none !important;
  stroke: var(--red) !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sa2-head h3{
  margin: 0;
  font-weight: 980;
  font-size: 16px;
  letter-spacing: -.01em;
}

.sa2-head p{
  margin: 6px 0 0;
  color: rgba(17,24,39,.70);
  line-height: 1.45;
  font-weight: 650;
  font-size: 13px;
}

/* cities list */
.sa2-cities{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 10px;
}

@media (min-width: 560px){
  .sa2-cities{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 420px){
  .sa2-cities{ grid-template-columns: 1fr; }
}

.sa2-city{
  position: relative;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.1;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  overflow:hidden;
}

.sa2-city:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.08);
  border-color: rgba(185,28,28,.25);
}

.sa2-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(185,28,28,.12);
  flex: 0 0 auto;
}

/* bottom row inside each card */
.sa2-foot{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sa2-tags{
  color: rgba(17,24,39,.72);
  font-weight: 800;
  font-size: 13px;
}

.sa2-link{
  color: var(--red);
  font-weight: 950;
  white-space: nowrap;
}

/* “not listed” conversion bar */
.sa2-bottom{
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}

.sa2-bottom-copy h3{
  margin:0;
  font-weight: 980;
  letter-spacing: -.01em;
}

.sa2-bottom-copy p{
  margin: 8px 0 0;
  color: rgba(17,24,39,.72);
  line-height: 1.6;
  max-width: 720px;
}

.sa2-bottom-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sa2-dark{
  background: #0b1220 !important;
  color:#fff !important;
  border-color: rgba(255,255,255,.14) !important;
}

/* final CTA */
.sa2-all{
  margin-top: 14px;
  display:flex;
  justify-content:center;
}

/* ===========================
   BEFORE & AFTER (ba)
   Paste at VERY BOTTOM
   =========================== */

.ba-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .ba-grid{ grid-template-columns: 1fr; }
}

.ba-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ba-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(185,28,28,.22);
}

.ba-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ba-title h3{
  margin:0;
  font-weight: 980;
  letter-spacing: -.01em;
  font-size: 16px;
}

.ba-title p{
  margin: 6px 0 0;
  color: rgba(17,24,39,.72);
  line-height: 1.5;
  font-weight: 650;
  font-size: 13px;
  max-width: 520px;
}

.ba-tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.ba-pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(185,28,28,.08);
  border: 1px solid rgba(185,28,28,.14);
  color: rgba(17,24,39,.90);
}

/* compare */
.ba-compare{
  position: relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow2);
  background:#0b1220;
}

.ba-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

@media (max-width: 640px){
  .ba-img{ height: 260px; }
}

.ba-after{
  position:absolute;
  inset:0;
  width: 50%;
  overflow:hidden;
}

.ba-range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor: ew-resize;
}

/* line + knob */
.ba-line{
  position:absolute;
  top:0;
  height:100%;
  width: 2px;
  background: linear-gradient(180deg, rgba(185,28,28,.9), rgba(209,27,27,.9));
  transform: translateX(-1px);
  pointer-events:none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.22);
}

.ba-knob{
  position:absolute;
  top:50%;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
  pointer-events:none;
}

.ba-knob::before,
.ba-knob::after{
  content:"";
  position:absolute;
  top:50%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(17,24,39,.55);
  border-top: none;
  border-right: none;
  transform: translateY(-50%) rotate(45deg);
  opacity:.9;
}

.ba-knob::before{ left: 14px; }
.ba-knob::after{
  right: 14px;
  transform: translateY(-50%) rotate(225deg);
}

/* labels */
.ba-label{
  position:absolute;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .14em;
  font-size: 11px;
  color:#fff;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  pointer-events:none;
}

.ba-before{ left: 12px; }
.ba-after-lbl{ right: 12px; }

/* footer row */
.ba-foot{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ba-note{
  color: rgba(17,24,39,.72);
  font-weight: 850;
  font-size: 13px;
}

.ba-link{
  color: var(--red);
  font-weight: 950;
  white-space: nowrap;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .ba-card{ transition:none !important; }
}