:root {
  --bg: #fdfcf9;
  --bg-soft: #f4f1ea;
  --bg-warm: #fcf5e8;
  --bg-cream: #faf5e9;
  --bg-paper: #fffbf3;
  --bg-dark: #0a0e1a;
  --bg-dark-soft: #131a2a;
  --ink: #0a0e1a;
  --ink-2: #28304a;
  --ink-3: #5b6580;
  --muted: #8e95a8;
  --line: #ebe6db;
  --line-soft: #f0ece2;
  --line-dark: #1f2a44;
  --brand: #ea580c;
  --brand-bright: #f97316;
  --brand-dark: #c2410c;
  --brand-deep: #7c2d12;
  --brand-soft: #fff1e2;
  --blueprint: #1e3a5f;
  --blueprint-soft: #e6ecf4;
  --teal: #0d6e6a;
  --gold: #ca8a04;
  --accent: #0ea5e9;
  --ok: #15803d;
  --star: #d97706;
  --rule: rgba(10,14,26,0.10);
  --shadow-xs: 0 1px 2px rgba(10,14,26,0.05);
  --shadow-sm: 0 1px 2px rgba(10,14,26,0.05), 0 2px 4px rgba(10,14,26,0.04);
  --shadow-md: 0 4px 10px rgba(10,14,26,0.06), 0 10px 24px rgba(10,14,26,0.06);
  --shadow-lg: 0 8px 20px rgba(10,14,26,0.10), 0 24px 48px rgba(10,14,26,0.14);
  --shadow-xl: 0 12px 30px rgba(10,14,26,0.14), 0 40px 80px rgba(10,14,26,0.20);
  --shadow-stamp: 0 1px 0 rgba(10,14,26,0.05), 0 12px 24px -10px rgba(10,14,26,0.20);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --max: 1200px;
  --pad: clamp(20px, 4vw, 44px);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s cubic-bezier(0.34, 1.56, 0.64, 1), background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 17px 30px; font-size: 16px; letter-spacing: -0.01em; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand) 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.30) inset,
    0 -1px 0 rgba(124,45,18,0.30) inset,
    0 6px 14px rgba(234,88,12,0.30),
    0 12px 30px -8px rgba(234,88,12,0.32);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.30) inset,
    0 -1px 0 rgba(124,45,18,0.30) inset,
    0 10px 24px rgba(234,88,12,0.36),
    0 18px 40px -10px rgba(234,88,12,0.36);
}
.btn-outline {
  background: var(--bg-paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: var(--bg-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,252,249,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.header-row { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 60%, var(--brand-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700; font-style: italic;
  font-variation-settings: "opsz" 36;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px rgba(234,88,12,0.34), inset 0 1px 0 rgba(255,255,255,0.30);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  font-variation-settings: "opsz" 36;
  line-height: 1.1;
  display: inline-flex; align-items: baseline; gap: 6px;
  letter-spacing: -0.015em;
}
.brand-tail {
  font-family: var(--font-sans);
  color: var(--ink-3);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-primary { display: flex; gap: 26px; margin-left: 32px; }
.nav-primary a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  position: relative;
  padding: 4px 0;
  text-decoration: none;
}
.nav-primary a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
  border-radius: 1px;
}
.nav-primary a:hover { color: var(--ink); }
.nav-primary a:hover::after { transform: scaleX(1); }
.header-cta { margin-left: auto; }
@media (max-width: 860px) { .nav-primary { display: none; } .brand-tail { display: none; } }
@media (max-width: 440px) { .header-cta { font-size: 13px; padding: 8px 12px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 92% -10%, rgba(234,88,12,0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(30,58,95,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-cream) 100%);
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero::before {
  /* subtle blueprint grid overlay */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-xs);
  margin: 0 0 22px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(234,88,12,0.18);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero h1 .accent {
  color: var(--brand);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.hero h1 .accent::after {
  /* hand-drawn scribble underline */
  content: "";
  position: absolute;
  left: -2%; right: -3%; bottom: -10px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 18' preserveAspectRatio='none'><path d='M3 13 C 70 4, 130 16, 200 6 S 300 14, 318 8' stroke='%23ea580c' stroke-width='3.5' stroke-linecap='round' fill='none'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero .lede {
  font-size: clamp(17px, 1.6vw, 19.5px);
  color: var(--ink-2);
  margin: 0 0 26px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }

/* Trust pills */
.trust-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; max-width: 540px; }
.trust-pill {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
  position: relative;
}
.trust-pill::before {
  content: "";
  position: absolute; top: 0; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, transparent 100%);
  border-radius: 0 0 2px 2px;
}
.trust-pill strong { font-size: 14px; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
.trust-pill span { font-size: 12.5px; color: var(--ink-3); }

/* Hero visual — workshop bench composition */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 540px;
  perspective: 1200px;
}
.hero-photo { width: min(440px, 94%); position: relative; transform-style: preserve-3d; }
.hero-photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  background:
    /* deep workshop lighting */
    radial-gradient(900px 500px at 80% 0%, rgba(234,88,12,0.42), transparent 55%),
    radial-gradient(700px 600px at 20% 90%, rgba(13,110,106,0.25), transparent 55%),
    linear-gradient(160deg, #1f2937 0%, #0a0e1a 55%, #050912 100%);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  transform: rotate(-1.5deg);
}
.photo-grain {
  position: absolute; inset: 0;
  background-image:
    /* vertical wood-plank suggestion */
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 90px),
    /* fine grain */
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 9px),
    /* blueprint dots */
    radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1.5px);
  background-size: auto, auto, 18px 18px;
  mix-blend-mode: overlay;
  opacity: 0.85;
}
.photo-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  z-index: 2;
}
.photo-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(253,252,249,0.96);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.5);
}
.photo-badge svg {
  width: 24px; height: 24px; padding: 5px;
  background: var(--brand); color: #fff;
  border-radius: 8px;
  box-sizing: content-box;
  box-shadow: 0 4px 10px rgba(234,88,12,0.30);
}
.photo-badge strong { display: block; font-size: 14.5px; line-height: 1; margin-bottom: 3px; font-weight: 700; }
.photo-badge span { display: block; font-size: 12px; color: var(--ink-3); }

/* "Rubber stamp" badge over the photo */
.photo-stamp {
  align-self: flex-end;
  background: rgba(252,245,232,0.94);
  border: 2px solid var(--brand);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--brand-deep);
  min-width: 170px;
  position: relative;
  transform: rotate(4deg);
  box-shadow: var(--shadow-stamp);
  font-family: var(--font-sans);
}
.photo-stamp::before {
  content: "";
  position: absolute; inset: -1px;
  border: 2px dashed rgba(234,88,12,0.30);
  border-radius: 8px;
  pointer-events: none;
}
.stamp-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.stamp-row span { font-size: 10.5px; color: var(--brand-deep); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; opacity: 0.7; }
.stamp-row strong { font-size: 18px; letter-spacing: -0.01em; font-weight: 800; }
.stamp-line { height: 1px; background: rgba(124,45,18,0.25); margin: 6px 0; }

/* Floating paper "shop notes" around the frame */
.floating-badge {
  position: absolute;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 3px;
  min-width: 124px;
  z-index: 3;
}
.floating-badge strong { font-size: 15.5px; color: var(--ink); letter-spacing: -0.01em; font-weight: 800; }
.floating-badge span { font-size: 11.5px; color: var(--ink-3); }
.floating-badge::before {
  content: "";
  position: absolute; top: -8px; left: 50%;
  width: 22px; height: 16px;
  background: rgba(234,88,12,0.7);
  clip-path: polygon(0 100%, 100% 100%, 80% 0, 20% 0);
  transform: translateX(-50%);
}
.badge-1 { top: 12%; left: -6%; transform: rotate(-5deg); }
.badge-2 { bottom: 18%; right: -7%; transform: rotate(4deg); }
.badge-2 strong { color: var(--star); font-family: var(--font-display); font-size: 18px; }

/* Workshop "polaroid" sample chips floating in the scene */
.shop-chip {
  position: absolute;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.shop-chip .chip-swatch {
  display: block;
  border-radius: 3px;
}
.shop-chip .chip-label {
  display: block;
  font-size: 9.5px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
  text-align: center;
}
.chip-paint  { top: -2%; right: 6%; transform: rotate(8deg); width: 88px; }
.chip-paint .chip-swatch { width: 76px; height: 36px; background: linear-gradient(135deg, #ea580c 0%, #fb923c 50%, #fed7aa 100%); }
.chip-tile   { bottom: 4%; left: -4%; transform: rotate(-9deg); width: 80px; }
.chip-tile .chip-swatch { width: 68px; height: 48px; background: repeating-conic-gradient(#f4f1ea 0deg 90deg, #e6ecf4 90deg 180deg); }
.chip-bp     { top: 38%; right: -5%; transform: rotate(6deg); width: 96px; }
.chip-bp .chip-swatch { width: 84px; height: 60px; background: linear-gradient(180deg, #1e3a5f 0%, #1e3a8a 100%); position: relative; overflow: hidden; }
.chip-bp .chip-swatch::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 10px 10px;
}

@media (max-width: 960px) {
  .hero { padding: 56px 0 72px; }
  .hero-visual { min-height: 440px; margin-top: 24px; }
  .badge-1 { top: 4%; left: 2%; }
  .badge-2 { bottom: 4%; right: 2%; }
  .chip-paint { top: 0%; right: 2%; }
  .chip-tile { bottom: 2%; left: 2%; }
  .chip-bp { top: 32%; right: -2%; }
  .trust-pills { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .trust-pills { grid-template-columns: 1fr; } }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-dark);
  color: #f1f4fb;
  border: 0;
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 200px at 50% 100%, rgba(234,88,12,0.18), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.trust-strip > .container { position: relative; }
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: #c1c8d6;
  font-weight: 500;
}
.trust-item svg {
  width: 22px; height: 22px;
  color: var(--brand-bright);
  flex-shrink: 0;
  padding: 6px;
  background: rgba(234,88,12,0.14);
  border-radius: 8px;
  box-sizing: content-box;
}
.trust-item strong { color: #f1f4fb; font-weight: 700; }
@media (max-width: 1000px) { .trust-strip-inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ---------- Section common ---------- */
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 72px 0; } }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 14px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--brand);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.05;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.section-sub {
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 18px);
  margin: 0 0 44px;
  max-width: 720px;
  line-height: 1.6;
}

/* ---------- Services ---------- */
.services { background: var(--bg); }
.service-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  counter-reset: svc;
}
@media (max-width: 960px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  counter-increment: svc;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  /* gradient top border accent */
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-bright) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .25s ease;
}
.service-card::after {
  /* large faint numeral in the corner */
  content: "0" counter(svc);
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  font-style: italic;
  color: var(--brand);
  opacity: 0.10;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  font-variation-settings: "opsz" 144;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  border-color: rgba(234,88,12,0.30);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 0.18; transform: translateY(-2px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(234,88,12,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  margin: 0; font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
  line-height: 1.15;
}
.service-card p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.service-card ul {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px; color: var(--ink-3);
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
}
.service-card ul li {
  position: relative; padding-left: 22px;
}
.service-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.services-fine {
  margin: 32px 0 0; font-size: 14.5px; color: var(--ink-3); text-align: center;
}
.services-fine a { color: var(--brand); font-weight: 700; border-bottom: 1.5px solid currentColor; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-tile {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1c2940;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  isolation: isolate;
}
.gallery-tile:hover { transform: translateY(-5px) rotate(-0.5deg); box-shadow: var(--shadow-xl); }
.gallery-tile::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%),
    radial-gradient(600px 200px at 50% 100%, rgba(234,88,12,0.18), transparent 60%);
  z-index: 1;
}
.gallery-tile::before {
  /* paper grain + scan-lines */
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 7px),
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1.5px);
  background-size: auto, 22px 22px;
  z-index: 1;
  mix-blend-mode: overlay;
}
.gallery-tile.tile-1 { background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #fb923c 100%); }
.gallery-tile.tile-2 { background: linear-gradient(135deg, #134e4a 0%, #115e59 50%, #14b8a6 100%); }
.gallery-tile.tile-3 { background: linear-gradient(135deg, #422006 0%, #92400e 60%, #b45309 100%); }
.gallery-tile.tile-4 { background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #94a3b8 100%); }
.gallery-tile.tile-5 { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #38bdf8 100%); }
.gallery-tile.tile-6 { background: linear-gradient(135deg, #064e3b 0%, #047857 60%, #fbbf24 100%); }
.gallery-tile .tile-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(253,252,249,0.96);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.gallery-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  color: #fff;
  z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
}
.gallery-tile figcaption strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36;
}
.gallery-tile figcaption span { font-size: 12.5px; color: rgba(255,255,255,0.85); }

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 56px 0;
  background:
    radial-gradient(900px 380px at 92% 30%, rgba(234,88,12,0.30), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(30,58,95,0.30), transparent 60%),
    linear-gradient(135deg, #0a0e1a 0%, #131a2a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  /* blueprint dot pattern */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cta-banner > .container { position: relative; }
.cta-banner-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.025em; font-weight: 500; margin: 0 0 6px; line-height: 1.1;
  max-width: 760px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.cta-banner p { margin: 0; color: rgba(255,255,255,0.72); font-size: 15.5px; }
@media (max-width: 700px) { .cta-banner-inner { flex-direction: column; align-items: flex-start; } }

/* ---------- About ---------- */
.about-section { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { position: relative; aspect-ratio: 4 / 5; }
.about-photo-frame {
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  background:
    radial-gradient(800px 400px at 30% 90%, rgba(234,88,12,0.40), transparent 55%),
    radial-gradient(500px 300px at 80% 10%, rgba(13,110,106,0.30), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 20px),
    linear-gradient(170deg, #131a2a 0%, #1f2937 55%, #374151 100%);
  box-shadow: var(--shadow-xl);
  transform: rotate(-1.5deg);
  border: 1px solid rgba(255,255,255,0.06);
}
.about-photo-frame::after {
  /* corner stamp */
  content: "Mike, 2014→";
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.02em;
}
.about-stat-card {
  position: absolute; right: -14px; bottom: 32px;
  background: var(--bg-paper);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: rotate(2deg);
}
.about-stat-card::before {
  content: "";
  position: absolute; top: -8px; left: 30px;
  width: 24px; height: 14px;
  background: rgba(234,88,12,0.55);
  clip-path: polygon(0 100%, 100% 100%, 75% 0, 25% 0);
}
.about-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--brand); line-height: 1;
  font-variation-settings: "opsz" 96;
}
.about-stat-card span { font-size: 13px; color: var(--ink-3); margin-top: 4px; display: block; }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 46px);
  letter-spacing: -0.03em; font-weight: 500;
  margin: 0 0 18px; line-height: 1.05;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.about-copy p { color: var(--ink-2); font-size: 16.5px; margin: 0 0 16px; max-width: 600px; line-height: 1.65; }
.about-creds {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 26px;
}
@media (max-width: 520px) { .about-creds { grid-template-columns: 1fr; } }
.cred {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; flex-direction: column;
  position: relative;
}
.cred::before {
  content: "✓";
  position: absolute; top: 14px; right: 16px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  border-radius: 50%;
  font-size: 12px; font-weight: 800;
  box-shadow: 0 3px 8px rgba(234,88,12,0.30);
}
.cred strong {
  color: var(--ink); font-size: 14.5px; font-weight: 700;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.01em;
}
.cred span { color: var(--ink-3); font-size: 12.5px; margin-top: 2px; }

/* ---------- Service area ---------- */
.area-section { background: var(--bg-cream); }
.area-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-top: 28px;
}
@media (max-width: 880px) { .area-grid { grid-template-columns: 1fr; } }
.area-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
  font-size: 15px; color: var(--ink-2);
}
.area-list li {
  position: relative; padding-left: 22px;
}
.area-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.18);
}
.area-map {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  background:
    linear-gradient(135deg, var(--blueprint) 0%, #2a4a72 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.area-map::before {
  /* blueprint grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 12px 12px, 12px 12px;
}
.area-map .map-circle { border-color: rgba(255,200,150,0.45); }
.area-map .map-c1 { border-color: rgba(255,180,120,0.70); }
.area-map .map-c3 { border-color: rgba(255,200,150,0.28); }
.area-map .map-pin { background: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }
.area-map .map-pin.pin-center { background: var(--brand-bright); border-color: #fff; box-shadow: 0 0 0 6px rgba(234,88,12,0.30), 0 2px 8px rgba(0,0,0,0.40); }
.area-map .map-label { color: rgba(255,255,255,0.85); }
.area-map .map-label span { color: rgba(255,255,255,0.55); }
.map-circle {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(249,115,22,0.32);
}
.map-c1 { width: 28%; height: 28%; border-color: rgba(249,115,22,0.5); }
.map-c2 { width: 58%; height: 58%; }
.map-c3 { width: 88%; height: 88%; border-color: rgba(249,115,22,0.22); }
.map-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(11,18,32,0.25);
}
.map-pin.pin-center {
  width: 18px; height: 18px;
  background: var(--brand);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(249,115,22,0.18), 0 2px 6px rgba(11,18,32,0.3);
}
.map-pin.pin-1 { top: 50%;  left: 50%;  transform: translate(-50%,-50%); display: none; }
.map-pin.pin-2 { top: 32%;  left: 60%; }
.map-pin.pin-3 { top: 36%;  left: 70%; }
.map-pin.pin-4 { top: 70%;  left: 56%; }
.map-pin.pin-5 { top: 52%;  left: 28%; }
.map-pin.pin-6 { top: 22%;  left: 64%; }
.map-pin.pin-7 { top: 60%;  left: 32%; }
.map-label {
  position: absolute; left: 14px; bottom: 12px;
  font-size: 12px; color: var(--ink-3); line-height: 1.35;
}
.map-label span { font-size: 11px; color: var(--muted); }
.area-fine {
  margin: 22px 0 0;
  font-size: 14px; color: var(--ink-3);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }
.testimonial-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}
@media (max-width: 960px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.testimonial::before {
  /* big quotation mark */
  content: "\201C";
  position: absolute; top: 8px; right: 20px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.10;
  font-variation-settings: "opsz" 144;
  pointer-events: none;
}
.testimonial:hover { border-color: rgba(234,88,12,0.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial .stars { display: flex; gap: 2px; color: var(--star); }
.testimonial .stars svg { width: 16px; height: 16px; }
.testimonial blockquote {
  margin: 0;
  color: var(--ink); font-size: 15.5px; line-height: 1.6; flex: 1;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 14;
  position: relative;
  z-index: 1;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  flex-shrink: 0;
}
.t-avatar.avatar-2 { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.t-avatar.avatar-3 { background: linear-gradient(135deg, #16a34a, #15803d); }
.t-avatar.avatar-4 { background: linear-gradient(135deg, #475569, #1e293b); }
.t-avatar.avatar-5 { background: linear-gradient(135deg, #db2777, #9d174d); }
.t-avatar.avatar-6 { background: linear-gradient(135deg, #ca8a04, #854d0e); }
.t-meta { display: flex; flex-direction: column; gap: 1px; }
.t-name { font-weight: 700; font-size: 14.5px; color: var(--ink); letter-spacing: -0.01em; }
.t-role { font-size: 12.5px; color: var(--ink-3); }

.proof-strip {
  margin-top: 32px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proof-strip::before {
  /* decorative wood-rule pattern band */
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
}
@media (max-width: 640px) { .proof-strip { grid-template-columns: 1fr 1fr; } }
.proof-stat { display: flex; flex-direction: column; gap: 6px; position: relative; }
.proof-stat + .proof-stat::before {
  content: "";
  position: absolute; left: -12px; top: 12%; bottom: 12%;
  width: 1px;
  background: var(--rule);
}
@media (max-width: 640px) { .proof-stat + .proof-stat::before { display: none; } }
.proof-stat strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600; color: var(--brand);
  letter-spacing: -0.03em; line-height: 1;
  font-variation-settings: "opsz" 96;
}
.proof-stat span { font-size: 12.5px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.02em; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 32px;
}
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }
.faq details {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.faq details:hover { border-color: rgba(234,88,12,0.20); }
.faq details[open] { border-color: rgba(234,88,12,0.30); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display);
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 24;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px; font-weight: 300; color: var(--brand);
  transition: transform .3s ease;
  line-height: 1;
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-soft);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq details p { margin: 14px 0 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }

/* ---------- Quote form ---------- */
.start {
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(249,115,22,0.12), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}
.start-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 880px) { .start-grid { grid-template-columns: 1fr; } }
.start-copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.025em; font-weight: 800; margin: 0 0 12px; line-height: 1.1;
}
.start-copy p { color: var(--ink-2); font-size: 17px; margin: 0 0 18px; }
.start-bullets {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--ink-2); font-size: 15px;
}
.start-bullets li { position: relative; padding-left: 26px; }
.start-bullets li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / contain no-repeat;
}
.start-call {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}
.start-call-label { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.start-call-num { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); display: block; margin-top: 4px; }
.start-call-hours { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }

.start-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.start-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.start-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .start-form .field-row { grid-template-columns: 1fr; } }
.start-form label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.start-form input,
.start-form select,
.start-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.start-form textarea { resize: vertical; min-height: 84px; }
.start-form input:focus,
.start-form select:focus,
.start-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
}
.hp { position: absolute; left: -9999px; }
.form-fine { font-size: 12.5px; color: var(--ink-3); margin: 12px 0 0; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #b8c0d2;
  padding: 72px 0 28px;
  border-top: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.site-footer > * { position: relative; }
.site-footer .brand-mark {
  background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 60%, var(--brand-dark) 100%);
}
.site-footer .brand-text { color: #fff; }
.site-footer .brand-tail { color: #b8c0d2; }
.footer-grid {
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 32px;
  align-items: start;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin: 14px 0 0; max-width: 340px; font-size: 14px; }
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 540px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-cols h4 {
  color: #fff; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 14px;
}
.footer-cols a {
  display: block; font-size: 14px; color: #b8c0d2; padding: 4px 0;
}
.footer-cols a:hover { color: #fff; }
.footer-cols .hours-line {
  font-size: 13px; color: #8a93a6; margin: 10px 0 0; padding: 0;
}
.footer-base {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  flex-wrap: wrap;
}

/* ---------- Mobile sticky call ---------- */
.mobile-call {
  position: fixed; right: 16px; bottom: 16px;
  background: var(--brand); color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: none;
  align-items: center; gap: 8px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(249,115,22,0.45);
  z-index: 60;
}
.mobile-call svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .mobile-call { display: inline-flex; } }

/* ---------- Subpage hero (service detail) ---------- */
.subhero {
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(249,115,22,0.18), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 56px 0 56px;
}
.subhero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 880px) { .subhero-grid { grid-template-columns: 1fr; } }
.subhero-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3);
  margin: 0 0 14px;
}
.subhero-crumb a { color: var(--brand); font-weight: 600; }
.subhero h1 {
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-weight: 800;
  margin: 0 0 14px;
}
.subhero p.lede { font-size: clamp(16px, 1.5vw, 18px); color: var(--ink-2); margin: 0 0 22px; max-width: 580px; }
.subhero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.subhero-art {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.subhero-art::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
  mix-blend-mode: overlay;
}
.svc-stamp {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(11,18,32,0.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
  min-width: 200px;
  z-index: 2;
}
.svc-stamp strong { display: block; font-size: 16px; }
.svc-stamp span { display: block; font-size: 12px; color: #b8c0d2; margin-top: 2px; }

/* Two-column "what / how" */
.svc-twoup {
  background: #fff;
  border-top: 1px solid var(--line);
}
.svc-twoup-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 800px) { .svc-twoup-grid { grid-template-columns: 1fr; } }
.svc-twoup h2 { font-size: 24px; letter-spacing: -0.02em; margin: 0 0 12px; font-weight: 800; }
.svc-twoup ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; color: var(--ink-2); font-size: 15.5px; }
.svc-twoup ul li { position: relative; padding-left: 28px; }
.svc-twoup ul li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / contain no-repeat;
}
.svc-twoup ol { list-style: none; padding: 0; margin: 0; counter-reset: step; display: flex; flex-direction: column; gap: 14px; }
.svc-twoup ol li {
  counter-increment: step;
  position: relative; padding-left: 44px;
  color: var(--ink-2); font-size: 15.5px;
}
.svc-twoup ol li::before {
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  border-radius: 50%;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 14px rgba(249,115,22,0.30);
}
.svc-twoup ol li strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 16px; }

/* Pricing range strip */
.svc-pricing { background: var(--bg-soft); }
.svc-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 700px) { .svc-pricing-grid { grid-template-columns: 1fr; } }
.svc-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.svc-price-card .label { font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: 0.04em; text-transform: uppercase; }
.svc-price-card .range { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.svc-price-card p { margin: 4px 0 0; color: var(--ink-3); font-size: 14px; line-height: 1.5; }
.svc-pricing-fine { font-size: 13.5px; color: var(--ink-3); margin: 18px 0 0; }

/* Related services strip */
.svc-related { background: #fff; }
.svc-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 760px) { .svc-related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svc-related-grid { grid-template-columns: 1fr; } }
.svc-related-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 14px; color: var(--ink-2); font-weight: 600;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.svc-related-card:hover { background: #fff; border-color: #d8dee8; transform: translateY(-2px); }
.svc-related-card span.arrow { color: var(--brand); font-size: 18px; }

/* Service-card link arrow on homepage */
.service-card .svc-more {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .svc-more::after { content: "\2192"; transition: transform .15s ease; }
.service-card:hover .svc-more::after { transform: translateX(3px); }

/* ---------- Dark mode ---------- */
[data-theme="dark"] {
  --bg: #0b1220;
  --bg-soft: #111a2e;
  --bg-warm: #1a1f2e;
  --bg-dark: #050912;
  --bg-dark-soft: #0b1220;
  --ink: #f1f4fb;
  --ink-2: #c1c8d6;
  --ink-3: #8a93a6;
  --muted: #5b657a;
  --line: #2a3447;
  --line-dark: #1f2a44;
  --brand-soft: rgba(249,115,22,0.14);
}
[data-theme="dark"] body { background: var(--bg); color: var(--ink); }
[data-theme="dark"] .site-header { background: rgba(11,18,32,0.85); border-color: var(--line); }
[data-theme="dark"] .nav-primary a { color: var(--ink-2); }
[data-theme="dark"] .nav-primary a:hover { color: var(--ink); }
[data-theme="dark"] .brand-tail { color: var(--ink-3); }
[data-theme="dark"] .hero {
  background:
    radial-gradient(1100px 480px at 90% -10%, rgba(249,115,22,0.15), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(56,189,248,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
[data-theme="dark"] .eyebrow { background: var(--bg-soft); border-color: var(--line); color: var(--ink-2); }
[data-theme="dark"] .trust-pill,
[data-theme="dark"] .floating-badge,
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial,
[data-theme="dark"] .faq details,
[data-theme="dark"] .start-form,
[data-theme="dark"] .start-call,
[data-theme="dark"] .estimator-card,
[data-theme="dark"] .zip-check,
[data-theme="dark"] .proof-strip,
[data-theme="dark"] .svc-price-card,
[data-theme="dark"] .area-map,
[data-theme="dark"] .cred,
[data-theme="dark"] .svc-related-card,
[data-theme="dark"] .live-ticker,
[data-theme="dark"] .photo-badge,
[data-theme="dark"] .about-stat-card {
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--ink);
}
[data-theme="dark"] .photo-badge strong { color: var(--ink); }
[data-theme="dark"] .photo-badge span { color: var(--ink-3); }
[data-theme="dark"] .trust-strip { background: var(--bg-soft); border-color: var(--line); }
[data-theme="dark"] .services,
[data-theme="dark"] .about-section,
[data-theme="dark"] .faq,
[data-theme="dark"] .testimonials,
[data-theme="dark"] .svc-twoup,
[data-theme="dark"] .svc-related { background: var(--bg); }
[data-theme="dark"] .gallery,
[data-theme="dark"] .area-section,
[data-theme="dark"] .estimator,
[data-theme="dark"] .svc-pricing { background: var(--bg-soft); }
[data-theme="dark"] .faq details[open] { background: var(--bg-dark-soft); border-color: var(--line); }
[data-theme="dark"] .btn-outline { background: var(--bg-soft); color: var(--ink); border-color: var(--line); }
[data-theme="dark"] .btn-outline:hover { border-color: var(--ink-2); }
[data-theme="dark"] .btn-ghost { color: var(--ink); }
[data-theme="dark"] .btn-ghost:hover { background: var(--bg-soft); }
[data-theme="dark"] .start-form input,
[data-theme="dark"] .start-form select,
[data-theme="dark"] .start-form textarea,
[data-theme="dark"] .est-select,
[data-theme="dark"] .zip-input {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--line);
}
[data-theme="dark"] .est-pill { background: var(--bg); color: var(--ink-2); border-color: var(--line); }
[data-theme="dark"] .est-pill:hover { color: var(--ink); border-color: var(--ink-3); }
[data-theme="dark"] .zip-result { background: var(--bg); color: var(--ink-3); }
[data-theme="dark"] .zip-result.ok { background: rgba(22,163,74,0.18); color: #4ade80; }
[data-theme="dark"] .zip-result.no { background: rgba(220,38,38,0.18); color: #fca5a5; }
[data-theme="dark"] .start { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
[data-theme="dark"] .start-form input:focus,
[data-theme="dark"] .start-form select:focus,
[data-theme="dark"] .start-form textarea:focus { box-shadow: 0 0 0 4px rgba(249,115,22,0.20); }
[data-theme="dark"] .subhero { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
[data-theme="dark"] .compare-table,
[data-theme="dark"] .feature { background: var(--bg-soft); border-color: var(--line); }
[data-theme="dark"] .footer-cols a { color: var(--ink-3); }
[data-theme="dark"] .footer-cols a:hover { color: var(--ink); }
[data-theme="dark"] .area-list li { color: var(--ink-2); }
[data-theme="dark"] .map-pin { background: var(--ink); }

/* Theme toggle button */
.theme-toggle {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent; border: 1.5px solid var(--line);
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  margin-left: 8px;
}
.theme-toggle:hover { background: var(--bg-soft); color: var(--ink); border-color: var(--ink-3); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (max-width: 420px) { .theme-toggle { display: none; } }

/* ---------- Before/After gallery slider ---------- */
.gallery-tile.is-slider { cursor: ew-resize; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.gallery-tile.is-slider .ba-before,
.gallery-tile.is-slider .ba-after {
  position: absolute; inset: 0;
  z-index: 1;
}
.gallery-tile.is-slider .ba-after { clip-path: inset(0 50% 0 0); }
.gallery-tile.is-slider .ba-tag-before,
.gallery-tile.is-slider .ba-tag-after {
  position: absolute; top: 14px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(11,18,32,0.65); color: #fff;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.gallery-tile.is-slider .ba-tag-before { left: 14px; }
.gallery-tile.is-slider .ba-tag-after  { right: 14px; }
.gallery-tile.is-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: rgba(255,255,255,0.95);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0,0,0,0.35);
}
.gallery-tile.is-slider .ba-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 5;
  pointer-events: none;
}
.gallery-tile.is-slider .ba-grip svg { width: 22px; height: 22px; }
.gallery-tile.is-slider::after { display: none; }
.gallery-tile.is-slider figcaption { z-index: 6; }

/* Before-state palette: grayscale + desaturated gradient */
.ba-before.before-1 { background: linear-gradient(135deg, #3a3a3a 0%, #5a5a5a 50%, #7a7a7a 100%); }
.ba-after.after-1   { background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #fb923c 100%); }
.ba-before.before-2 { background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 50%, #6a6a6a 100%); }
.ba-after.after-2   { background: linear-gradient(135deg, #134e4a 0%, #115e59 50%, #14b8a6 100%); }
.ba-before.before-3 { background: linear-gradient(135deg, #3d3d3d 0%, #5e5e5e 50%, #7e7e7e 100%); }
.ba-after.after-3   { background: linear-gradient(135deg, #422006 0%, #92400e 60%, #b45309 100%); }

/* ---------- Testimonial mobile carousel + Google badge ---------- */
.t-source {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-3); font-weight: 600;
  margin-top: -6px;
}
.t-source .g-icon {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: conic-gradient(from 0deg, #4285F4 0% 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75% 100%);
  color: #fff; font-weight: 800; font-size: 9px;
  line-height: 1;
  flex-shrink: 0;
}
.t-source .g-icon::before {
  content: "G";
  background: #fff;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 620px) {
  .testimonial-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 4px 14px;
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    padding-left: var(--pad);
    padding-right: var(--pad);
    scroll-padding-left: var(--pad);
    gap: 12px;
  }
  .testimonial-grid::-webkit-scrollbar { display: none; }
  .testimonial { scroll-snap-align: start; }
  .testimonials .section-sub::after {
    content: " · Swipe →";
    color: var(--brand); font-weight: 600;
  }
}

/* ---------- Multi-step quote form ---------- */
.ms-progress { margin-bottom: 22px; }
.ms-progress-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.ms-step-label { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.ms-step-count { font-size: 12.5px; color: var(--brand); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.ms-bar { width: 100%; height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
[data-theme="dark"] .ms-bar { background: var(--bg-dark); }
.ms-bar-fill { height: 100%; background: linear-gradient(90deg, #fb923c, #f97316); transition: width .35s ease; border-radius: 999px; }
.ms-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.ms-step[hidden] { display: none; }
.ms-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 6px;
}
.ms-nav .btn { flex: 1; }
.ms-nav .ms-prev { flex: 0 0 auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.ms-error {
  background: rgba(220,38,38,0.10);
  color: #b91c1c;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}
.ms-error.is-shown { display: block; }
[data-theme="dark"] .ms-error { background: rgba(220,38,38,0.18); color: #fca5a5; }

/* ---------- Open / Closed status badge ---------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  background: rgba(22,163,74,0.12); color: #15803d;
  border: 1px solid rgba(22,163,74,0.22);
  margin-right: 8px;
  letter-spacing: 0;
}
.status-pill.is-closed { background: rgba(220,38,38,0.10); color: #b91c1c; border-color: rgba(220,38,38,0.22); }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  position: relative;
}
.status-pill .status-dot::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%;
  background: currentColor; opacity: 0.35;
  animation: pulse 1.8s ease-out infinite;
}
.status-pill.is-closed .status-dot::after { animation: none; }
.status-detail { font-weight: 500; opacity: 0.85; }
[data-theme="dark"] .status-pill { background: rgba(22,163,74,0.18); color: #4ade80; border-color: rgba(22,163,74,0.32); }
[data-theme="dark"] .status-pill.is-closed { background: rgba(220,38,38,0.18); color: #fca5a5; border-color: rgba(220,38,38,0.32); }

/* ---------- Photo lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(11,18,32,0.85);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: clamp(16px, 4vw, 40px);
  cursor: zoom-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox.is-open { display: flex; }
.lightbox-frame {
  max-width: 960px; width: 100%;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: default;
  animation: lightboxIn .25s ease;
  position: relative;
}
[data-theme="dark"] .lightbox-frame { background: var(--bg-soft); }
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-img {
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
}
.lightbox-body { padding: 22px 28px 26px; }
.lightbox-body h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -0.01em; }
.lightbox-body p { margin: 0; color: var(--ink-3); font-size: 14.5px; }
.lightbox-tag {
  display: inline-block;
  background: var(--brand-soft); color: var(--brand);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.lightbox-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92); color: var(--ink);
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.lightbox-close:hover { background: #fff; }
.lightbox-close svg { width: 18px; height: 18px; }
.gallery-tile:not(.is-slider) { cursor: zoom-in; }

/* ---------- Back-to-top ---------- */
.to-top {
  position: fixed; left: 16px; bottom: 16px;
  width: 44px; height: 44px;
  background: var(--ink); color: #fff;
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 60;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .15s ease;
  pointer-events: none;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--brand); }
.to-top svg { width: 20px; height: 20px; }
[data-theme="dark"] .to-top { background: var(--brand); }
[data-theme="dark"] .to-top:hover { background: var(--brand-dark); }
@media (max-width: 720px) {
  .to-top { left: 12px; bottom: 12px; width: 40px; height: 40px; }
}

/* ---------- Confetti (thanks page) ---------- */
.confetti-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 90;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Estimate calculator ---------- */
.estimator {
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(13,110,106,0.10), transparent 60%),
    radial-gradient(700px 400px at 95% 90%, rgba(234,88,12,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-paper) 100%);
}
.estimator-card {
  margin: 32px auto 0;
  max-width: 920px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
}
.estimator-card::before {
  /* paper-edge tear */
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-bright) 30%, var(--gold) 60%, var(--teal) 100%);
}
@media (max-width: 760px) { .estimator-card { grid-template-columns: 1fr; } }
.estimator-controls { padding: 28px; }
.estimator-result {
  padding: 28px;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(249,115,22,0.28), transparent 60%),
    linear-gradient(160deg, #0b1220 0%, #1c2940 100%);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.est-field { margin-bottom: 18px; }
.est-field:last-of-type { margin-bottom: 0; }
.est-label {
  display: block;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 10px;
}
.est-select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15.5px;
  background: #fff;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235b657a' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.est-select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(249,115,22,0.15); }
.est-pills {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.est-pill {
  border: 1.5px solid var(--line); background: #fff;
  border-radius: 999px; padding: 11px 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.est-pill:hover { border-color: var(--ink-3); color: var(--ink); }
.est-pill[aria-pressed="true"] {
  background: var(--brand); color: #fff; border-color: var(--brand);
  box-shadow: 0 6px 14px rgba(249,115,22,0.30);
}
.est-out-label {
  font-size: 12.5px; color: #b8c0d2;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
}
.est-out-range {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(135deg, #fed7aa 0%, #fb923c 40%, #f97316 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variation-settings: "opsz" 96;
}
.est-out-meta { font-size: 14px; color: #d6dbe6; line-height: 1.55; max-width: 280px; }
.est-out-cta { margin-top: 8px; }
.est-disclaimer { font-size: 12px; color: var(--ink-3); margin: 14px 0 0; text-align: center; }

/* ---------- ZIP service-area checker ---------- */
.zip-check {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-top: 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.zip-check label {
  display: flex; flex-direction: column; gap: 2px;
}
.zip-check label strong { font-size: 14.5px; color: var(--ink); }
.zip-check label span { font-size: 12.5px; color: var(--ink-3); }
.zip-check-row {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
}
.zip-input {
  width: 130px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 16px; letter-spacing: 0.1em;
  text-align: center;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.zip-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(249,115,22,0.15); }
.zip-result {
  font-size: 14px; font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-soft); color: var(--ink-3);
  min-width: 220px;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}
.zip-result.ok { background: rgba(22,163,74,0.12); color: #15803d; }
.zip-result.no { background: rgba(220,38,38,0.10); color: #b91c1c; }
@media (max-width: 540px) {
  .zip-check { grid-template-columns: 1fr; }
  .zip-check-row { grid-template-columns: 1fr 1fr; }
  .zip-input { width: 100%; }
  .zip-result { min-width: 0; }
}

/* ---------- "Last job completed" live ticker ---------- */
.live-ticker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  position: relative;
}
.live-dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--ok); opacity: 0.35;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.7); opacity: 0.45; }
  100% { transform: scale(2.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot::after { animation: none; }
}

/* ---------- Thanks / legal page reuse ---------- */
.thanks-wrap {
  min-height: 70vh;
  display: grid; place-items: center;
  text-align: center; padding: 60px 20px;
}
.thanks-wrap h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.025em; margin: 16px 0 8px; }
.thanks-wrap p { color: var(--ink-3); font-size: 17px; max-width: 520px; margin: 0 auto 22px; }
.thanks-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--brand-soft);
  display: grid; place-items: center;
  margin: 0 auto;
}
.thanks-check svg { width: 32px; height: 32px; color: var(--brand); }

/* tcg-mobile-tap-fix v1 — 2026-05-22 */
@media (max-width: 480px) {
  img, video, iframe, svg { max-width: 100%; height: auto; }
  /* Ensure tappable elements meet 44x44 minimum, except a11y skip-links and decorative icons */
  a:not(.sr-only):not([class*="skip"]):not([aria-hidden="true"]),
  button:not(.sr-only):not([aria-hidden="true"]),
  [role="button"]:not([aria-hidden="true"]),
  input[type="button"], input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* Inline text links inside paragraphs shouldn't inflate line-height */
  p a, li a, .crumb a, .footer-meta a, small a { min-height: 0; min-width: 0; display: inline; }
  /* Tighten phone-style mini buttons */
  .topbar a[href^="tel"], .topbar a[href^="mailto"] { padding: 8px 10px; }
  /* Wrap rigid horizontal grids */
  .grid, [class*="grid"], .row, .flex-row { flex-wrap: wrap; }
}

