/* ═══════════════════════════════════════════════════════════════════
   GILQUES PAINTING — Design System
   Irving, TX · DFW Metro · 35+ Years · Interior · Exterior · Cabinets
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --bg: #1A1A1F;
  --bg-1: #20202A;
  --bg-2: #272731;
  --panel: #2C2C36;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.18);

  /* Text */
  --text: #FFFFFF;
  --text-soft: rgba(255,255,255,0.76);
  --muted: rgba(255,255,255,0.56);
  --muted-soft: rgba(255,255,255,0.36);

  /* Brand orange */
  --orange: #F37021;
  --orange-bright: #FF8a3c;
  --orange-deep: #D45A11;
  --orange-soft: rgba(243,112,33,0.16);
  --orange-glow: rgba(243,112,33,0.32);

  /* Silver accent (from logo brush) */
  --silver: #C7CDD2;
  --silver-soft: rgba(199,205,210,0.14);

  /* Light surfaces */
  --paper: #FAF7F1;
  --paper-warm: #F2EDDF;
  --paper-line: rgba(0,0,0,0.10);
  --paper-ink: #1A1A1F;
  --paper-muted: rgba(26,26,31,0.66);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15.5px;
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  body { overflow-x: visible; }
  html { overflow-x: hidden; }
}
::selection { background: var(--orange); color: #fff; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--text);
}
.serif {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}
a { color: inherit; text-decoration: none; transition: color 0.18s, opacity 0.18s; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-tight { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ═══════ ANNOUNCE ═══════ */
.announce {
  background: #0E0E14;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 9px 0;
}
.announce-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.announce-left { display: inline-flex; gap: 22px; flex-wrap: nowrap; }
.announce-left a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.92); }
.announce-left a:hover { color: var(--orange-bright); }
.announce svg { width: 12px; height: 12px; color: var(--orange); }
.announce-right { color: var(--orange); display: inline-flex; align-items: center; gap: 10px; }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange-soft); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.3); } }

/* ═══════ NAV ═══════ */
.nav-wrap {
  position: sticky; top: 0; z-index: 60;
  background: rgba(26,26,31,0.92);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; display: block; }
.nav-links { display: inline-flex; gap: 36px; justify-content: center; }
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--text-soft);
  position: relative; padding: 4px 0;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }
.nav-link.active::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--orange); }
.nav-right { display: inline-flex; align-items: center; gap: 14px; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  border: none; border-radius: 100px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-lg { padding: 16px 26px; font-size: 13px; }
.btn-xl { padding: 18px 30px; font-size: 13.5px; gap: 12px; }
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 28px rgba(243,112,33,0.32);
}
.btn-orange:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(243,112,33,0.42);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn svg { width: 14px; height: 14px; }
.burger {
  display: none;
  background: transparent; border: 1px solid var(--line-strong);
  color: var(--text); width: 42px; height: 42px;
  border-radius: 8px; cursor: pointer; align-items: center; justify-content: center;
}
.burger svg { width: 20px; height: 20px; }
.burger:hover { border-color: var(--orange); color: var(--orange); }

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 84%; max-width: 360px;
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 99;
  padding: 80px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  display: flex; flex-direction: column; gap: 20px;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line-strong);
  color: var(--text); border-radius: 8px; cursor: pointer; font-size: 18px;
}
.drawer a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.drawer-phone { margin-top: 12px; color: var(--orange) !important; font-size: 22px !important; }
.drawer-cta { margin-top: 14px; width: 100%; }

/* ═══════ SECTION HELPERS ═══════ */
.sec { padding: 110px 0; position: relative; overflow: hidden; }
.sec-tight { padding: 72px 0; }
.sec-bg { background: var(--bg); }
.sec-bg-1 { background: var(--bg-1); }
.sec-paper { background: var(--paper); color: var(--paper-ink); }
.sec-paper h1, .sec-paper h2, .sec-paper h3, .sec-paper h4 { color: var(--paper-ink); }
.sec-paper .sec-head p { color: var(--paper-muted); }

.sec-head { max-width: 820px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { font-size: 16.5px; line-height: 1.7; color: var(--text-soft); margin-top: 18px; max-width: 660px; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 3.2px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--silver); }
.eyebrow.silver { color: var(--silver); }
.eyebrow.silver::before { background: var(--orange); }
.eyebrow.center { justify-content: center; }
.sec-paper .eyebrow { color: var(--orange-deep); }

.h1 { font-size: clamp(48px, 7vw, 110px); line-height: 1; letter-spacing: -0.025em; }
.h2 { font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -0.022em; }
.h3 { font-size: clamp(26px, 3vw, 38px); line-height: 1.06; }

/* ═══════ PAGE HERO (inner pages) ═══════ */
.page-hero {
  background: var(--bg-1);
  padding: 130px 0 100px;
  min-height: 58vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ''; position: absolute;
  top: -180px; right: -200px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  pointer-events: none; filter: blur(40px);
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -180px; left: -140px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--silver-soft) 0%, transparent 60%);
  pointer-events: none; filter: blur(40px);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 960px; }
.breadcrumb { font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; font-weight: 700; }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { color: var(--orange-bright); }
.breadcrumb span { margin: 0 10px; color: var(--muted); }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1;
}
.page-hero h1 .serif { color: var(--orange); }
.page-hero-sub {
  font-size: 17px; line-height: 1.72;
  color: var(--text-soft);
  margin-top: 24px;
  max-width: 680px;
}

/* ═══════ HOMEPAGE HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--text);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(0.66) saturate(1.06) contrast(1.04);
  animation: heroPan 24s ease-in-out infinite alternate;
}
@keyframes heroPan { 0% { transform: scale(1.05) translate(0, 0); } 100% { transform: scale(1.10) translate(-1.5%, -1%); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(26,26,31,0.42) 0%, rgba(26,26,31,0.10) 30%, rgba(26,26,31,0.84) 100%),
    radial-gradient(circle at 30% 40%, rgba(243,112,33,0.14) 0%, transparent 55%);
}
.hero-inner {
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 28px 110px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,0.55));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 16px 9px 11px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(54px, 8vw, 128px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .serif { color: var(--orange); }
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,0.96);
  max-width: 720px;
  margin-bottom: 38px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-cta-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.hero-stat {
  background: rgba(26,26,31,0.82);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 20px 22px;
}
.hero-stat .n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1; color: var(--orange);
  font-weight: 700; letter-spacing: -0.015em;
}
.hero-stat .l {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* ═══════ GOOGLE REVIEWS BAND ═══════ */
.grev-band { background: var(--paper); color: var(--paper-ink); padding: 56px 0 60px; border-bottom: 1px solid var(--paper-line); }
.grev-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.grev-head-left { display: inline-flex; align-items: center; gap: 18px; }
.grev-google { width: 42px; height: 42px; flex-shrink: 0; }
.grev-rating-block { display: flex; flex-direction: column; gap: 4px; }
.grev-top { display: inline-flex; align-items: center; gap: 10px; }
.grev-num { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--paper-ink); line-height: 1; }
.grev-stars { display: inline-flex; gap: 2px; color: #FBBC05; }
.grev-stars svg { width: 20px; height: 20px; fill: currentColor; }
.grev-meta { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--paper-muted); }
.grev-meta a { color: var(--orange-deep); text-decoration: underline; text-decoration-color: rgba(212,90,17,0.4); text-underline-offset: 2px; }
.grev-meta a:hover { color: var(--orange); }
.grev-write-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; background: #fff;
  border: 1.5px solid var(--paper-line); border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700;
  color: var(--paper-ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.grev-write-btn:hover { border-color: var(--orange); box-shadow: 0 8px 22px rgba(243,112,33,0.20); transform: translateY(-1px); }
.grev-write-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.grev-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.grev-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}


  to   { transform: translateX(calc(-50% - 8px)); }
}
.grev-card {
  flex-shrink: 0;
  width: 360px;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 14px;
  padding: 22px 22px 22px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.grev-card:hover { border-color: rgba(0,0,0,0.20); box-shadow: 0 14px 32px rgba(30,38,46,0.10); }
.grev-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.grev-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.grev-card-meta { flex: 1; min-width: 0; }
.grev-card-name { font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--paper-ink); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.grev-card-when { font-size: 12px; font-weight: 500; color: var(--paper-muted); margin-top: 3px; }
.grev-g-mini { width: 16px; height: 16px; flex-shrink: 0; }
.grev-card-stars { display: inline-flex; align-items: center; gap: 3px; margin-bottom: 12px; color: #FBBC05; }
.grev-card-stars svg { width: 16px; height: 16px; fill: currentColor; }
.grev-card-text { font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.6; color: rgba(26,26,31,0.86); flex: 1; }
.grev-controls { display: none; }
.grev-arrow {
  width: 38px; height: 38px;
  border-radius: 50%; background: #fff;
  border: 1.5px solid var(--paper-line);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--paper-ink);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.grev-arrow:hover { border-color: var(--orange); color: var(--orange-deep); background: rgba(243,112,33,0.06); }
.grev-arrow svg { width: 16px; height: 16px; }
.grev-dots { display: inline-flex; gap: 8px; }
.grev-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.18); border: none; cursor: pointer; transition: background 0.25s, width 0.25s; padding: 0; }
.grev-dot.active { background: var(--orange); width: 28px; border-radius: 4px; }

/* ═══════ SERVICES BENTO (4 cards) ═══════ */
.svc-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}
.svc-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.32s, box-shadow 0.32s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(0,0,0,0.55); }
.svc-card-bg { position: absolute; inset: 0; z-index: -2; }
.svc-card-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: brightness(0.64) saturate(1.10);
}
.svc-card:hover .svc-card-bg img { transform: scale(1.06); filter: brightness(0.76) saturate(1.16); }
.svc-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 32%, rgba(26,26,31,0.92) 100%);
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 1;
  background: var(--orange);
}
.svc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 28px; }
.svc-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 14px;
}
.svc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 700;
  line-height: 1.02; letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 10px;
}
.svc-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.84);
  max-width: 380px;
}
.svc-arrow {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all 0.3s;
}
.svc-arrow svg { width: 16px; height: 16px; }
.svc-card:hover .svc-arrow { background: var(--orange); border-color: var(--orange); transform: rotate(-45deg); }

.svc-card.s-interior { grid-column: span 4; grid-row: span 2; }
.svc-card.s-interior .svc-name { font-size: 48px; line-height: 0.96; }
.svc-card.s-interior .svc-desc { font-size: 15px; max-width: 480px; }
.svc-card.s-exterior { grid-column: span 2; }
.svc-card.s-cabinets { grid-column: span 3; }
.svc-card.s-commercial { grid-column: span 3; }

/* ═══════ FEATURED PROJECT ═══════ */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 32px 72px rgba(0,0,0,0.5);
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo .tag {
  position: absolute; top: 22px; left: 22px;
  background: rgba(26,26,31,0.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--orange);
}
.feature-info h2 { margin-bottom: 22px; }
.feature-info p { font-size: 16px; line-height: 1.75; color: var(--text-soft); margin-bottom: 20px; }
.feature-info p strong { color: var(--text); font-weight: 600; }
.feature-specs { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-spec .k { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.feature-spec .v { font-family: 'Space Grotesk', sans-serif; font-size: 20px; line-height: 1.1; color: var(--text); font-weight: 700; }

/* ═══════ GALLERY ═══════ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.gal-tile {
  position: relative; overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.32s, box-shadow 0.32s;
}
.gal-tile:hover { transform: translateY(-3px); box-shadow: 0 28px 56px rgba(0,0,0,0.5); }
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, filter 0.4s; }
.gal-tile:hover img { transform: scale(1.06); filter: saturate(1.12); }
.gal-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(26,26,31,0.62)); pointer-events: none; }
.gal-cap { position: absolute; bottom: 14px; left: 16px; right: 16px; z-index: 2; }
.gal-cap .e { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-bright); margin-bottom: 4px; }
.gal-cap .h { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -0.015em; color: var(--text); line-height: 1.15; }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.row-span-2 { grid-row: span 2; }

/* ═══════ STATS BAND ═══════ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.stat { background: var(--bg-1); padding: 38px 28px 32px; text-align: center; }
.stat .n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1; color: var(--orange);
  font-weight: 700; letter-spacing: -0.015em;
}
.stat .l { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ═══════ PROCESS ═══════ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg-1); border-radius: 16px; overflow: hidden;
}
.process-step {
  padding: 36px 30px 38px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.25s;
}
.process-step:last-child { border-right: 0; }
.process-step:hover { background: var(--bg-2); }
.process-num { font-family: 'Space Grotesk', sans-serif; font-size: 56px; font-weight: 700; line-height: 0.9; color: var(--orange); margin-bottom: 22px; letter-spacing: -0.025em; }
.process-step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; line-height: 1.04; margin-bottom: 14px; letter-spacing: -0.015em; }
.process-step p { font-size: 14.5px; line-height: 1.66; color: var(--text-soft); }

/* ═══════ AREAS GRID ═══════ */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-pill {
  padding: 22px 22px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  transition: transform 0.2s, border-left-color 0.2s, background 0.2s;
}
.area-pill:hover { transform: translateY(-3px); border-left-color: var(--silver); background: var(--bg-2); }
.area-pill .n { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.015em; color: var(--text); margin-bottom: 4px; }
.area-pill .sub { font-size: 11.5px; font-weight: 600; letter-spacing: 0.6px; color: var(--muted); }
.area-pill.flagship {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-color: var(--orange);
}
.area-pill.flagship .n { color: #fff; }
.area-pill.flagship .sub { color: rgba(255,255,255,0.88); font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }

/* ═══════ FAQ ═══════ */
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item { background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item.open { border-color: var(--orange); box-shadow: 0 18px 36px rgba(243,112,33,0.10); }
.faq-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; background: transparent; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--text); text-align: left; line-height: 1.3;
}
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-soft); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; transition: background 0.3s, transform 0.3s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; width: 12px; height: 2px; background: var(--orange); transition: transform 0.3s, background 0.3s; }
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon { background: var(--orange); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(0deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-body { max-height: 600px; }
.faq-body-inner { padding: 0 26px 24px; font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.72; color: var(--text-soft); }
.faq-body-inner strong { color: var(--text); }

/* ═══════ FINAL CTA ═══════ */
.final-cta { position: relative; padding: 120px 0; text-align: center; background: var(--bg); overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 1200px; height: 700px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 40% 50% at 30% 50%, var(--orange-glow) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 50%, var(--silver-soft) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; padding: 0 28px; }
.final-cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(46px, 6vw, 92px); font-weight: 700; line-height: 1.02; letter-spacing: -0.022em; margin-bottom: 22px; }
.final-cta h2 .serif { color: var(--orange); }
.final-cta p { font-size: 17px; line-height: 1.7; color: var(--text-soft); margin-bottom: 36px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ═══════ FOOTER ═══════ */
.footer { background: #0E0E14; border-top: 1px solid var(--line); padding: 80px 0 30px; color: var(--text-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 80px; width: auto; }
.footer-about { margin-top: 20px; font-size: 14px; line-height: 1.7; color: var(--text-soft); max-width: 320px; }
.footer-heading { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.4px; color: var(--text); margin-bottom: 18px; }
.footer-heading.orange { color: var(--orange); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: var(--text-soft); }
.footer-links a:hover { color: var(--orange-bright); }
.footer-contact { display: flex; flex-direction: column; gap: 18px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item .l { font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted-soft); margin-bottom: 4px; }
.footer-contact-item .v { font-size: 14.5px; color: var(--text); }
.footer-contact-item .v a { color: var(--text); }
.footer-contact-item .v a:hover { color: var(--orange-bright); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--muted-soft); letter-spacing: 0.4px; }

/* ═══════ SOCIAL ICONS ═══════ */
.socials { display: inline-flex; align-items: center; gap: 8px; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.social svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.social:hover { transform: translateY(-2px); }
.social.instagram:hover { background: linear-gradient(45deg,#F58529 0%,#DD2A7B 50%,#8134AF 100%); color: #fff; border-color: transparent; box-shadow: 0 10px 22px rgba(221,42,123,0.32); }
.social.tiktok:hover    { background: #000; color: #fff; border-color: #fff; box-shadow: 0 10px 22px rgba(255,255,255,0.18); }
.social.google:hover    { background: #fff; color: var(--bg); border-color: #fff; box-shadow: 0 10px 22px rgba(255,255,255,0.18); }
.social.google svg { fill: none; }  /* Google G uses multi-color paths, not currentColor */

/* Nav variant — slightly more compact, on dark */
.nav-socials .social { width: 34px; height: 34px; }
.nav-socials .social svg { width: 14px; height: 14px; }

/* Footer "find us online" row */
.footer-social-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; flex-wrap: wrap;
  margin: 0 0 26px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.footer-social-label {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.footer-social-label .accent { color: var(--orange); margin-right: 8px; }

/* Drawer socials */
.drawer-socials {
  display: flex; gap: 10px; justify-content: center;
  padding: 20px 0 6px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.drawer .social { width: 44px; height: 44px; }
.drawer .social svg { width: 18px; height: 18px; }

@media (max-width: 1080px) {
  .nav-socials { display: none; }
}
@media (max-width: 720px) {
  .footer-social-row { flex-direction: column; gap: 14px; padding: 18px 0; }
}

/* ═══════ FORMS ═══════ */
.form-card { background: var(--bg-1); border: 1px solid var(--line); border-radius: 16px; padding: 44px 40px; }
.form-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.form-card .sub { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { width: 100%; margin-bottom: 14px; }
.form-group label { font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }

.info-card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px; }
.info-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.info-card .info-sub { font-size: 14px; line-height: 1.6; color: var(--text-soft); margin-bottom: 26px; }
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-item { display: flex; gap: 14px; padding: 16px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px; }
.info-icon { width: 38px; height: 38px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.info-icon svg { width: 18px; height: 18px; }
.info-icon.silver { background: var(--silver); color: var(--bg); }
.info-l { font-size: 10.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.info-v { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; color: var(--text); }
.info-v a { color: var(--text); }
.info-v a:hover { color: var(--orange-bright); }

/* ═══════ SERVICE PAGE ROWS ═══════ */
.svc-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; padding: 100px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.svc-row:last-child { border-bottom: 0; }
.svc-row.reverse { grid-template-columns: 1.1fr 1fr; }
.svc-row.reverse .svc-info { order: 2; }
.svc-row.reverse .svc-visual { order: 1; }
.svc-info h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(38px, 5vw, 72px); font-weight: 700; line-height: 1.02; letter-spacing: -0.022em; margin-bottom: 22px; }
.svc-info h2 .serif { color: var(--orange); }
.svc-info p { font-size: 16px; line-height: 1.74; color: var(--text-soft); margin-bottom: 18px; }
.svc-info p strong { color: var(--text); }
.svc-checklist { list-style: none; padding: 0; margin: 24px 0 30px; }
.svc-checklist li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; color: var(--text-soft); }
.svc-checklist li:last-child { border-bottom: 0; }
.svc-checklist li strong { color: var(--text); font-weight: 600; }
.svc-checklist svg { width: 18px; height: 18px; color: var(--orange); }
.svc-photos { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; gap: 12px; }
.svc-photo { position: relative; border-radius: 14px; overflow: hidden; transition: transform 0.32s, box-shadow 0.32s; }
.svc-photo:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.svc-photo:hover img { transform: scale(1.06); }
.svc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(26,26,31,0.62) 100%); pointer-events: none; }
.svc-photo .cap { position: absolute; bottom: 14px; left: 16px; right: 16px; z-index: 2; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); }
.svc-photo.row-span-2 { grid-row: span 2; }

/* ═══════ MOBILE STICKY CTA ═══════ */
.mobile-sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: env(safe-area-inset-bottom, 0);
  z-index: 90;
  display: none;
  background: rgba(14,14,20,0.96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s ease;
  will-change: transform;
}
.mobile-sticky-cta.show { transform: translate3d(0, 0, 0); }
.mobile-sticky-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); }
.mcta-btn { flex: 1; padding: 16px 8px; font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.mcta-btn svg { width: 16px; height: 16px; }
.mcta-call  { background: var(--bg); color: var(--text); }
.mcta-quote { background: var(--orange); color: #fff; border-left: 1px solid var(--line); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .container, .container-tight { padding: 0 22px; }
  .sec { padding: 80px 0; }
  .svc-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .svc-card.s-interior { grid-column: span 2; grid-row: span 2; }
  .svc-card.s-exterior, .svc-card.s-cabinets, .svc-card.s-commercial { grid-column: span 1; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature-photo { aspect-ratio: 4/5; max-width: 560px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: 0; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .svc-row, .svc-row.reverse { grid-template-columns: 1fr; gap: 40px; padding: 72px 0; }
  .svc-row.reverse .svc-info { order: 2; }
  .svc-row.reverse .svc-visual { order: 1; }
  .grev-card { flex: 0 0 calc((100% - 16px) / 2); }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .span-3, .span-4 { grid-column: span 2; }
}

@media (max-width: 720px) {
  .announce { padding: 8px 0; font-size: 10px; letter-spacing: 1.2px; }
  .announce-inner { justify-content: center; gap: 12px; }
  .announce-left { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .announce-left a[href^="mailto"] { display: none; }
  .announce-right { display: none; }
  .nav { padding: 12px 0; gap: 12px; grid-template-columns: 1fr auto; }
  .brand img { height: 44px; }
  .nav-right .btn:not(.burger) { display: none; }
  .sec { padding: 48px 0; }
  .sec-tight { padding: 32px 0; }
  .sec-head { margin-bottom: 24px; }
  .h1 { font-size: 44px; }
  .h2 { font-size: 36px; }
  .h3 { font-size: 24px; }

  /* HERO mobile */
  .hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; }
  .hero-inner {
    padding: 22px 20px 28px;
    width: 100%; max-width: 100%;
    overflow-wrap: break-word; word-wrap: break-word;
  }
  .hero-logo { max-width: 240px; margin: 0 auto 22px; }
  .hero-eyebrow { font-size: 9.5px; letter-spacing: 1.6px; padding: 6px 13px 6px 9px; margin-bottom: 18px; gap: 9px; }
  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1.0; margin-bottom: 16px; letter-spacing: -0.02em;
  }
  .hero-sub { font-size: 14.5px; line-height: 1.55; margin: 0 auto 26px; max-width: 100%; overflow-wrap: break-word; }
  .hero-cta-row { width: 100%; max-width: 380px; flex-direction: row; gap: 9px; margin: 0 auto; }
  .hero-cta-row .btn { flex: 1; min-width: 0; padding: 14px 6px; font-size: 11.5px; letter-spacing: 0.9px; }
  .hero-cta-row .btn svg { display: none; }
  .hero-stats { display: none; }

  /* Google reviews mobile */
  .grev-band { padding: 32px 0 36px; }
  .grev-head { gap: 14px; margin-bottom: 22px; flex-direction: column; align-items: flex-start; }
  .grev-google { width: 34px; height: 34px; }
  .grev-num { font-size: 22px; }
  .grev-stars svg { width: 16px; height: 16px; }
  .grev-meta { font-size: 11.5px; }
  .grev-write-btn { padding: 10px 16px; font-size: 12px; gap: 8px; align-self: stretch; justify-content: center; }
  .grev-card { flex: 0 0 100%; padding: 18px 18px 16px; }
  .grev-card-text { font-size: 13.5px; }
  .grev-card-when { font-size: 11px; }
  .grev-controls { margin-top: 16px; gap: 14px; }

  /* Services */
  .svc-bento { grid-template-columns: 1fr; grid-auto-rows: 260px; gap: 10px; }
  .svc-card.s-interior, .svc-card.s-exterior, .svc-card.s-cabinets, .svc-card.s-commercial { grid-column: span 1; grid-row: span 1; }
  .svc-card.s-interior .svc-name { font-size: 32px; }
  .svc-name { font-size: 26px; }
  .svc-content { padding: 22px 22px; }

  /* Feature */
  .feature-photo { aspect-ratio: 4/5; }
  .feature-specs { grid-template-columns: 1fr; gap: 14px; padding-top: 18px; margin-top: 18px; }

  /* Stats */
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 16px; }
  .stat .n { font-size: 32px; }
  .stat .l { font-size: 10px; letter-spacing: 1.4px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 22px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-num { font-size: 40px; margin-bottom: 10px; }
  .process-step h3 { font-size: 20px; margin-bottom: 8px; }
  .process-step p { font-size: 13.5px; }

  /* Areas */
  .area-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .area-pill { padding: 14px 14px; border-left-width: 2px; }
  .area-pill .n { font-size: 16px; }
  .area-pill .sub { font-size: 10px; }

  /* Gallery */
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 10px; }
  .gal-tile { aspect-ratio: 4/3; }
  .gal-tile img { object-fit: cover; }
  .span-2 { grid-column: span 1; }
  .span-3, .span-4 { grid-column: span 2; aspect-ratio: 16/10; }
  .row-span-2 { grid-row: auto; }
  .gal-tile:nth-child(n+12) { display: none; }
  .gal-cap .h { font-size: 12px; }
  .gal-cap .e { font-size: 8.5px; letter-spacing: 1.1px; }

  /* FAQ */
  .faq-trigger { padding: 16px 18px; font-size: 15px; }
  .faq-body-inner { padding: 0 18px 18px; font-size: 14px; }

  /* Final CTA */
  .final-cta { padding: 60px 0; }
  .final-cta p { font-size: 15px; }

  /* Footer */
  .footer { padding: 50px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-brand img { height: 64px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Form */
  .form-card { padding: 28px 22px; }
  .form-card h2 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-row .form-group { margin-bottom: 14px; }

  /* Service rows */
  .svc-row, .svc-row.reverse { padding: 44px 0; }
  .svc-info h2 { font-size: 34px; }
  .svc-photos { grid-auto-rows: 160px; gap: 8px; }

  /* Page hero */
  .page-hero { padding: 44px 0 36px; min-height: 0; display: block; }
  .page-hero h1 { font-size: 42px; }
  .page-hero-sub { font-size: 14.5px; margin-top: 16px; }
  .breadcrumb { font-size: 10px; margin-bottom: 14px; }

  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 60px; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}


/* Hero "Best of 2026" award pill */
.hero-award-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(251,188,5,0.18) 0%, rgba(243,112,33,0.18) 100%);
  border: 1px solid rgba(251,188,5,0.45);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #FBBC05;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.hero-award-pill svg { width: 13px; height: 13px; }
@media (max-width: 720px) {
  .hero-award-pill { font-size: 9.5px; padding: 6px 12px; letter-spacing: 1.2px; }
}


/* hero-inner padding-bottom fix — keeps CTA buttons clear of stats bar */
.hero-inner { padding-bottom: 150px !important; }
@media (max-width: 720px) { .hero-inner { padding-bottom: 32px !important; } }

/* === NAV SPACING POLISH (6 nav links now) === */
.nav { gap: 18px; }
.nav-links { gap: 24px; }
.nav-link { white-space: nowrap; font-size: 12px; letter-spacing: 1.4px; }
.nav-right { gap: 10px; }
.nav-right .btn { padding: 11px 16px; font-size: 11.5px; letter-spacing: 1.1px; }
.nav-right .btn svg { width: 14px; height: 14px; }
@media (max-width: 1280px) {
  .nav-socials { display: none; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 11.5px; letter-spacing: 1.2px; }
}
@media (max-width: 1100px) {
  .nav-right .btn-ghost { display: none; }
  .nav-links { gap: 18px; }
}


/* gallery photo-fit tuning */
.gal-tile img { object-position: center 35%; }
.gal-tile.row-span-2 img { object-position: center 45%; }
@media (max-width: 1080px) {
  .gal-grid { grid-auto-rows: 220px; }
}
@media (max-width: 720px) {
  .gal-grid { grid-auto-rows: auto; }
  .gal-tile { aspect-ratio: 1/1; }
  .gal-tile.span-3 { aspect-ratio: 16/10; }
  .gal-tile.row-span-2 { aspect-ratio: 4/5; grid-row: auto; }
}


/* === MOBILE CONDENSATION (≤ 720px) === */
@media (max-width: 720px) {
  /* General section padding tightened */
  .sec { padding: 44px 0 !important; }
  .sec-tight { padding: 28px 0 !important; }
  .sec-head { margin-bottom: 22px; }
  .sec-head p { font-size: 14px; line-height: 1.55; }
  .h2 { font-size: 28px !important; line-height: 1.08 !important; margin-bottom: 8px !important; }

  /* Gallery: show only 6 tiles on mobile, stack tighter */
  .gal-grid { grid-template-columns: 1fr !important; gap: 8px; }
  .gal-tile { aspect-ratio: 16/11 !important; border-radius: 10px; }
  .gal-tile.row-span-2 { aspect-ratio: 16/11 !important; grid-row: auto; }
  .gal-tile.span-3 { grid-column: span 1 !important; aspect-ratio: 16/11 !important; }
  .gal-tile.span-2 { grid-column: span 1 !important; }
  .gal-tile:nth-child(n+7) { display: none !important; }
  .gal-cap .h { font-size: 13px; }
  .gal-cap .e { font-size: 9px; }

  /* Featured Project: hide on mobile (redundant with services + gallery) */
  .sec-bg .container > .feat-row { display: none !important; }

  /* Reviews marquee: tighter padding */
  .grev-band { padding: 28px 0 36px !important; }
  .grev-head { margin-bottom: 16px !important; }
  /* Mobile reviews: horizontal 1-per-view carousel (click-through + auto-loop handled by JS) */
  .grev-card { width: 100% !important; max-width: calc(100vw - 56px) !important; padding: 16px 16px 14px !important; }
  .grev-card-text { font-size: 13.5px !important; line-height: 1.5 !important; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .grev-card-head { margin-bottom: 8px !important; }
  .grev-avatar { width: 34px !important; height: 34px !important; font-size: 14px !important; }
  .grev-card-name { font-size: 14px !important; }
  .grev-card-when { font-size: 11px !important; }
  .grev-controls { display: flex !important; justify-content: center; align-items: center; gap: 12px; margin-top: 16px; }

  /* Services bento: tighter padding */
  .svc-bento { gap: 10px !important; }
  .svc-card { padding: 22px 20px !important; min-height: 320px !important; }
  .svc-card .svc-desc { font-size: 13px !important; line-height: 1.5 !important; }

  /* Award band: more compact */
  .award-band { padding: 40px 0 !important; }
  .award-h { font-size: 26px !important; line-height: 1.08 !important; }
  .award-sub { font-size: 14px !important; margin-bottom: 18px !important; }
  .award-cert { max-width: 280px !important; aspect-ratio: 3/4 !important; margin: 0 auto 20px !important; }
  .award-badge { font-size: 9px !important; padding: 6px 12px !important; letter-spacing: 1.2px !important; }
  .award-stats { gap: 14px !important; justify-content: space-between !important; }
  .award-stat .n { font-size: 22px !important; }
  .award-stat .l { font-size: 9.5px !important; letter-spacing: 1px !important; }

  /* Process steps: collapse to vertical compact */
  .process-grid { gap: 14px !important; }
  .process-step { padding: 16px !important; }
  .process-step h3 { font-size: 17px !important; }
  .process-step p { font-size: 13px !important; line-height: 1.5 !important; }

  /* Areas section: tighter county grid */
  .areas-list-mini { gap: 6px !important; }

  /* FAQ: tighter */
  .faq-item .faq-trigger { padding: 14px 16px !important; font-size: 13.5px !important; }
  .faq-body-inner { padding: 0 16px 14px !important; font-size: 13px !important; }

  /* Final CTA: tighten */
  .final-cta { padding: 50px 0 60px !important; }
  .final-cta h2 { font-size: 30px !important; }

  /* Hero: stats hidden on mobile (kept here so it overrides the desktop padding-bottom fix) */
  .hero-stats { display: none !important; }
  .hero-inner { padding-bottom: 32px !important; }

  /* Footer: reduce padding */
  .footer { padding: 36px 0 24px !important; }
}

@media (max-width: 720px) { .mobile-hide { display: none !important; } }


/* === REVIEWS CAROUSEL CONTROLS === */
.grev-controls { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 20px; }
.grev-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--paper-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper-ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.grev-arrow:hover { border-color: var(--orange); background: var(--orange); color: #fff; transform: translateY(-1px); }
.grev-arrow svg { width: 16px; height: 16px; }
.grev-dots { display: inline-flex; gap: 6px; }
.grev-dot {
  width: 7px; height: 7px;
  background: rgba(26,26,31,0.25);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}
.grev-dot:hover { background: rgba(26,26,31,0.45); }
.grev-dot.active { background: var(--orange); width: 22px; border-radius: 999px; }

/* Override the mask gradient — no longer needed since cards snap clean */
.grev-track-wrap {
  mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

@media (max-width: 720px) {
  .grev-track-wrap { mask-image: none; -webkit-mask-image: none; }
  .grev-arrow { width: 36px; height: 36px; }
}

/* Per-breakpoint card width so carousel maths line up */
@media (min-width: 1080px) {
  .grev-card { width: calc((100% - 32px) / 3) !important; flex: 0 0 calc((100% - 32px) / 3); }
}
@media (min-width: 720px) and (max-width: 1079px) {
  .grev-card { width: calc((100% - 16px) / 2) !important; flex: 0 0 calc((100% - 16px) / 2); }
}


/* === HIGH-PROFILE PROJECTS (shared) === */
.hp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hp-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  transition: transform 0.32s, box-shadow 0.32s;
}
.hp-card:hover { transform: translateY(-4px); box-shadow: 0 32px 72px rgba(0,0,0,0.55); }
.hp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: brightness(0.72) saturate(1.06); transition: transform 0.6s, filter 0.4s; }
.hp-card:hover img { transform: scale(1.05); filter: brightness(0.84); }
.hp-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 40%, rgba(26,26,31,0.95)); }
.hp-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); z-index: 1; }
.hp-badge {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: rgba(26,26,31,0.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--orange);
}
.hp-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 38px 32px 32px; z-index: 2; }
.hp-tag { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--orange-bright); margin-bottom: 12px; }
.hp-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.04; letter-spacing: -0.022em; margin-bottom: 10px; color: #fff; }
.hp-content h3 em { font-family: 'Fraunces', serif; font-style: italic; color: var(--orange); font-weight: 400; }
.hp-content p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.86); }
@media (max-width: 1080px) { .hp-grid { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 720px) {
  .hp-card { aspect-ratio: 5/6; }
  .hp-content { padding: 26px 22px 22px; }
  .hp-content h3 { font-size: 26px; }
  .hp-tag { font-size: 9.5px; letter-spacing: 1.3px; margin-bottom: 8px; }
}

/* === STRONGER STICKY CTA (Call Now + Text Now) === */
.mcta-btn { position: relative; padding: 12px 8px !important; gap: 10px !important; }
.mcta-stack { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.mcta-lead { font-size: 13.5px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; }
.mcta-sub { font-size: 10.5px; font-weight: 600; letter-spacing: 0.5px; opacity: 0.78; margin-top: 2px; text-transform: none; }
.mcta-call { background: #16a34a !important; color: #fff !important; }
.mcta-call svg { color: #fff; }
.mcta-call .mcta-sub { color: rgba(255,255,255,0.85); }
.mcta-text { background: var(--orange) !important; color: #fff !important; border-left: 1px solid rgba(255,255,255,0.12) !important; }
.mcta-text svg { color: #fff; }
.mcta-text .mcta-sub { color: rgba(255,255,255,0.86); }
.mcta-pulse {
  position: absolute; top: 8px; right: 10px;
  width: 9px; height: 9px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: mctaPulse 1.8s ease-in-out infinite;
}
@keyframes mctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); transform: scale(1); }
  60% { box-shadow: 0 0 0 12px rgba(255,255,255,0); transform: scale(1.15); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); transform: scale(1); }
}
@media (max-width: 380px) {
  .mcta-lead { font-size: 12.5px; letter-spacing: 1.2px; }
  .mcta-sub { font-size: 9.5px; }
  .mcta-btn svg { width: 14px; height: 14px; }
}
