/* ========================================
   Tony The Window Man — Shared Stylesheet
   ======================================== */

/* ---------- Tokens ---------- */
:root {
  --red:        #E31E24;
  --red-deep:   #B81519;
  --yellow:     #FFD400;
  --yellow-soft:#FFE873;
  --ink:        #161616;
  --ink-soft:   #3a3a3a;
  --mute:       #6b6b6b;
  --paper:      #FAF7F0;
  --paper-2:    #F2EDE0;
  --sky:        #CDE6F0;
  --line:       rgba(22,22,22,.10);
  --line-2:     rgba(22,22,22,.18);

  --display: "Anton", "Archivo Black", Impact, sans-serif;
  --accent:  "Archivo Black", Impact, sans-serif;
  --body:    "Inter", system-ui, sans-serif;

  --radius:   16px;
  --radius-l: 28px;

  --shadow-1: 0 1px 0 rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.06);
  --shadow-2: 0 2px 0 rgba(0,0,0,.06), 0 14px 32px -10px rgba(0,0,0,.18);

  --container: 1240px;
}

* { box-sizing: border-box; }
html { margin: 0; padding: 0; overflow-x: hidden; }
body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -.01em; }
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .005em;
  text-transform: uppercase;
  line-height: .92;
}
.eyebrow {
  font-family: var(--accent);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--yellow); }
.eyebrow.on-dark::before { background: var(--yellow); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #f4f4f4;
  font-size: 13px;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 18px;
}
.topbar a { color: #f4f4f4; opacity: .85; }
.topbar a:hover { opacity: 1; }
.topbar .right { display: flex; gap: 20px; align-items: center; }
.topbar .pin { color: var(--yellow); }
.topbar .dot { width: 4px; height: 4px; border-radius: 50%; background: #555; }

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  z-index: 50;
}
.header .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 116px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 96px; width: auto; }
.brand .word {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}
.brand .word small { display: block; color: var(--red); font-size: 13px; letter-spacing: .15em; font-family: var(--accent); }

nav.primary { display: flex; gap: 28px; justify-content: center; align-items: center; }
nav.primary > a, nav.primary > .nav-item > a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  cursor: pointer;
}
nav.primary > a:hover, nav.primary > .nav-item > a:hover { color: var(--red); }
nav.primary > a.active { color: var(--red); }
nav.primary a.has-arrow::after {
  content: "▾";
  font-size: 9px;
  margin-left: 6px;
  opacity: .6;
  transition: transform .2s;
  display: inline-block;
}
nav.primary .nav-item { position: relative; }
nav.primary .nav-item:hover a.has-arrow::after,
nav.primary .nav-item:focus-within a.has-arrow::after {
  transform: rotate(180deg);
}
nav.primary .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  min-width: 320px;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 100;
}
nav.primary .nav-item:hover .dropdown,
nav.primary .nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(2px);
}
nav.primary .dropdown::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
nav.primary .dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background .12s, color .12s;
  white-space: nowrap;
}
nav.primary .dropdown a:hover,
nav.primary .dropdown a.active {
  background: var(--paper-2);
  color: var(--red);
}
nav.primary .dropdown a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: .35;
  transition: opacity .12s, transform .12s;
}
nav.primary .dropdown a:hover::before,
nav.primary .dropdown a.active::before { opacity: 1; transform: scale(1.4); }

.cta-phone {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--shadow-1);
  transition: transform .15s ease, background .15s ease;
}
.cta-phone:hover { background: var(--red-deep); transform: translateY(-1px); }
.cta-phone .ph {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: var(--red);
  display: grid; place-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 0 var(--red-deep); }
.btn-red:hover { background: var(--red-deep); box-shadow: 0 4px 0 #8c1014; }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 0 #C9A300; }
.btn-yellow:hover { background: #FFC900; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--ink); }
.btn-sm { padding: 12px 20px; font-size: 14px; }

/* ---------- Hero (homepage) ---------- */
.hero {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,22,22,.18) 1.4px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: .35;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  font-family: var(--accent);
  font-size: 13px; letter-spacing: .14em;
  padding: 11px 18px 11px 14px; border-radius: 999px;
  text-transform: uppercase;
}
.hero-badge .pin-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-badge .sep { opacity: .35; }
.hero-badge .place { color: var(--yellow); }

.hero h1.display {
  font-size: clamp(54px, 7.2vw, 94px);
  margin: 20px 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .stroke {
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 2px 2px 0 var(--ink), 4px 4px 0 var(--red);
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 14px;
  background: var(--red);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.hero-note {
  font-size: 13px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.hero-note .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.hero-art .burst {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.hero-art .burst svg { width: 96%; height: 96%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.18)); }
.hero-art .character {
  position: relative; z-index: 2; width: 96%;
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
.hero-art .speech {
  position: absolute; top: 8%; right: -4%;
  background: #fff; border: 3px solid var(--ink); border-radius: 18px;
  padding: 14px 18px; font-family: var(--accent); font-size: 14px; line-height: 1.2;
  color: var(--ink); max-width: 220px; transform: rotate(4deg); z-index: 3;
  box-shadow: 6px 6px 0 var(--ink);
}
.hero-art .speech::after {
  content: ""; position: absolute; bottom: -16px; left: 22px;
  width: 22px; height: 22px; background: #fff;
  border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}
.hero-art .speech strong { color: var(--red); }
.hero-art .pow {
  position: absolute; bottom: 4%; left: -4%;
  background: var(--red); color: #fff; font-family: var(--display);
  font-size: 28px; padding: 14px 22px; border: 3px solid var(--ink);
  transform: rotate(-8deg); z-index: 3; box-shadow: 5px 5px 0 var(--ink);
  letter-spacing: .04em;
}

/* ---------- Inner page hero ---------- */
.inner-hero {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  padding: 64px 0 60px;
}
.inner-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,22,22,.18) 1.4px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: .35;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; max-width: 900px; }
.inner-hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: .94;
  text-transform: uppercase;
  color: var(--ink);
  margin: 20px 0 20px;
  text-wrap: balance;
}
.inner-hero h1 em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.inner-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 12px;
  background: var(--red);
  z-index: -1;
  transform: skewX(-8deg);
}
.inner-hero .lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 0 28px;
}
.inner-hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.inner-hero .hero-note {
  font-size: 13px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.inner-hero .hero-note .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: #fff;
  font-family: var(--accent);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: nowrap;
}
.trust-strip .pill { display: inline-flex; align-items: center; gap: 12px; }
.trust-strip .pill .star { color: var(--yellow); font-size: 18px; }
.trust-strip .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: .96;
  text-transform: uppercase;
  margin-top: 14px;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 480px;
}

/* ---------- USPs ---------- */
.usps { background: var(--paper); border-bottom: 1px solid var(--line); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #fff;
  overflow: hidden;
}
.usp {
  padding: 32px 26px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.usp:last-child { border-right: none; }
.usp .num { font-family: var(--display); font-size: 14px; color: var(--red); letter-spacing: .12em; }
.usp .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--yellow); display: grid; place-items: center;
  margin-bottom: 4px; border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
}
.usp h3 { font-family: var(--accent); font-size: 18px; line-height: 1.2; }
.usp p { margin: 0; font-size: 14.5px; color: var(--mute); line-height: 1.5; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 30px 28px 26px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.svc:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-2); }
.svc::after {
  content: ""; position: absolute; top: 0; right: 0; width: 60px; height: 60px;
  background: radial-gradient(circle at 12px 12px, var(--yellow) 4px, transparent 5px) 0 0/12px 12px;
  opacity: .65; transition: opacity .2s;
}
.svc:hover::after { opacity: 1; }
.svc .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--paper-2); display: grid; place-items: center; color: var(--red);
}
.svc.feature .ico { background: var(--red); color: #fff; }
.svc h3 { font-family: var(--accent); font-size: 21px; line-height: 1.15; }
.svc p { margin: 0; font-size: 15px; color: var(--mute); line-height: 1.55; flex: 1; }
.svc .more {
  font-family: var(--accent); font-size: 13px; color: var(--red); letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
}
.svc .more::after { content: "→"; transition: transform .2s; }
.svc:hover .more::after { transform: translateX(4px); }

/* ---------- Content sections (inner pages) ---------- */
.content-section { background: var(--paper); }
.content-section + .content-section { border-top: 1px solid var(--line); }
.content-wrap {
  max-width: 820px;
}
.content-wrap h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: .96;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-wrap: balance;
}
.content-wrap h3 {
  font-family: var(--accent);
  font-size: 20px;
  margin: 32px 0 10px;
  color: var(--ink);
}
.content-wrap p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.65;
}
.content-wrap ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}
.content-wrap ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.content-wrap ul li::before {
  content: "✓";
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  flex-shrink: 0; border: 1.5px solid var(--ink);
  margin-top: 1px;
}
.content-wrap .callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 17px;
  color: var(--ink-soft);
}
.content-wrap .callout strong { color: var(--ink); }

/* ---------- Repair-first split ---------- */
.repair-first {
  background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.repair-first::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1.2px, transparent 1.4px);
  background-size: 24px 24px; pointer-events: none;
}
.repair-first .container {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.repair-first h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: .94; text-transform: uppercase; margin-bottom: 22px;
}
.repair-first h2 em { font-style: normal; color: var(--yellow); }
.repair-first .lede { font-size: 18px; color: rgba(255,255,255,.78); max-width: 540px; margin-bottom: 32px; }
.repair-first .quote {
  border-left: 4px solid var(--yellow); padding: 6px 0 6px 22px;
  margin: 28px 0 30px; font-family: var(--accent); font-size: 19px; line-height: 1.4; color: #fff;
}
.repair-first .quote cite {
  display: block; margin-top: 12px; font-family: var(--body); font-size: 13px;
  font-weight: 600; color: rgba(255,255,255,.6); font-style: normal;
  letter-spacing: .04em; text-transform: uppercase;
}
.repair-first .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.repair-first .stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px 18px 16px;
}
.repair-first .stat .num { font-family: var(--display); font-size: 38px; color: var(--yellow); line-height: 1; }
.repair-first .stat .lbl {
  font-size: 12.5px; margin-top: 6px; color: rgba(255,255,255,.7);
  letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
}
.repair-first-art { position: relative; display: grid; place-items: center; }
.repair-first-art .ring {
  position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--red) 0%, var(--red-deep) 60%, transparent 70%);
  filter: blur(20px); opacity: .55;
}
.repair-first-art img {
  position: relative; z-index: 1; max-height: 620px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.55));
}
.repair-first-art .label {
  position: absolute; top: 6%; right: -2%;
  background: var(--yellow); color: var(--ink); font-family: var(--display);
  letter-spacing: .04em; font-size: 22px; padding: 10px 18px;
  border: 3px solid var(--ink); transform: rotate(6deg); box-shadow: 4px 4px 0 rgba(0,0,0,.4);
}

/* ---------- Common problems chips ---------- */
.problems { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.problem {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; font-size: 14.5px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all .15s ease;
}
.problem:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.problem .x {
  width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 50%; background: var(--yellow); color: var(--ink);
  flex-shrink: 0; border: 1.5px solid var(--ink);
}

/* ---------- Gallery (homepage mosaic) ---------- */
.gallery { background: var(--paper); }
.gal-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px; gap: 14px;
}
.gal-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: #fff; cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item .meta {
  position: absolute; left: 12px; bottom: 12px; background: #fff;
  font-family: var(--accent); font-size: 12px; padding: 8px 12px;
  border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.gal-1 { grid-column: span 6; grid-row: span 2; }
.gal-2 { grid-column: span 3; grid-row: span 2; }
.gal-3 { grid-column: span 3; grid-row: span 1; }
.gal-4 { grid-column: span 3; grid-row: span 1; }
.gal-5 { grid-column: span 3; grid-row: span 2; }
.gal-6 { grid-column: span 3; grid-row: span 1; }
.gal-7 { grid-column: span 3; grid-row: span 1; }
.gal-cta {
  grid-column: span 6; grid-row: span 2;
  background: var(--yellow); border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 26px; position: relative; overflow: hidden;
  border: 2px solid var(--ink);
}
.gal-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,22,22,.12) 1.2px, transparent 1.4px);
  background-size: 16px 16px; opacity: .5; pointer-events: none;
}
.gal-cta h3 {
  font-family: var(--display); font-size: 38px;
  text-transform: uppercase; line-height: .94; position: relative;
}
.gal-cta p {
  font-size: 14.5px; color: var(--ink-soft); margin: 12px 0 0;
  max-width: 90%; position: relative;
}
.gal-cta .btn { align-self: flex-start; position: relative; }

/* ---------- Before / After section ---------- */
.before-after { background: var(--paper-2); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ba-pair {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.ba-pair .ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
  aspect-ratio: 16/9;
}
.ba-pair .ba-images img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.ba-pair:hover .ba-images img { transform: scale(1.04); }
.ba-pair .ba-label {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}
.ba-pair .ba-label span {
  font-family: var(--accent);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 14px;
  color: rgba(255,255,255,.7);
}
.ba-pair .ba-label span:first-child { color: rgba(255,255,255,.5); }
.ba-pair .ba-label span:last-child { color: var(--yellow); }
.ba-pair .ba-desc {
  background: #fff;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--mute);
  font-weight: 500;
  border-top: 1px solid var(--line);
}
.ba-single {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.ba-single img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s; }
.ba-single:hover img { transform: scale(1.04); }
.ba-single .ba-desc {
  background: #fff;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--mute);
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.ba-single .ba-desc::before {
  content: "✓";
  width: 20px; height: 20px;
  background: var(--yellow); color: var(--ink);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
  border: 1.5px solid var(--ink);
}

/* ---------- Photo carousel + lightbox ---------- */
.photo-gallery { background: var(--paper); }
.carousel-wrap {
  position: relative;
}
.carousel-track-outer {
  overflow: hidden;
  border-radius: var(--radius-l);
}
.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.carousel-thumb {
  flex: 0 0 calc(25% - 10.5px);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line-2);
  cursor: pointer;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.carousel-thumb:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.carousel-thumb:hover img { transform: scale(1.06); }
.carousel-thumb .zoom-ico {
  position: absolute; bottom: 10px; right: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(22,22,22,.7); color: #fff;
  display: grid; place-items: center;
  opacity: 0; transition: opacity .2s;
  backdrop-filter: blur(4px);
}
.carousel-thumb:hover .zoom-ico { opacity: 1; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  box-shadow: 2px 2px 0 var(--ink);
}
.carousel-btn:hover { background: var(--yellow); transform: translateY(-2px); }
.carousel-btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.carousel-dots {
  display: flex; gap: 6px; align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-2); border: none;
  cursor: pointer; transition: background .2s, transform .2s;
  padding: 0;
}
.carousel-dot.active { background: var(--ink); transform: scale(1.25); }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(22,22,22,.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lightbox-img-wrap {
  flex: 1;
  border-radius: var(--radius-l);
  overflow: hidden;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.lightbox-img-wrap img {
  max-height: 85vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.lb-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .15s, transform .15s;
  font-size: 20px;
}
.lb-btn:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.lb-close {
  position: absolute;
  top: -52px; right: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center;
  cursor: pointer; font-size: 18px;
  transition: background .15s;
}
.lb-close:hover { background: var(--red); border-color: var(--red); }
.lb-counter {
  position: absolute;
  bottom: -44px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--accent); font-size: 13px;
  letter-spacing: .1em; color: rgba(255,255,255,.6);
}

/* ---------- Testimonial ---------- */
.testimonial { background: var(--paper-2); position: relative; }
.testimonial .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.testimonial .stars { color: #F5A623; font-size: 22px; letter-spacing: 4px; margin-bottom: 18px; }
.testimonial blockquote {
  margin: 0; font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05;
  text-transform: uppercase; text-wrap: balance;
}
.testimonial blockquote::before {
  content: "\201C"; font-family: var(--display); color: var(--red);
  font-size: 80px; line-height: .5; margin-right: 6px; vertical-align: -10px;
}
.testimonial cite {
  display: block; margin-top: 24px; font-family: var(--body); font-style: normal;
  font-weight: 600; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft);
}
.testimonial .badges { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.testimonial .badges .b {
  background: #fff; border-radius: 12px; padding: 16px 22px;
  font-family: var(--accent); font-size: 13px; letter-spacing: .04em;
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--line);
}
.testimonial .badges .b strong { font-family: var(--display); font-size: 28px; color: var(--red); }

/* ---------- Areas ---------- */
.areas { background: var(--paper); }
.areas .container { max-width: 980px; text-align: center; }
.areas .section-head { grid-template-columns: 1fr; text-align: center; margin-bottom: 40px; gap: 14px; }
.areas .section-head .eyebrow { justify-content: center; }
.areas .section-head p { margin: 0 auto; max-width: 620px; }
.areas h2 {
  font-family: var(--display); font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase; line-height: .96; margin-top: 14px;
}
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 28px; }
.area-grid .a {
  background: #fff; border: 2px solid var(--ink); border-radius: 14px;
  padding: 22px 18px; font-family: var(--accent); font-size: 20px;
  letter-spacing: .02em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: 4px 4px 0 var(--ink); transition: transform .15s ease;
}
.area-grid .a:hover { transform: translateY(-3px); }
.area-grid .a small {
  font-family: var(--body); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; color: var(--red); text-transform: uppercase;
}
.area-grid .a.alt { background: var(--yellow); }
.area-list-secondary { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 24px; }
.area-list-secondary .a {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: 13.5px;
}
.area-list-secondary .a::before { content: "• "; color: var(--red); margin-right: 4px; font-weight: 700; }
.areas-extra {
  font-size: 14.5px; color: var(--mute); max-width: 640px;
  margin: 18px auto 0; padding-top: 18px;
  border-top: 1px dashed var(--line-2);
}

/* ---------- Final CTA ---------- */
.final-cta { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1.2px, transparent 1.4px);
  background-size: 22px 22px; pointer-events: none;
}
.final-cta .container {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 40px; align-items: center; position: relative; z-index: 1;
}
.final-cta h2 {
  font-family: var(--display); font-size: clamp(48px, 6vw, 84px);
  line-height: .94; text-transform: uppercase; text-wrap: balance;
}
.final-cta h2 .yellow { color: var(--yellow); }
.final-cta p { font-size: 18px; color: rgba(255,255,255,.92); margin: 22px 0 30px; max-width: 540px; }
.final-cta .big-phone {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--yellow); color: var(--ink);
  padding: 18px 28px; border-radius: 18px;
  font-family: var(--display); font-size: 32px; letter-spacing: .02em;
  box-shadow: 0 6px 0 #C9A300; transition: transform .15s;
}
.final-cta .big-phone:hover { transform: translateY(-2px); }
.final-cta .big-phone small {
  display: block; font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; color: var(--ink-soft); text-transform: uppercase;
}
.final-cta .or {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.8);
}
.final-cta .or a { text-decoration: underline; text-underline-offset: 4px; color: #fff; font-weight: 600; }
.final-cta-art { position: relative; }
.final-cta-art img { max-height: 520px; margin: 0 auto; filter: drop-shadow(0 24px 30px rgba(0,0,0,.3)); }

/* ---------- Inner page CTA strip ---------- */
.inner-cta {
  background: var(--ink); color: #fff;
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.inner-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1.2px, transparent 1.4px);
  background-size: 22px 22px; pointer-events: none;
}
.inner-cta .container {
  max-width: 860px;
  text-align: center;
  position: relative; z-index: 1;
}
.inner-cta h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: .96; text-transform: uppercase; text-wrap: balance;
  margin-bottom: 16px;
}
.inner-cta h2 em { font-style: normal; color: var(--yellow); }
.inner-cta p { font-size: 18px; color: rgba(255,255,255,.8); margin: 0 auto 30px; max-width: 600px; }
.inner-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.inner-cta .big-phone {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--yellow); color: var(--ink);
  padding: 16px 24px; border-radius: 14px;
  font-family: var(--display); font-size: 28px; letter-spacing: .02em;
  box-shadow: 0 5px 0 #C9A300; transition: transform .15s;
}
.inner-cta .big-phone:hover { transform: translateY(-2px); }
.inner-cta .big-phone small {
  display: block; font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; color: var(--ink-soft); text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--paper); }
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; font-family: var(--accent); font-size: 16px;
  color: var(--ink); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-q .faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper-2); display: grid; place-items: center;
  flex-shrink: 0; transition: background .2s, transform .2s;
  font-size: 14px; color: var(--red);
}
.faq-item.open .faq-q .faq-arrow { background: var(--yellow); transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.65;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ---------- Contact page ---------- */
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-info h3 {
  font-family: var(--accent); font-size: 18px; margin-bottom: 22px;
}
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--yellow); display: grid; place-items: center;
  flex-shrink: 0; border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
}
.contact-detail .txt { font-size: 15px; color: var(--ink-soft); line-height: 1.6; overflow-wrap: break-word; min-width: 0; }
.contact-detail .txt strong { color: var(--ink); display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-detail a { color: var(--red); font-weight: 600; }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 40px;
  box-shadow: var(--shadow-1);
}
.contact-form-wrap h3 {
  font-family: var(--display); font-size: 28px; text-transform: uppercase;
  line-height: 1; margin-bottom: 6px;
}
.contact-form-wrap p { font-size: 14.5px; color: var(--mute); margin: 0 0 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: var(--accent); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1.5px solid var(--line-2); border-radius: 10px;
  padding: 12px 16px; font-size: 15px; font-family: var(--body); color: var(--ink);
  background: var(--paper); transition: border-color .15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ink);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.form-notice { font-size: 13px; color: var(--mute); margin-top: 20px; padding: 16px 0 4px; border-top: 1px solid var(--line); text-align: center; }
.form-success {
  display: none;
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: 12px; padding: 18px 22px;
  color: #166534; font-weight: 600; margin-bottom: 20px;
}

/* ---------- About page ---------- */
.about-split-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.about-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1020px) {
  .about-split-grid,
  .about-two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-hero-art {
  display: grid; place-items: center;
  position: relative;
}
.about-hero-art .burst {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.about-hero-art .burst svg { width: 80%; opacity: .3; }
.about-hero-art img { position: relative; z-index: 1; max-height: 420px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 28px;
}
.value-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--yellow); display: grid; place-items: center;
  margin-bottom: 14px; border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
}
.value-card h3 { font-family: var(--accent); font-size: 17px; margin-bottom: 8px; }
.value-card p { margin: 0; font-size: 14.5px; color: var(--mute); line-height: 1.55; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink); color: #cbcbcb;
  padding: 64px 0 28px; font-size: 14.5px;
}
footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
footer h4 {
  font-family: var(--accent); font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
footer .brand-block { max-width: 340px; }
footer .brand-block img { height: 70px; margin-bottom: 14px; }
footer p { margin: 0 0 12px; line-height: 1.6; color: #a8a8a8; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { color: #cbcbcb; }
footer a:hover { color: var(--yellow); }
footer .contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
footer .contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow); }
footer .legal {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 13px; color: #777; grid-column: 1 / -1;
}

/* ---------- Mobile logo banner (hidden on desktop, shown via 640px breakpoint) ---------- */
.mobile-logo-banner {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 28px 0 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-logo-banner img { height: 80px; width: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .trust-strip .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .trust-strip .sep { display: none; }
  .trust-strip .pill { flex: 0 0 auto; }
}

@media (max-width: 1020px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero-art { max-width: 520px; margin: 0 auto; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .usp:nth-child(2n) { border-right: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .repair-first .container,
  .testimonial .container,
  .final-cta .container { grid-template-columns: 1fr; gap: 40px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .header .row { grid-template-columns: auto auto; justify-content: space-between; }
  .cta-phone { justify-self: end; }
  .gal-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .gal-1, .gal-cta { grid-column: span 6; }
  .gal-2 { grid-column: span 3; }
  .gal-3, .gal-4 { grid-column: span 3; }
  .gal-5 { grid-column: span 3; }
  .gal-6, .gal-7 { grid-column: span 3; }
  footer .container { grid-template-columns: 1fr 1fr; }
  nav.primary { display: none; }
  .carousel-thumb { flex: 0 0 calc(33.333% - 10px); }
  .ba-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  /* Give full-width shadow elements room so the shadow is visible at the edge */
  .ba-pair, .ba-single { margin-right: 4px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero .container { padding-top: 48px; padding-bottom: 48px; }
  .hero-badge {
    font-size: 11px;
    letter-spacing: .09em;
    padding: 8px 12px 8px 10px;
    gap: 7px;
  }
  .hero-badge .pin-ico { width: 18px; height: 18px; }
  .inner-hero { padding: 48px 0 44px; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp, .usp:nth-child(2n) { border-right: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gal-1, .gal-cta, .gal-2, .gal-3, .gal-4, .gal-5, .gal-6, .gal-7 { grid-column: span 2; }
  .area-grid { grid-template-columns: 1fr; }
  .area-grid .a { margin-right: 4px; }
  footer .container { grid-template-columns: 1fr; }
  .topbar .right { display: none; }
  .cta-phone span.long { display: none; }
  .brand .word { display: none; }
  .header .row { height: 82px; }
  .brand img { height: 64px; }
  .final-cta .big-phone { font-size: 26px; padding: 14px 20px; }
  .carousel-thumb { flex: 0 0 calc(50% - 7px); }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .repair-first .stat-row { grid-template-columns: 1fr; gap: 10px; }
  .repair-first .stat { display: flex; align-items: center; gap: 16px; padding: 14px 18px; }
  .repair-first .stat .num { font-size: 30px; flex-shrink: 0; }
  .repair-first .stat .lbl { margin-top: 0; }
  /* gal-cta: shrink h3 so button isn't clipped by card height */
  .gal-cta h3 { font-size: 24px; }
  .gal-cta { padding: 20px; }
  /* badges: stack vertically with number+label side by side */
  .testimonial .badges { flex-direction: column; gap: 10px; }
  .testimonial .badges .b { flex-direction: row; align-items: center; gap: 14px; width: 100%; }
  .testimonial .badges .b strong { font-size: 22px; }
  /* mobile logo banner */
  .mobile-logo-banner { display: flex; }
}

/* ============ Mobile Nav ============ */
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(22,22,22,.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 149;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.mob-overlay.open { opacity: 1; pointer-events: auto; }

.mob-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, calc(100vw - 44px));
  height: 100%;
  background: var(--ink);
  z-index: 150;
  transform: translateX(110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.mob-nav.open { transform: translateX(0); }

.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.mob-nav-logo { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.mob-nav-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s; flex-shrink: 0;
}
.mob-nav-close:hover { background: var(--red); }

.mob-nav-list { list-style: none; margin: 0; padding: 8px 0; flex: 1; }
.mob-nav-list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  font-size: 15.5px; font-weight: 600;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .12s, background .12s;
}
.mob-nav-list li a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  opacity: .45; transition: opacity .12s, background .12s;
}
.mob-nav-list li a:hover { color: var(--yellow); background: rgba(255,255,255,.04); }
.mob-nav-list li a:hover::before { opacity: 1; background: var(--yellow); }

.mob-nav-label {
  font-family: var(--accent); font-size: 10.5px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow); padding: 18px 20px 7px;
}
.mob-nav-div { height: 1px; background: rgba(255,255,255,.1); margin: 8px 20px; }

.mob-nav-phone {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 18px 32px;
  background: var(--red); color: #fff;
  padding: 14px 18px; border-radius: 12px;
  font-family: var(--display); font-size: 22px; letter-spacing: .02em;
  box-shadow: 0 4px 0 var(--red-deep); flex-shrink: 0;
  transition: transform .15s;
}
.mob-nav-phone:hover { transform: translateY(-1px); }

/* Toggle trigger */
.mob-toggle {
  display: none;
  position: fixed; bottom: 22px; right: 20px; z-index: 200;
  flex-direction: column; align-items: center; gap: 6px;
  background: var(--ink); border: none; border-radius: 14px;
  padding: 12px 14px 10px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.06) inset;
  transition: background .15s;
}
.mob-toggle:hover { background: #2a2a2a; }

.mob-toggle-bars { display: flex; flex-direction: column; gap: 4px; }
.mob-toggle-bars span {
  display: block; width: 22px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.mob-toggle.open .mob-toggle-bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mob-toggle.open .mob-toggle-bars span:nth-child(2) { opacity: 0; }
.mob-toggle.open .mob-toggle-bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-toggle-label {
  font-family: var(--accent); font-size: 10px; letter-spacing: .18em; color: #fff; line-height: 1;
}
.mob-toggle-label::after { content: 'MENU'; }
.mob-toggle.open .mob-toggle-label::after { content: 'CLOSE'; }

@media (max-width: 1020px) {
  .mob-toggle { display: flex; }
}

/* ---------- Reviews Carousel ---------- */
.reviews-band .badges { display: flex; gap: 20px; margin-top: 0; flex-wrap: wrap; justify-content: center; }
.reviews-band .badges .b {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 14px 22px;
  font-family: var(--accent); font-size: 13px; letter-spacing: .04em; color: #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.reviews-band .badges .b strong { font-family: var(--display); font-size: 26px; color: var(--yellow); }
.reviews-band {
  background: var(--ink);
  padding: 80px 0 56px;
  overflow: hidden;
}
.reviews-head {
  text-align: center;
  margin-bottom: 44px;
}
.reviews-head h2 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  margin: 10px 0 16px;
}
.rev-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
.rev-stars-big { color: var(--yellow); font-size: 17px; letter-spacing: 2px; }
.rev-score { color: rgba(255,255,255,.65); font-size: 13px; font-family: var(--accent); letter-spacing: .04em; }
.reviews-outer {
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 10px;
}
.reviews-viewport { flex: 1; overflow: hidden; padding-bottom: 6px; }
.reviews-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.rev-card {
  flex-shrink: 0;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 28px rgba(0,0,0,.30);
  box-sizing: border-box;
}
.rev-card .rev-stars { color: var(--yellow); font-size: 15px; letter-spacing: 3px; }
.rev-card blockquote {
  margin: 0; padding: 0;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--ink-soft);
  flex: 1;
}
.rev-card blockquote::before { content: none; }
.rev-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rev-card cite strong {
  font-family: var(--accent);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: .03em;
}
.rev-card cite span { font-size: 12px; color: var(--mute); }
.rev-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .18s, transform .15s;
}
.rev-btn:hover { background: var(--red-deep); transform: scale(1.1); }
.rev-btn svg { pointer-events: none; }
.rev-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.rev-dot.active { background: var(--yellow); transform: scale(1.4); }

@media (max-width: 640px) {
  .reviews-band { padding: 56px 0 44px; }
  .reviews-outer { padding: 0 8px; gap: 4px; }
  .rev-card { padding: 22px 20px; }
  .rev-btn { width: 36px; height: 36px; }
}
