/* The Paint Guys — Design System */
:root {
  --ink: #15171a;
  --ink-2: #2a2d33;
  --ink-soft: #4a4f57;
  --muted: #62666f;
  --line: #e7e2d8;
  --line-2: #efeae0;
  --paper: #fbf8f4;
  --cream: #f3ece1;
  --cream-2: #ece2d2;
  --red: #d8281f;
  --red-deep: #a81a13;
  --red-soft: #fde8e6;
  --orange: #f08a1c;
  --orange-soft: #fdecd5;
  --blue: #1f7fc9;
  --blue-deep: #155a91;
  --blue-soft: #e3f0fb;
  --yellow: #f5c518;
  --green: #2f8f5b;

  --shadow-sm: 0 1px 2px rgba(20,18,15,0.04), 0 2px 6px rgba(20,18,15,0.05);
  --shadow-md: 0 4px 10px rgba(20,18,15,0.06), 0 14px 30px rgba(20,18,15,0.07);
  --shadow-lg: 0 10px 24px rgba(20,18,15,0.08), 0 28px 60px rgba(20,18,15,0.10);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);

  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

/* skip-to-content */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  z-index: 200;
  transition: top .15s ease;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* Type */
.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(40px, 6.2vw, 84px); letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
p { margin: 0; color: var(--ink-soft); }

.lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 60ch; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding: clamp(20px, 2.8vw, 38px) 0; }
.section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.section-head .lead { margin-top: 18px; }
.section-head .right { display: flex; justify-content: flex-end; align-items: end; }
@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .right { justify-content: flex-start; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(216,40,31,0.28);
}
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 10px 28px rgba(216,40,31,0.36); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-soft {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-soft:hover { border-color: var(--ink); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.btn-link .arrow { transition: transform .2s ease; }
.btn-link:hover .arrow { transform: translateX(4px); }
.btn-link::after {
  content: "";
  position: absolute;
}

/* NAV */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-wrap.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(20,18,15,0.04), 0 8px 24px rgba(20,18,15,0.04);
}
.nav-wrap .nav { background: transparent; }
.topbar {
  background: var(--ink);
  color: #d6d2c8;
  font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; }
.topbar a:hover { color: #fff; }
.topbar .pills { display: flex; gap: 22px; }
.topbar .pill { display: inline-flex; gap: 8px; align-items: center; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(47,143,91,0.18); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-logo img { height: 52px; width: auto; flex: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
}
.nav-link:hover { color: var(--ink); background: rgba(20,23,26,0.04); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(216,40,31,0.28);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.nav-call:hover { transform: translateY(-1px); background: var(--red-deep); box-shadow: 0 10px 28px rgba(216,40,31,0.36); }
.nav-call .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: grid; place-items: center;
  flex: none;
}
.nav-call .lbl-stack { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav-call .lbl-stack .small {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.nav-call .lbl-stack .big { font-size: 18px; }
.menu-toggle { display: none; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
  .nav-call .lbl-stack .small { display: none; }
  .nav-call { padding: 8px 16px 8px 8px; font-size: 16px; }
  .nav-call .ico { width: 30px; height: 30px; }
}
@media (max-width: 640px) {
  .topbar .pills { display: none; }
}

/* ============================================================
   FIX 1 — Mobile nav: compact circular phone icon, hamburger stays visible
   ============================================================ */
@media (max-width: 640px) {
  .nav-call {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(216,40,31,0.32);
  }
  .nav-call .ico {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.22);
    color: #fff;
  }
  .nav-call .lbl-stack { display: none; }
}

/* Mobile nav drawer */
.drawer {
  position: fixed; inset: 0;
  background: rgba(20,23,26,0.4);
  z-index: 80;
  display: none;
}
.drawer.open { display: block; }
.drawer-panel {
  position: absolute; top: 0; right: 0;
  height: 100%; width: min(360px, 88vw);
  background: #fff;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-lg);
}
.drawer-panel .nav-link { padding: 14px 12px; font-size: 17px; border-radius: 10px; }
.drawer-panel .nav-link.active { background: var(--cream); }
.drawer-close { align-self: flex-end; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff; }

/* HERO */
.hero {
  padding-top: clamp(15px, 1.9vw, 22px);
  padding-bottom: clamp(20px, 2.5vw, 30px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.brush-strike { position: relative; display: inline-block; }
.brush-svg {
  position: absolute;
  left: -2px;
  bottom: -8px;
  width: calc(100% + 4px);
  height: 20px;
  pointer-events: none;
}
.hero .accent-red { color: var(--red); }
.hero-sub { font-size: clamp(16px, 1.25vw, 19px); color: var(--ink-soft); max-width: 56ch; line-height: 1.6; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.trust-item { display: flex; gap: 10px; align-items: flex-start; }
.trust-item .check {
  flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  margin-top: 2px;
}
.trust-item .label { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
@media (max-width: 760px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
}

/* Hero image */
.hero-art {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.hero-art .ph { position: absolute; inset: 0; }
.hero-art .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  bottom: 130px;
  left: 24px;
  color: #fff;
  z-index: 2;
  max-width: 60%;
}
.hero-tag-pill {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.hero-tag-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-tag-loc {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow-md);
  max-width: 320px;
}
.hero-badge .stars { color: var(--yellow); font-size: 14px; letter-spacing: 1px; }
.hero-badge .num { font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1; color: var(--ink); }
.hero-badge .lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hero-badge .divider { width: 1px; height: 36px; background: var(--line); }

.hero-floating {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  display: flex; gap: 10px; align-items: center;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.hero-floating .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #62e09b;
  box-shadow: 0 0 0 0 rgba(98,224,155,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(98,224,155,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(98,224,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(98,224,155,0); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { aspect-ratio: 4 / 3; }
}

/* ============================================================
   FIX 2 — Mobile hero card: prevent badge/title collision at 375px
   ============================================================ */
@media (max-width: 640px) {
  .hero-floating {
    top: 14px;
    right: 14px;
    padding: 7px 11px 7px 9px;
    font-size: 11px;
    gap: 7px;
  }
  .hero-floating .pulse { width: 7px; height: 7px; }
  .hero-tag {
    bottom: auto;
    top: 60px;
    left: 14px;
    max-width: 70%;
  }
  .hero-tag-title { font-size: 16px; }
  .hero-tag-pill { font-size: 10px; padding: 4px 8px; margin-bottom: 6px; }
  .hero-badge {
    bottom: 14px;
    left: 14px;
    right: 14px;
    max-width: none;
    padding: 12px 14px;
    gap: 10px;
  }
  .hero-badge .num { font-size: 18px; }
  .hero-badge .lbl { font-size: 11px; }
  .hero-badge .stars { font-size: 12px; }
  /* Gradient scrim so tag text is readable regardless of photo brightness */
  .hero-art::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-tag { z-index: 2; }
}

/* Marquee logos / service strip */
.strip {
  background: var(--ink);
  color: #d6d2c8;
  padding: 20px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 56px;
  animation: marq 72s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  align-items: center;
}
.strip-track span { display: inline-flex; align-items: center; gap: 56px; }
.strip-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex: none; }
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation-play-state: paused; }
}

/* SERVICES */
.services {
  background: var(--cream);
  position: relative;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(20,23,26,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.6;
}
.services .container { position: relative; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card .num {
  font-family: var(--display);
  font-weight: 500;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.16em;
}
.svc-card .ico-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--cream-2);
  color: var(--ink);
}
.svc-card .ico-wrap.red { background: var(--red-soft); color: var(--red); }
.svc-card .ico-wrap.orange { background: var(--orange-soft); color: var(--orange); }
.svc-card .ico-wrap.blue { background: var(--blue-soft); color: var(--blue-deep); }
.svc-card h3 { font-size: 24px; }
.svc-card p { font-size: 15px; line-height: 1.55; }
.svc-card .more { margin-top: 4px; }
.svc-card .swatch {
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent 50%, currentColor 50%);
  opacity: 0.06;
  pointer-events: none;
}

/* PROJECTS */
.proj-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tab {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .15s;
}
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.tab .tab-count {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  background: var(--cream);
  color: var(--ink-soft);
  padding: 2px 7px;
  border-radius: 999px;
}
.tab.active .tab-count { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.proj-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--cream);
  cursor: pointer;
  transition: transform .25s ease;
}
.proj-card:hover { transform: translateY(-3px); }
.proj-card .ph { position: absolute; inset: 0; }
.proj-card .img-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.proj-card .img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.proj-card:hover .img-wrap img { transform: scale(1.04); }
.proj-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
  color: #fff;
}
.proj-card .pill {
  display: inline-flex;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.proj-card h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  color: #fff;
}
.proj-card .loc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
}
.proj-card .ba {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* span large for bento */
.proj-card.span-6 { grid-column: span 6; }
.proj-card.span-4 { grid-column: span 4; }
.proj-card.span-8 { grid-column: span 8; }
@media (max-width: 980px) {
  .proj-card.span-6, .proj-card.span-4, .proj-card.span-8 { grid-column: span 6; }
}
@media (max-width: 640px) {
  .proj-card.span-6, .proj-card.span-4, .proj-card.span-8 { grid-column: span 12; }
}

/* PROCESS */
.process { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.process h2 { color: #fff; }
.process .lead { color: rgba(255,255,255,0.7); }
.process .eyebrow { color: var(--orange); }
.process .eyebrow::before { background: var(--orange); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 8px, transparent 8px 16px);
}
.proc-step { padding: 0 14px; position: relative; }
.proc-step .num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: all .25s ease;
}
.proc-step.active .num,
.proc-step:hover .num {
  transform: scale(1.08);
}
.proc-step h4 {
  font-family: var(--display);
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.proc-step p {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .proc-step { padding-bottom: 28px; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr; } }

.why-art {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  position: relative;
  box-shadow: var(--shadow-md);
  background: var(--cream);
}
.why-art .ph { position: absolute; inset: 0; }
.why-art .why-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-card {
  position: absolute;
  bottom: 24px; right: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  width: 220px;
  box-shadow: var(--shadow-md);
}
.why-card .big {
  font-family: var(--display);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  color: var(--red);
}
.why-card .sub { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

.why-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.why-item:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.why-item .ico {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  display: grid; place-items: center;
}
.why-item h4 { font-family: var(--body); font-size: 15px; font-weight: 600; margin: 0 0 2px; }
.why-item p { font-size: 13.5px; line-height: 1.5; }

/* TESTIMONIALS */
.testi { background: var(--ink); }
/* BUG 4 FIX — center heading + google badge, stacked column */
.testi .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 48px;
}
.testi .section-head h2 { color: #fff; }
.testi .section-head .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testi-carousel { overflow: hidden; position: relative; }
.testi-track {
  display: flex;
  gap: 20px;
  padding: 4px 2px;
  width: max-content;
  animation: testi-scroll 64s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-carousel .review { flex: none; width: 360px; }

.review {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review .stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; }
.review .quote { font-family: var(--display); font-weight: 500; font-size: 20px; line-height: 1.4; color: #fff; letter-spacing: 0; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
.review .av {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600;
  color: #fff;
}
.review .name { font-weight: 600; font-size: 14.5px; color: #fff; }
.review .role { font-size: 12.5px; color: rgba(255,255,255,0.6); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: box-shadow .2s, transform .2s;
}
.google-badge:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.28); transform: translateY(-2px); }
.google-badge .gb-score {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: #202124;
}
.google-badge .gb-right { display: flex; flex-direction: column; gap: 2px; }
.google-badge .gb-top { display: flex; align-items: center; gap: 6px; }
.google-badge .gb-google { font-size: 13px; font-weight: 600; color: #5f6368; letter-spacing: 0.02em; }
.google-badge .gb-stars { color: #fbbc04; font-size: 16px; letter-spacing: 1px; line-height: 1; }
.google-badge .gb-meta { font-size: 12px; color: #5f6368; }

/* ESTIMATE */
.estimate {
  background: var(--cream);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.estimate .container { position: relative; }
.est-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
@media (max-width: 980px) { .est-grid { grid-template-columns: 1fr; } }

.estimate h2 { color: var(--ink); }
.estimate .lead { color: var(--ink-soft); }
.estimate .eyebrow { color: var(--red); }
.estimate .eyebrow::before { background: var(--red); }

.est-info { display: grid; gap: 18px; margin-top: 32px; }
.est-info .row { display: flex; gap: 14px; align-items: flex-start; }
.est-info .ico {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(216,40,31,0.1);
  color: var(--red);
  display: grid; place-items: center;
}
.est-info .ttl { font-weight: 600; color: var(--ink); font-size: 15px; }
.est-info .val { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }

.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20,23,26,0.08);
}
.field.error input, .field.error select, .field.error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216,40,31,0.1);
}
.field .err-msg { color: var(--red); font-size: 12px; margin-top: 4px; }
.upload {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  background: var(--paper);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.upload:hover, .upload.drag { border-color: var(--ink); background: #fff; }
.upload .label { font-size: 14px; font-weight: 600; color: var(--ink); }
.upload .hint { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.upload .files { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.upload .chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  display: inline-flex; gap: 6px; align-items: center;
}
.form-foot {
  display: flex; align-items: center; gap: 16px; justify-content: space-between;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.form-foot .promise { font-size: 12.5px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
@media (max-width: 540px) {
  .form-grid { grid-template-columns: 1fr; }
}

.success-card {
  text-align: center;
  padding: 32px 12px;
}
.success-card .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.success-card h3 { margin-bottom: 8px; }

/* FOOTER */
footer {
  background: var(--ink);
  color: #d6d2c8;
  padding: 20px 0 10px;
  position: relative;
}
.foot-cta {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.foot-cta::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12), transparent 60%);
  transform: rotate(-12deg);
  pointer-events: none;
}
.foot-cta h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  color: #fff;
  letter-spacing: -0.01em;
}
.foot-cta p { color: rgba(255,255,255,0.85); margin-top: 10px; max-width: 50ch; }
.foot-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; align-items: center; }
.foot-cta .btn-primary { background: #fff; color: var(--red); box-shadow: none; }
.foot-cta .btn-primary:hover { background: var(--ink); color: #fff; }
.foot-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.foot-cta .btn-ghost:hover { background: #fff; color: var(--red); border-color: #fff; }
@media (max-width: 760px) {
  .foot-cta { grid-template-columns: 1fr; }
  .foot-cta .actions { justify-content: flex-start; }
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .brandmark { margin-bottom: 22px; display: block; }
.foot-brand p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 36ch; }
.foot-col h5 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,0.85); }
.foot-col a:hover { color: #fff; }
.foot-col .row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.85); }
.foot-col .row .ico { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.08); display: grid; place-items: center; flex: none; }
.areas { display: flex; flex-wrap: wrap; gap: 6px; }
.areas .pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.foot-base {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.foot-base a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background .15s;
}
.socials a:hover { background: var(--red); }

/* placeholder painted images */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--bg1, #d8d2c4) 0%, var(--bg2, #b3aa97) 100%);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 6px, transparent 6px 12px),
    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.18), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 50%);
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  top: 14px; right: 14px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* fade-in animation — JS-opt-in. Content is visible by default; only hides
   once .pre-reveal is added at boot, then swaps to .in on intersect. */
.reveal { transition: opacity .8s ease, transform .8s ease; }
.reveal.pre-reveal { opacity: 0; transform: translateY(16px); }
.reveal.pre-reveal.in { opacity: 1; transform: translateY(0); }

/* utility */
.muted-divider { height: 1px; background: var(--line); margin: 0; }
.center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 12px; }

/* Gallery stats */
.gallery-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.gstat { display: flex; flex-direction: column; gap: 2px; }
.gstat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.01em;
}
.gstat-lbl { font-size: 12px; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.gstat-divider { width: 1px; height: 36px; background: var(--line); }

/* Pricing chips on service cards */
.svc-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 4px;
  width: fit-content;
}
.svc-price .from { color: var(--muted); font-weight: 400; margin-right: 2px; }

/* FAQ */
.faq { background: var(--cream); position: relative; overflow: hidden; }
.faq::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(20,23,26,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.faq .container { position: relative; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  user-select: none;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .chevron {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  transition: transform .2s ease, background .2s;
  color: var(--ink);
}
.faq-q[aria-expanded="true"] .chevron { transform: rotate(180deg); background: var(--ink); color: #fff; }
.faq-a {
  padding: 18px 22px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  border-top: 1px solid var(--line);
}
.faq-foot {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* NAV AREA BADGE */
.nav-area {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
@media (max-width: 1080px) { .nav-area { display: none; } }

/* PAGE HEADER BAND — inner pages (see FIX 4 block below for full styles) */

/* ============================================================
   FIX 4 — Page-header photo backgrounds (Services, Gallery, About, Contact)
   ============================================================ */
.page-header {
  background: var(--ink);
  color: #fff;
  padding: clamp(36px, 4.5vw, 60px) 0;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,17,20,0.72) 0%, rgba(15,17,20,0.55) 60%, rgba(15,17,20,0.38) 100%);
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: #fff;
  margin-bottom: 14px;
}
.page-header p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 58ch;
}
/* BUG 5 FIX — solid dark header for About (no competing photo) */
.page-header-solid {
  background: var(--ink-2);
  min-height: 0;
}
.page-header-solid .container { z-index: auto; }

/* ============================================================
   FIX 5 — Sticky mobile action bar (bottom, mobile only)
   ============================================================ */
.mobile-action-bar {
  display: none;
}
@media (max-width: 640px) {
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    box-shadow: 0 -2px 12px rgba(20,18,15,0.14);
  }
  .mobile-action-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
  }
  .mobile-action-bar .mab-call {
    background: var(--ink);
    color: #fff;
  }
  .mobile-action-bar .mab-estimate {
    background: var(--red);
    color: #fff;
  }
  /* bottom padding so the bar doesn't cover footer content */
  body { padding-bottom: 60px; }
}

/* ============================================================
   FIX 8 — Home trust strip under hero
   ============================================================ */
.hero-trust-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.hero-trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hts-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid var(--line);
}
.hts-item:last-child { border-right: none; }
.hts-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hts-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
@media (max-width: 640px) {
  .hts-item {
    padding: 8px 18px;
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }
  .hts-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .hts-item:nth-child(3),
  .hts-item:nth-child(4) { border-bottom: none; }
}

/* ============================================================
   FIX 9 — Tighten section spacing: reduce gap below page-header
   ============================================================ */
.page-header + section,
.page-header + .estimate {
  padding-top: clamp(28px, 3.5vw, 48px);
}
/* Gallery: reduce the cream gap under the header */
.gallery-section-wrap {
  padding-top: clamp(20px, 2.5vw, 32px);
}

/* PRE-FOOTER CTA BAND */
.prefooter-cta {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 72px) 0;
  text-align: center;
}
.prefooter-cta h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 10px;
}
.prefooter-cta p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 28px;
}
.prefooter-cta .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* SERVICES PAGE — full service groups */
.svc-group {
  margin-bottom: 64px;
  scroll-margin-top: 160px;
}
.svc-group-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.svc-group-img {
  width: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: none;
}
.svc-group-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
@media (max-width: 760px) {
  .svc-group-header { grid-template-columns: 1fr; }
  .svc-group-img { width: 100%; }
  .svc-group-img img { height: 200px; }
}

/* BUG 3 FIX — fully-justified rows, no orphan gap */
.svc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.svc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 calc(33.333% - 8px);
  min-width: 220px;
}
@media (max-width: 880px) {
  .svc-item { flex: 1 1 calc(50% - 6px); }
}
@media (max-width: 560px) {
  .svc-item { flex: 1 1 100%; }
}
.svc-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.svc-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}
.svc-item:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }

/* GALLERY PAGE */
.proj-card.hidden { display: none; }

/* ABOUT / PRIVACY / TERMS prose */
.prose {
  max-width: 72ch;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) 0;
}
.prose h2 {
  font-size: clamp(20px, 2vw, 26px);
  margin-top: 40px;
  margin-bottom: 12px;
}
.prose p, .prose li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }

/* TESTI 4-column on about page */
@media (min-width: 1080px) {
  .testi-grid.four-col { grid-template-columns: repeat(4, 1fr); }
}

/* 404 page */
.notfound {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 0;
}
.notfound .big-num {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  line-height: 1;
  color: var(--line);
  display: block;
  margin-bottom: 8px;
}
.notfound h1 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 14px;
}
.notfound p {
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 32px;
}
.notfound .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== LIGHTBOX ===== */
#lightbox.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
}
#lightbox[hidden] {
  display: none;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(16px,4vw,48px);
}
.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption {
  color: #fff;
  font-family: var(--display);
  margin-top: 18px;
  font-size: clamp(15px,2vw,20px);
  text-align: center;
  letter-spacing: 0.01em;
}
.lightbox-close {
  position: absolute;
  top: clamp(12px,3vw,28px);
  right: clamp(12px,3vw,28px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .15s;
  border: none;
  cursor: pointer;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.24);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .15s;
  border: none;
  cursor: pointer;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.24);
}
.lightbox-prev {
  left: clamp(8px,2vw,28px);
}
.lightbox-next {
  right: clamp(8px,2vw,28px);
}
#gallery-grid .proj-card img {
  cursor: pointer;
}
@media (max-width: 600px) {
  .lightbox-img {
    max-height: 70vh;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
  .lightbox-close {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

/* ghost button readable on dark page-header photo */
.svc-header-ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,0.65) !important;
  background: transparent !important;
}
.svc-header-ghost:hover {
  background: #fff !important;
  color: var(--ink) !important;
  border-color: #fff !important;
}

/* ============================================================
   ABOUT PAGE — Our Standards
   ============================================================ */
.about-standards {
  background: var(--paper);
  padding: clamp(48px, 6vw, 88px) 0;
}
.standards-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-top: 40px;
}
.standards-col h3 {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.standards-col h3:not(:first-child) {
  margin-top: 36px;
}
.standards-col p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
  font-size: 15px;
}
@media (max-width: 720px) {
  .standards-body {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT PAGE — Local Roots / Service Area
   ============================================================ */
.about-local {
  background: var(--cream);
  padding: clamp(48px, 6vw, 88px) 0;
}
.local-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.local-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}
.local-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-pill {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .local-wrap {
    grid-template-columns: 1fr;
  }
  .local-photo {
    order: 2;
  }
  .local-copy {
    order: 1;
  }
}

/* ============================================================
   ABOUT PAGE — Trust Strip + CTA
   ============================================================ */
.about-trust {
  background: var(--paper);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 20px 22px;
  text-align: center;
}
.trust-val {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.trust-lbl {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.4;
}
.about-cta {
  text-align: center;
}
.about-cta h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.about-cta p {
  color: var(--ink-soft);
  margin: 12px auto 0;
  max-width: 520px;
  line-height: 1.6;
}
.about-cta .actions {
  justify-content: center;
}
@media (max-width: 860px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-card {
    padding: 20px 14px 16px;
  }
}

/* ============================================================
   FIX 4b — Footer service areas horizontal band
   ============================================================ */
.foot-areas-band {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 20px;
}
.foot-areas-band h5 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 12px;
}
.foot-areas-band .areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ============================================================
   FIX 5 — Numbered "Our Standards" on about.html
   ============================================================ */
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  margin-top: 40px;
}
.standard-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.standard-num {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.standard-block h3 {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.standard-block p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
  font-size: 15px;
}
@media (max-width: 720px) {
  .standards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TOPBAR RESPONSIVE — hide least-essential items at tablet width
   ============================================================ */
@media (max-width: 900px) {
  /* Hide the service-area pill (2nd item in left group) and
     the Facebook follow link (1st item in right group);
     keep "Now booking" on the left and email on the right */
  .topbar .pills:first-child span.pill:nth-child(2) {
    display: none !important;
  }
  .topbar .pills:last-child a.pill:first-child {
    display: none !important;
  }
}
@media (max-width: 600px) {
  /* Hide the entire top bar — info is in nav and footer */
  .topbar {
    display: none !important;
  }
}
