/* ═══════════════════════════════════════════════════════════════
   CW Paint Works — Design System v5  (World-Class Rebuild)
   High-end architecture firm aesthetic: airy, editorial, premium
   Instrument Serif + Plus Jakarta Sans
   Light backgrounds, gold + charcoal accents
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* ── Backgrounds ── */
  --bg:         #F8F6F1;   /* warm linen — not white, not gray */
  --bg-off:     #F0EDE5;   /* slightly deeper warm */
  --bg-card:    #FDFCF9;   /* near-white card surface */
  --bg-ink:     #0F0D08;   /* near-black for dramatic sections */
  --bg-ink-2:   #191510;
  --bg-ink-3:   #211E16;

  /* ── Text ── */
  --ink:        #0F0D08;
  --ink-2:      #2A2519;
  --ink-muted:  #6A6055;
  --ink-ghost:  #9A8E82;

  /* ── Gold system ── */
  --gold:       #C8A020;
  --gold-hi:    #D4AF37;
  --gold-lo:    #A88218;
  --gold-pale:  rgba(200,160,32,0.08);
  --gold-tint:  rgba(200,160,32,0.14);
  --gold-ring:  rgba(200,160,32,0.28);
  --gold-glow:  0 8px 32px rgba(200,160,32,0.30);

  /* ── Borders ── */
  --border:     rgba(15,13,8,0.09);
  --border-med: rgba(15,13,8,0.15);
  --border-dark: rgba(255,255,255,0.07);

  /* ── Spacing & shape ── */
  --wrap:  1160px;
  --pad:   48px;
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* ── Typography ── */
  --ff-serif: 'Instrument Serif', Georgia, serif;
  --ff-body:  'Plus Jakarta Sans', system-ui, sans-serif;

  /* Dashboard vars */
  --bg-surface:   #1C1A12;
  --bg-elevated:  #252117;
  --fg:           #F0EDE5;
  --fg-muted:     rgba(240,237,229,0.52);
  --accent:       #C8A020;
  --accent-soft:  rgba(200,160,32,0.12);
  --accent-border: rgba(200,160,32,0.32);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: none; will-change: auto; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }
.reveal-d5 { transition-delay: 0.50s; }
.reveal-d6 { transition-delay: 0.62s; }

/* ── SHARED ────────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h2 {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: var(--ink);
}
h2 em { font-style: italic; color: var(--gold); }

h3 {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.22;
}

/* ── CTA BUTTONS ──────────────────────────────────────────── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 34px;
  border-radius: var(--r-xs);
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}
.cta-primary:hover {
  background: var(--gold-hi);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}
.cta-primary--lg { padding: 20px 44px; font-size: 16px; }

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--r-xs);
  border: 1.5px solid var(--border-med);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cta-outline:hover {
  border-color: var(--gold-ring);
  color: var(--gold);
  background: var(--gold-pale);
}

/* Inverted outline for dark sections */
.cta-outline--inv {
  color: rgba(240,237,229,0.75);
  border-color: rgba(240,237,229,0.25);
}
.cta-outline--inv:hover {
  color: #F0EDE5;
  border-color: rgba(240,237,229,0.55);
  background: rgba(240,237,229,0.06);
}

/* CTA group — stacked pair of buttons */
.contact-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 400;
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(248,246,241,0.94);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* BRAND — large, dominant */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(200,160,32,0.28));
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.nav-brand:hover .nav-logo { transform: scale(1.05) rotate(-1deg); }

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
/* LARGE company name in nav */
.nav-company-name {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.nav-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── Services dropdown ────────────────────────────────── */
.nav-services-dropdown {
  position: relative;
}
.nav-services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-services-trigger svg {
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.nav-services-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.nav-services-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(248,246,241,0.97);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 16px 48px rgba(15,13,8,0.12);
  min-width: 240px;
  padding: 8px;
  z-index: 500;
}
.nav-services-menu.open { display: block; }
.nav-services-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-services-menu a::after { display: none; }
.nav-services-menu a:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 11px 20px;
  border-radius: var(--r-xs);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-phone:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: var(--gold-glow);
}

/* Right cluster: Book Estimate + phone */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Book Estimate CTA — gold, stands out from nav links */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 10px 18px;
  border-radius: var(--r-xs);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-book-btn:hover {
  background: var(--gold-hi);
  transform: translateY(-1px);
  box-shadow: var(--gold-glow);
}

/* Facebook / social link in nav — subtle icon, no pill background */
.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-xs);
  color: rgba(15,13,8,0.45);
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.nav-social-link:hover {
  color: #1877F2;
  background: rgba(24,119,242,0.08);
}
/* On scrolled (glassmorphism) nav, adjust icon colour */
.site-nav.scrolled .nav-social-link { color: rgba(255,255,255,0.45); }
.site-nav.scrolled .nav-social-link:hover { color: #1877F2; background: rgba(24,119,242,0.12); }

/* ════════════════════════════════════════════════════════════
   HERO — Full height, editorial layout
   Light linen background, MASSIVE company name
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

/* Atmospheric texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 100% 0%, rgba(200,160,32,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(200,160,32,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 256px 256px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 160px var(--pad) 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

/* Left content column */
.hero-left { }

/* Oversize company name — this is the centrepiece */
.hero-brand-lockup {
  margin-bottom: 48px;
}

/* Hero badge — large badge logo above company name */
.hero-badge-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 6px 24px rgba(200,160,32,0.30));
  border-radius: 50%;
}

.hero-brand-sup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.hero-brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-brand-sup-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* THE dominant company name in the hero */
.hero-company-name {
  font-family: var(--ff-serif);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 0.96;
  letter-spacing: -2px;
  margin-bottom: 0;
}
.hero-company-name span {
  display: block;
}
.hero-company-name .accent-word {
  color: var(--gold);
  position: relative;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 32px 0;
  border-radius: 2px;
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 26px);
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 540px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
}
.hero-proof-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Right: photo card */
.hero-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.hero-photo-wrapper {
  position: relative;
  width: 300px;
}

.hero-photo-frame {
  position: relative;
  width: 300px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(15,13,8,0.20),
    0 0 0 1px var(--border-med);
}
.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,13,8,0.70) 100%);
  pointer-events: none;
}
.hero-photo-nameplate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px 20px;
}
.photo-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  color: #fff;
  display: block;
  line-height: 1;
}
.photo-title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-hi);
  display: block;
  margin-top: 5px;
}

/* Experience badge — floating */
.hero-badge {
  position: absolute;
  top: 28px;
  left: -28px;
  background: var(--gold);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  text-align: center;
  box-shadow: 0 12px 36px rgba(200,160,32,0.48);
  transform: rotate(-6deg);
  z-index: 2;
}
.hero-badge-num {
  font-family: var(--ff-serif);
  font-size: 34px;
  font-style: italic;
  line-height: 1;
  display: block;
}
.hero-badge-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  opacity: 0.9;
}

/* Gold corner accent */
.hero-photo-corner {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 60px;
  height: 60px;
  border-top: 2.5px solid var(--gold);
  border-right: 2.5px solid var(--gold);
  border-radius: 0 var(--r-xl) 0 0;
  opacity: 0.45;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   STATS STRIP — Dark band, dramatic contrast
   ════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--bg-ink);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(200,160,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-strip-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.02); }

.stat-figure {
  font-family: var(--ff-serif);
  font-size: 42px;
  font-style: italic;
  color: var(--gold-hi);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-figure--sm { font-size: 28px; }

.stat-caption {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(240,237,229,0.40);
  display: block;
}

/* ════════════════════════════════════════════════════════════
   SERVICES — Warm off-white, editorial card layout
   ════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--bg-off);
  padding: 130px 0;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.section-header {
  margin-bottom: 72px;
  max-width: 700px;
}
/* Section logo stamp — small brand mark accent above eyebrow */
.section-logo-stamp {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(200,160,32,0.22));
  border-radius: 50%;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.88;
  margin-top: 20px;
}

/* Service tiles — editorial, not Bootstrap cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
  transition: background 0.25s;
}
.service-card:hover { background: #fff; }
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--ff-serif);
  font-size: 56px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 22px);
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.82;
}

/* Warranty card — spans full width at bottom */
.service-card--warranty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--bg-ink);
  padding: 52px 48px;
}
.service-card--warranty:hover { background: var(--bg-ink-2); }
.service-card--warranty .service-num { color: var(--gold-hi); opacity: 0.25; }
.service-card--warranty h3 { color: #fff; }
.service-card--warranty p { color: rgba(240,237,229,0.55); }

.warranty-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(200,160,32,0.12);
  border: 1.5px solid rgba(200,160,32,0.30);
  border-radius: var(--r);
  padding: 24px 28px;
  min-width: 140px;
  text-align: center;
}
.warranty-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-hi);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   PORTFOLIO GALLERY
   ════════════════════════════════════════════════════════════ */
.portfolio-section {
  background: var(--bg);
  padding: 130px 0;
  position: relative;
}

.portfolio-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pf-btn {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border-med);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.pf-btn.active, .pf-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-off);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, border-color 0.35s;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(15,13,8,0.18);
  border-color: var(--gold-ring);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.portfolio-item:hover img { transform: scale(1.07); }

.portfolio-item--video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(200,160,32,0.90);
  border-radius: 50%;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  backdrop-filter: blur(4px);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,8,0.80) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.pi-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-hi);
  display: block;
  margin-bottom: 5px;
}
.pi-title {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-style: italic;
  color: #fff;
  display: block;
}

.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-ghost);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,13,8,0.94);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 920px;
  width: 100%;
}
.lightbox-inner img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r); }
.lightbox-inner iframe { width: 100%; height: 520px; border: none; border-radius: var(--r); }
.lightbox-caption { margin-top: 18px; text-align: center; }
.lightbox-caption-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-hi);
  display: block;
  margin-bottom: 5px;
}
.lightbox-caption-title {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-style: italic;
  color: #fff;
}
.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.60);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════
   WHY CW PAINT WORKS — Dark editorial section
   ════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--bg-ink);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,160,32,0.3) 50%, transparent);
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.why-section h2 { color: var(--bg); }
.why-section h2 em { color: var(--gold-hi); }
.why-intro {
  font-size: 16px;
  color: rgba(240,237,229,0.52);
  line-height: 1.92;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}

.why-card {
  background: var(--bg-ink-2);
  padding: 56px 50px;
  position: relative;
  transition: background 0.25s;
}
.why-card:hover { background: var(--bg-ink-3); }
.why-card--featured {
  border: 1px solid rgba(200,160,32,0.22);
  background: rgba(200,160,32,0.05);
}
.why-card--featured:hover { background: rgba(200,160,32,0.08); }

.why-icon { margin-bottom: 16px; }
.why-num {
  font-family: var(--ff-serif);
  font-size: 64px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.why-card h3 {
  color: rgba(240,237,229,0.92);
  margin-bottom: 14px;
  font-size: clamp(19px, 1.8vw, 24px);
}
.why-card p {
  font-size: 14.5px;
  color: rgba(240,237,229,0.48);
  line-height: 1.85;
}

.warranty-callout {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(200,160,32,0.10);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-hi);
  font-style: italic;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   ABOUT JERRY — Light, asymmetric layout
   ════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--bg-off);
  padding: 130px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 96px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}

.about-photo-frame {
  position: relative;
  width: 320px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-med);
  box-shadow:
    0 28px 80px rgba(15,13,8,0.17),
    0 0 0 6px rgba(200,160,32,0.07);
  aspect-ratio: 4/5;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.about-photo-wrap:hover .about-photo-frame img { transform: scale(1.04); }
.about-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,8,0.70) 0%, transparent 55%);
  pointer-events: none;
}
.about-photo-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px 20px;
}
.about-tag-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  color: #fff;
  display: block;
}
.about-tag-role {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-hi);
  display: block;
  margin-top: 4px;
}

.about-badge {
  position: absolute;
  top: 24px;
  right: -18px;
  background: var(--gold);
  color: #fff;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  text-align: center;
  box-shadow: 0 8px 28px rgba(200,160,32,0.50);
  transform: rotate(4deg);
  z-index: 2;
}
.about-badge-num {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-style: italic;
  line-height: 1;
  display: block;
}
.about-badge-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.about-accent-line {
  position: absolute;
  top: 40px;
  left: -16px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  border-radius: 2px;
  opacity: 0.35;
}

/* About text */
.about-text { }
.about-quote {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.38;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
  position: relative;
  padding-top: 20px;
}
.about-quote::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: -6px;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.12;
  font-family: var(--ff-serif);
  line-height: 1;
  pointer-events: none;
}
.about-body {
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.86;
  margin-bottom: 18px;
}

.about-sig {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.sig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--gold-ring);
  flex-shrink: 0;
}
.sig-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
}
.sig-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.sig-loc {
  font-size: 12.5px;
  color: var(--ink-ghost);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   CONTACT — Dark section, strong close
   ════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-ink);
  padding: 130px 0;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,160,32,0.3) 50%, transparent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 88px;
  align-items: center;
}
.contact-section .eyebrow { color: var(--gold-hi); }
.contact-section h2 { color: var(--bg); }
.contact-section h2 em { color: var(--gold-hi); }

.contact-tagline {
  font-size: 16px;
  color: rgba(240,237,229,0.50);
  line-height: 1.88;
  max-width: 420px;
  margin: 20px 0 40px;
}

/* Contact info card */
.contact-card {
  background: var(--bg-ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.4);
}

.contact-card-head {
  padding: 26px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(200,160,32,0.07);
}
.cc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-hi);
  display: block;
}
.cc-sub {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-style: italic;
  color: #fff;
  display: block;
  margin-top: 5px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { background: rgba(255,255,255,0.03); }

.cr-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-hi);
}
.cr-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,237,229,0.32);
  display: block;
  margin-bottom: 3px;
}
.cr-val {
  font-size: 15px;
  font-weight: 500;
  color: rgba(240,237,229,0.90);
  display: block;
  transition: color 0.2s;
}
a.cr-val:hover { color: var(--gold-hi); }
.cr-val--muted { font-size: 13.5px; font-weight: 400; color: rgba(240,237,229,0.50); }

/* ════════════════════════════════════════════════════════════
   FOOTER — Very dark, large logo
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0A0806;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 72px 0 0;
}
.footer-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo { width: 110px; height: 110px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(200,160,32,0.25)); }
.footer-co-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  color: rgba(240,237,229,0.88);
  display: block;
}
.footer-co-est {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(240,237,229,0.30);
  display: block;
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,237,229,0.38);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(240,237,229,0.75); }

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-contact-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,237,229,0.45);
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold-hi); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.16); }
.footer-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.14);
}

/* Social icons row in footer-bottom */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--r-xs);
  color: rgba(255,255,255,0.25);
  transition: color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  color: #1877F2;
  background: rgba(24,119,242,0.12);
}

/* ════════════════════════════════════════════════════════════
   HERO ESTIMATE BOX — inline action prompt
   ════════════════════════════════════════════════════════════ */
.hero-estimate-box {
  background: rgba(15,13,8,0.04);
  border: 1px solid var(--border-med);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin-bottom: 44px;
  position: relative;
}
.hero-estimate-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi));
  border-radius: 0 0 2px 2px;
}
.hero-estimate-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-estimate-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta-book {
  font-size: 14px;
  padding: 14px 28px;
}
.hero-cta-call {
  font-size: 14px;
  padding: 13px 22px;
}
.hero-or {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-ghost);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.hero-estimate-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-ghost);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   TRUST BAR — dark credibility strip with icon badges
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-ink);
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(200,160,32,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.trust-bar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
/* Brand mark — sits at the left of the trust strip */
.trust-bar-logo-wrap {
  display: flex;
  align-items: center;
  padding: 20px 28px 20px 0;
  flex-shrink: 0;
}
.trust-bar-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(200,160,32,0.30));
  border-radius: 50%;
  opacity: 0.85;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 36px 32px;
  flex: 1;
  min-width: 180px;
  transition: background 0.2s;
}
.trust-badge:hover { background: rgba(255,255,255,0.02); }
.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(200,160,32,0.10);
  border: 1px solid rgba(200,160,32,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-badge-num {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-hi);
  line-height: 1;
}
.trust-badge-cap {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,237,229,0.38);
  line-height: 1.3;
}
.trust-bar-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
}

/* Google Reviews badge */
.trust-badge-icon--reviews {
  background: rgba(200,160,32,0.10);
  border: 1px solid rgba(200,160,32,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.review-link {
  color: inherit;
  text-decoration: none;
}
.review-link:hover .review-num,
.review-link:hover .trust-badge-cap {
  color: var(--gold-hi);
}
.trust-badge-cap.trust-badge-cap--reviews {
  color: rgba(240,237,229,0.55);
  transition: color 0.2s;
}
.review-link:hover .trust-badge-cap--reviews {
  color: rgba(240,237,229,0.80);
}

/* ════════════════════════════════════════════════════════════
   TRUST BADGES ROW — light credential strip below trust-bar
   ════════════════════════════════════════════════════════════ */
.trust-badges-row {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px var(--pad);
}
.trust-badges-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-badges-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
  text-align: center;
}
.trust-badges-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(200,160,32,0.08);
  border: 1px solid rgba(200,160,32,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badges-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}
.trust-badges-title {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.2;
}
.trust-badges-desc {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.3;
}
.trust-badges-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* reveal delay for trust-badges */
.reveal-d5 { transition-delay: 0.50s; }

/* ════════════════════════════════════════════════════════════
   SERVICES CARD GRID — clean cards, not border-grid
   ════════════════════════════════════════════════════════════ */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-card:hover {
  border-color: var(--gold-ring);
  box-shadow: 0 16px 48px rgba(15,13,8,0.10);
  transform: translateY(-3px);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-card h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  line-height: 1.25;
}
.svc-card p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.82;
  flex: 1;
}
.svc-card-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
  transition: color 0.2s, gap 0.2s;
  gap: 4px;
  margin-top: auto;
}
.svc-card-cta:hover { color: var(--gold-hi); gap: 8px; }
.svc-card-cta--inv { color: var(--gold-hi); }
.svc-card-cta--inv:hover { color: #fff; }

/* Warranty card — full width, dark */
.svc-card--warranty {
  grid-column: 1 / -1;
  background: var(--bg-ink);
  border-color: rgba(200,160,32,0.18);
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.svc-card--warranty:hover {
  background: var(--bg-ink-2);
  border-color: rgba(200,160,32,0.32);
  transform: translateY(-3px);
}
.svc-warranty-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}
.svc-warranty-icon {
  background: rgba(200,160,32,0.10);
  border-color: rgba(200,160,32,0.20);
}
.svc-card--warranty h3 { color: #fff; }
.svc-card--warranty p { color: rgba(240,237,229,0.54); }
.svc-warranty-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(200,160,32,0.10);
  border: 1.5px solid rgba(200,160,32,0.28);
  border-radius: var(--r);
  padding: 28px 32px;
  min-width: 140px;
  text-align: center;
}
.svc-warranty-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-hi);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   CTA STRIP — mid-page conversion section
   ════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--bg-ink);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(200,160,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,160,32,0.3) 50%, transparent);
}
.cta-strip-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-strip-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 12px;
}
.cta-strip-heading {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.3px;
}
.cta-strip-heading em { font-style: italic; color: var(--gold-hi); }
.cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS — social proof section
   ════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg);
  padding: 130px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  border-color: var(--gold-ring);
  box-shadow: 0 12px 40px rgba(15,13,8,0.08);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonial-quote {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.60;
  font-weight: 400;
  flex: 1;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  color: var(--gold);
  opacity: 0.20;
  font-size: 72px;
  font-family: var(--ff-serif);
  position: absolute;
  top: -24px;
  left: -6px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-author-name {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  display: block;
}
.testimonial-author-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-ghost);
  display: block;
  margin-top: 2px;
}
.testimonials-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.testimonials-cta-text {
  font-size: 18px;
  color: var(--ink-muted);
  font-family: var(--ff-serif);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   SERVICE AREAS — geographic breakdown
   ════════════════════════════════════════════════════════════ */
.service-areas-section {
  background: var(--bg-off);
  padding: 130px 0;
  position: relative;
}
.service-areas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.areas-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.area-region {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: border-color 0.2s;
}
.area-region:hover { border-color: var(--gold-ring); }
.area-region-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.area-region-header h3 {
  font-size: 18px;
  color: var(--ink);
}
.area-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-list li {
  font-size: 14px;
  color: var(--ink-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 14px;
}
.area-list li:last-child { border-bottom: none; }
.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.areas-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  border-radius: var(--r);
  padding: 16px 22px;
  font-size: 14px;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.areas-note-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER — 4-column full business info
   ════════════════════════════════════════════════════════════ */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand-col .footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(240,237,229,0.38);
  line-height: 1.78;
  margin-bottom: 22px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,237,229,0.52);
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold-hi); }
.footer-col {}
.footer-col-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 20px;
  font-family: var(--ff-body);
}
.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.footer-link-list li {
  font-size: 13.5px;
  color: rgba(240,237,229,0.38);
  transition: color 0.2s;
}
.footer-link-list li a {
  color: rgba(240,237,229,0.38);
  transition: color 0.2s;
}
.footer-link-list li a:hover,
.footer-link-list li:hover { color: rgba(240,237,229,0.70); }
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 11px 18px;
  border-radius: var(--r-xs);
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
}
.footer-cta:hover {
  background: var(--gold-hi);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-badge { flex-basis: 50%; }
  /* 6 badges: hide dividers between rows (2 per row = 3 rows, hide dividers 1 & 2) */
  .trust-bar-divider:nth-child(4),
  .trust-bar-divider:nth-child(8) { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* trust-badges-row: 2x2 grid */
  .trust-badges-inner { justify-content: flex-start; gap: 0; }
  .trust-badges-item { flex-basis: 50%; min-width: 0; padding: 16px 20px; }
}

@media (max-width: 1000px) {
  :root { --pad: 28px; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 130px var(--pad) 80px;
    gap: 60px;
  }
  .hero-right { order: -1; }
  .hero-photo-wrapper, .hero-photo-frame { width: 240px; }
  .hero-badge { left: -20px; }

  /* New service card grid */
  .services-card-grid { grid-template-columns: 1fr; }
  .svc-card--warranty { flex-direction: column; gap: 28px; align-items: flex-start; }
  .svc-warranty-content { flex-direction: column; }

  /* Legacy services grid (kept for potential fallback) */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--warranty { flex-direction: column; gap: 28px; }
  .service-card--warranty { grid-column: span 2; }

  .why-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 44px 36px; }

  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .about-photo-wrap, .about-photo-frame { width: 280px; margin: 0 auto; }
  .about-badge { right: -12px; }

  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .contact-tagline { max-width: 100%; }

  .nav-links { display: none; }
  .nav-logo { width: 50px; height: 50px; }
  .nav-company-name { font-size: 22px; }
  .nav-inner { padding: 12px var(--pad); gap: 16px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
}

@media (max-width: 640px) {
  /* Nav: hide phone to keep Book Estimate visible */
  .nav-phone { display: none; }
  .nav-inner { padding: 10px var(--pad); gap: 12px; }
  .nav-logo { width: 42px; height: 42px; }
  .nav-company-name { font-size: 18px; }
  .nav-tagline { display: none; }
  .nav-book-btn { padding: 9px 14px; font-size: 12px; }
  :root { --pad: 20px; }

  .hero-company-name { letter-spacing: -1px; }
  .hero-right { display: flex; justify-content: center; }
  .hero-photo-wrapper, .hero-photo-frame { width: 220px; }
  .hero-badge { left: -14px; }

  .hero-estimate-actions { flex-direction: column; align-items: flex-start; }
  .hero-or { display: none; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .portfolio-header-row { flex-direction: column; align-items: flex-start; }

  .why-card { padding: 36px 26px; }
  .why-num { font-size: 52px; }

  .about-photo-wrap, .about-photo-frame { width: 260px; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .lightbox { padding: 20px; }
  .lightbox-inner iframe { height: 280px; }

  .trust-badge { flex-basis: 100%; }
  .trust-bar-divider { display: none; }

  /* trust-badges-row: stacked list on mobile */
  .trust-badges-row { padding: 20px var(--pad); }
  .trust-badges-inner { flex-direction: column; align-items: stretch; gap: 0; }
  .trust-badges-item { padding: 14px 0; flex-basis: auto; justify-content: flex-start; }
  .trust-badges-divider { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; align-items: flex-start; }
  /* Nav: hide social icon on very narrow screens */
  .nav-social-link { display: none; }
  .nav-brand { gap: 10px; }
  .nav-logo { width: 36px; height: 36px; }
  .nav-company-name { font-size: 16px; }
}
