:root {
  --bg: #0a0a0c;
  --bg-soft: #13131a;
  --bg-alt: #16161f;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-solid: #1a1a24;
  --ink: #f5f1ea;
  --ink-soft: #e8e3d9;
  --muted: #a0a0ac;
  --muted-dim: #6b6b78;
  --accent: #ff6b2b;
  --accent-dark: #e0551b;
  --accent-soft: rgba(255,107,43,0.16);
  --teal: #2ec4a6;
  --teal-soft: rgba(46,196,166,0.16);
  --gold: #f3b84a;
  --red: #e85c5c;
  --border: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --max: 1120px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(255,107,43,0.25);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

main, header, footer, section {
  display: block;
  width: 100%;
  max-width: 100%;
}

img, svg { max-width: 100%; }

/* Hide script-font text until webfonts are loaded to avoid a font-swap flash. */
html:not(.fonts-loaded) .brand-name,
html:not(.fonts-loaded) h1,
html:not(.fonts-loaded) h2 {
  visibility: hidden;
}

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

/* Script display typography */
h1, h2 {
  font-family: 'Great Vibes', 'Allura', 'Pinyon Script', cursive;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  letter-spacing: -0.005em;
}
h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}

p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: var(--accent); transition: color 0.15s ease; }
a:hover { color: var(--gold); }

em {
  font-style: normal;
  color: var(--accent);
}

.kicker {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10,10,12,0.75);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.05); }

.brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  padding-top: 0.2em;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.site-nav {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.2rem 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: 0.5rem; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.15s var(--ease), background 0.15s ease, color 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.55rem 0.9rem; font-size: 0.88rem; }
.btn-lg { padding: 0.95rem 1.5rem; font-size: 1rem; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,107,43,0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,107,43,0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* Hero — paint-pour background */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  padding: 4rem 0 6rem;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 8% 28%, #ff4e1f 0%, transparent 32%),
    radial-gradient(circle at 20% 55%, #ff8a3a 0%, transparent 28%),
    radial-gradient(circle at 2% 80%, #c8321a 0%, transparent 26%),
    radial-gradient(circle at 82% 18%, #3ee0be 0%, transparent 30%),
    radial-gradient(circle at 95% 45%, #2ec4a6 0%, transparent 32%),
    radial-gradient(circle at 78% 72%, #4aa5e6 0%, transparent 26%),
    radial-gradient(circle at 65% 95%, #1a7f6d 0%, transparent 28%);
  filter: blur(50px) saturate(1.2);
  opacity: 0.9;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at center, transparent 10%, rgba(10,10,12,0.3) 55%, rgba(10,10,12,0.85) 95%),
    linear-gradient(180deg, rgba(10,10,12,0.5), rgba(10,10,12,0.2) 20%, rgba(10,10,12,0.5));
  z-index: -1;
}
.hero-inner { position: relative; z-index: 1; }

.hero h1 {
  color: var(--ink);
  margin: 1.25rem 0 1.4rem;
  max-width: 20ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.hero h1 .hl {
  position: relative;
  color: var(--accent);
  white-space: nowrap;
}
.hero h1 .hl-underline {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.2em;
  width: 96%;
  height: 0.35em;
  color: var(--accent);
  overflow: visible;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 1.4s 0.6s var(--ease) forwards;
  filter: drop-shadow(0 2px 8px rgba(255,107,43,0.5));
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,107,43,0.45);
  border-radius: 999px;
  background: rgba(255,107,43,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 640px;
  color: var(--ink-soft);
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-meta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #67d48a;
  box-shadow: 0 0 0 4px rgba(103,212,138,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(103,212,138,0.25); }
  50% { box-shadow: 0 0 0 9px rgba(103,212,138,0); }
}

/* Sections */
.section { padding: 5.5rem 0; position: relative; background: var(--bg); }
.section-alt { background: var(--bg-soft); }

.section-head { max-width: 720px; margin-bottom: 2.25rem; }
.section-head .section-lede { margin-top: 0.25rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* About — subtle paint accent behind stats */
#about { position: relative; overflow: hidden; }
#about::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,107,43,0.18), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(46,196,166,0.12), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
#about > .container { position: relative; z-index: 1; }

/* Stats */
.stats {
  display: grid;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stats::before {
  content: '';
  position: absolute;
  top: -60%; right: -30%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,43,0.2), transparent 70%);
  pointer-events: none;
}
.stat { display: flex; flex-direction: column; position: relative; }
.stat + .stat { padding-top: 1.25rem; border-top: 1px solid var(--border); }
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-number-sm { font-size: 1.5rem; }
.stat-label {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Services */
.services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.services li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.services li::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.services li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: var(--accent);
  background: rgba(255,107,43,0.04);
}
.services li:hover::after { transform: scaleX(1); }
.services p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.85rem;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}
.service-icon svg { width: 22px; height: 22px; }
.services li:hover .service-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}

/* Gallery */
.section-lede {
  color: var(--muted);
  max-width: 640px;
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.85rem;
}
.gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
  transition-delay: calc(var(--i, 0) * 35ms);
  box-shadow: var(--shadow-sm);
}
.gallery-item.is-visible {
  opacity: 1;
  transform: none;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.gallery-item:hover {
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  cursor: zoom-out;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 560px) {
  .lightbox-img {
    max-width: 94vw;
    max-height: 82vh;
  }
  .lightbox-btn { width: 42px; height: 42px; }
  .lightbox-btn svg { width: 18px; height: 18px; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Areas We Serve */
.areas-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
}
.areas-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}
.areas-list li:hover {
  border-color: var(--accent);
  background: rgba(255,107,43,0.06);
  transform: translateY(-2px);
}
.areas-list li span { font-weight: 500; }
.areas-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1rem 0 0;
}

/* Reviews */
.reviews-embed {
  min-height: 200px;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.reviews-embed iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.reviews-card {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.reviews-card h3 {
  font-size: 1.4rem;
  margin: 0;
}
.reviews-card p {
  max-width: 52ch;
  color: var(--muted);
  margin: 0 0 1rem;
}
.reviews-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  filter: drop-shadow(0 0 16px rgba(243,184,74,0.35));
}

/* CTA band — paint-pour */
.cta-band {
  position: relative;
  padding: 4rem 0;
  color: var(--ink);
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 15% 50%, #ff4e1f 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, #2ec4a6 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, #f3b84a 0%, transparent 35%);
  filter: blur(70px) saturate(1.1);
  opacity: 0.65;
  z-index: -1;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.4), rgba(10,10,12,0.6));
  z-index: -1;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.cta-band h2 { color: var(--ink); margin-bottom: 0.35rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.cta-band p { margin: 0; color: var(--ink-soft); }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-list li:hover { border-color: var(--accent); background: rgba(255,107,43,0.05); }
.contact-list li a { font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.contact-list li a:hover { color: var(--accent); }
.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.estimate-form {
  display: grid;
  gap: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.estimate-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.estimate-form input,
.estimate-form textarea {
  font: inherit;
  font-size: 0.98rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.35);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
}
.estimate-form input::placeholder,
.estimate-form textarea::placeholder { color: var(--muted-dim); }
.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: none;
  background: rgba(0,0,0,0.5);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.18);
}
.estimate-form button { justify-self: start; }
.form-note { margin: 0; font-size: 0.85rem; color: var(--muted); }

.botcheck {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 1px; height: 1px;
  pointer-events: none;
}

.form-success {
  display: grid;
  gap: 1rem;
  text-align: center;
  padding: 1rem 0.5rem;
}
.form-success h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  margin: 0;
}
.form-success p { color: var(--ink-soft); margin: 0; }
.form-success .btn { justify-self: center; }

/* Footer */
.site-footer {
  background: #050507;
  color: var(--muted);
  padding: 2.5rem 0;
  border-top: 2px solid var(--accent);
}
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--accent); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}
.footer-logo {
  width: 52px;
  height: 52px;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-logo svg { width: 100%; height: 100%; display: block; }
.footer-text p { margin: 0.2rem 0; font-size: 0.9rem; }

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .gallery-item { opacity: 1; transform: none; }
  .hl-underline { stroke-dashoffset: 0 !important; }
}

/* Responsive */
@media (max-width: 860px) {
  .grid-2, .contact-inner, .cta-band-inner { grid-template-columns: 1fr; }
  .grid-2 { gap: 2rem; }
  .contact-inner { gap: 2rem; }
  .hero { padding: 5rem 0 4.5rem; }
  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 1.75rem; }
  .stats { padding: 1.5rem; }
  .stats::before { width: 180px; height: 180px; }
  .cta-band { padding: 3rem 0; }
  .cta-band-inner { gap: 1.25rem; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(10,10,12,0.98);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.2s ease, visibility 0.25s;
    box-shadow: var(--shadow-md);
  }
  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    border-top: 1px solid var(--border);
    min-height: 44px;
  }
  .site-nav a::after { display: none; }
  .site-nav a:first-child { border-top: none; }

  .header-cta .header-cta-label { display: none; }
  .header-cta {
    padding: 0;
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 10px;
  }
  .btn-icon { width: 18px; height: 18px; }

  .brand-name { font-size: 1.9rem; }
  .brand-mark { width: 46px; height: 46px; }
}

@media (max-width: 860px) {
  .container { padding: 0 1.5rem; }
}

@media (max-width: 560px) {
  .container { padding: 0 1.15rem; }
  .hero { padding: 4rem 0 4rem; }
  .lede { font-size: 1rem; }
  .hero-actions { gap: 0.6rem; width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .eyebrow {
    font-size: 0.68rem;
    padding: 0.35rem 0.8rem;
    letter-spacing: 0.16em;
  }
  .hero-meta { font-size: 0.82rem; }

  .brand-name { font-size: 1.5rem; }
  .brand-mark { width: 42px; height: 42px; }
  .header-inner { gap: 0.5rem; padding-top: 0.65rem; padding-bottom: 0.65rem; }
  .site-nav { top: 60px; }

  .section { padding: 3rem 0; }

  .services { gap: 0.75rem; grid-template-columns: 1fr; }
  .services li { padding: 1.25rem; }

  .gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.5rem; }

  .stat-number { font-size: 2rem; }
  .stat-number-sm { font-size: 1.25rem; }

  .cta-band .btn { width: 100%; justify-content: center; }

  .estimate-form { padding: 1.25rem; }
  .estimate-form button { width: 100%; justify-content: center; }

  .contact-list li { padding: 0.75rem 0.9rem; }

  .footer-inner { gap: 1rem; }
  .footer-text p { font-size: 0.85rem; }

  .btn { min-height: 44px; }
  .site-nav a { min-height: 48px; }
}

@media (max-width: 380px) {
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 1.3rem; }
}
