/* ═══════════════════════════════════════════════════════════
   DREAM TOUCH RENOVATIONS — Apple-Inspired Design System
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Apple core palette */
  --black:    #1d1d1f;
  --white:    #ffffff;
  --gray-1: #f8f9fa;   /* Apple's signature light section bg */
  --gray-2:   #e8e8ed;   /* dividers */
  --gray-3:   #d2d2d7;   /* borders */
  --gray-4:   #86868b;   /* tertiary text */
  --gray-5:   #6e6e73;   /* secondary text */
  --blue:     #0071e3;   /* Apple CTA blue — links & text CTAs */

  /* Brand gold tokens.
     Two-token system reconciled 2026-04-25 against WCAG AA:
       --gold      (#a87a1c, ~3.84:1 vs white) — display headings (large text) and
                   tile backgrounds with light text overlay. Passes AA large-text 3:1.
       --gold-text (#7d5a14, ~5.5:1 vs white) — small/normal-weight gold text on
                   white backgrounds (CTAs, eyebrows). Passes AA normal-text 4.5:1.
       --gold-light (#e0b862) — tile backgrounds with dark text overlay.
                   Passes AA normal-text 4.5:1 against #0a0f14 (~10.4:1).
     Original source values (#c9973a, also #c9a84c in CLAUDE.md) failed AA in both
     directions. Update CLAUDE.md to reference these three tokens. */
  --gold:       #b88723;
  --gold-text:  #6f4e12;
  --gold-light: #e0b862;

  /* Hero */
  --hero-bg:  #050507;

  /* System font stack — SF Pro on Apple devices, Inter/Helvetica elsewhere */
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:       48px;
  --section-py:  120px;

  --radius-pill: 980px;
  --radius-card: 20px;
  --radius:      12px;

  --shadow-sm: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.58;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 56px);
}

.section { padding-block: var(--section-py); }
.section-offwhite { background: var(--gray-1); }
.section-dark      { background: var(--gray-1); } /* was dark — now light, Apple-style */

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-5);
  margin-bottom: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.07;
  color: var(--black);
  letter-spacing: -0.025em;
}
.section-title--light { color: var(--black); }

.section-intro {
  margin-top: 18px;
  font-size: 19px;
  color: var(--gray-5);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.58;
  letter-spacing: -0.01em;
}
.section-intro--light { color: var(--gray-5); }

.section-cta { text-align: center; margin-top: 52px; }


/* ─── Buttons — pill-shaped, Apple-style ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover  { opacity: 0.82; }
.btn:active { opacity: 0.65; }

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { opacity: 1; background: #3a3a3c; border-color: #3a3a3c; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
}
.btn-secondary:hover { opacity: 1; border-color: rgba(255,255,255,0.8); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-3);
}
.btn-outline:hover { opacity: 1; border-color: var(--black); }

.btn-gold {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-gold:hover { opacity: 1; background: #3a3a3c; border-color: #3a3a3c; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
}
.btn-ghost:hover { opacity: 1; border-color: rgba(255,255,255,0.8); }

.btn-text {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding-inline: 0;
}
.btn-text:hover { opacity: 1; text-decoration: underline; }


/* ════════════════════════════════════════════════════════════
   HEADER / NAV  — Apple frosted-glass thin nav
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 20px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.025em;
  color: var(--white);
  transition: color 0.3s;
}
.logo-mark--sm { font-size: 16px; }
.site-header.scrolled .logo-mark { color: var(--black); }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
  transition: color 0.3s;
}
.logo-wordmark em { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.site-header.scrolled .logo-wordmark { color: var(--black); }
.site-header.scrolled .logo-wordmark em { color: var(--gray-5); }

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { color: var(--white); }
.site-header.scrolled .nav-link { color: var(--black); }
.site-header.scrolled .nav-link:hover { color: var(--gray-5); }

.nav-chevron { transition: transform 0.2s; flex-shrink: 0; opacity: 0.7; }
.nav-item.open > .nav-link .nav-chevron,
.nav-item:hover > .nav-link .nav-chevron { transform: rotate(180deg); }

/* Dropdown — frosted glass */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 12px 8px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s var(--ease);
  z-index: 800;
}
.dropdown-2col { display: flex; min-width: 400px; }
.nav-item:hover .dropdown,
.nav-item.open  .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-col { flex: 1; padding-inline: 8px; }
.dropdown-col + .dropdown-col { border-left: 1px solid var(--gray-2); }

.dropdown-heading {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-4);
  margin-bottom: 6px;
  padding: 4px 10px 2px;
}
.dropdown ul li a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.12s;
}
.dropdown ul li a:hover { background: var(--gray-1); }

/* Nav CTA button */
.nav-cta-item { margin-left: 10px; }
.nav-cta-btn {
  font-size: 12px;
  padding: 7px 16px;
  background: var(--white);
  color: var(--black);
  border-color: transparent;
}
.site-header.scrolled .nav-cta-btn { background: var(--black); color: var(--white); }
.nav-cta-btn:hover { opacity: 0.82; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.3s;
}
.site-header.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════════
   HERO  — dark, full-viewport, Apple product page style
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Hero image asset not shipped (assets/hero.jpg returned 404 in Functional Tester).
     Falling back to solid --hero-bg until Content Designer / Designer ships a real
     hero image. Restore the url() once a file is in place. */
  background-color: var(--hero-bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    rgba(0,0,0,0.52) 50%,
    rgba(0,0,0,0.72) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-inline: 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-headline {
  font-family: var(--font);
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.58;
  color: rgba(255,255,255,0.54);
  max-width: 560px;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 11px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translate(-50%, 0);
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50%       { opacity: 0.2; transform: translate(-50%, 11px); }
}


/* ════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding-block: 32px;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-inline: 44px;
  text-align: center;
}
.trust-item strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.025em;
}
.trust-item span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-5);
}
.trust-divider {
  width: 1px; height: 36px;
  background: var(--gray-2);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.intro-text .section-eyebrow { display: block; text-align: left; margin-bottom: 12px; }
.intro-text .section-title { text-align: left; font-size: clamp(36px, 4vw, 52px); }
.intro-text p { margin-top: 18px; font-size: 17px; color: var(--gray-5); line-height: 1.65; }
.intro-actions { display: flex; align-items: center; gap: 16px; margin-top: 36px; }

.intro-img-wrap { position: relative; }
.intro-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
}
.intro-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.intro-badge strong { font-size: 20px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.intro-badge span   { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }


/* ════════════════════════════════════════════════════════════
   RESIDENTIAL SERVICES GRID
   ════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card:hover { transform: scale(1.018); box-shadow: var(--shadow-md); }

.service-card--featured { background: var(--black); }
.service-card--featured h3    { color: var(--white); }
.service-card--featured p     { color: rgba(255,255,255,0.56); }
.service-card--featured .card-link { color: rgba(255,255,255,0.65); }
.service-card--featured .service-icon { background: rgba(255,255,255,0.1); color: var(--white); }

.service-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--black);
}
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.service-card p { font-size: 15px; color: var(--gray-5); line-height: 1.6; margin-bottom: 20px; }
.card-link { font-size: 15px; font-weight: 400; color: var(--blue); transition: opacity 0.2s; }
.card-link:hover { opacity: 0.7; }


/* ════════════════════════════════════════════════════════════
   COMMERCIAL GRID
   ════════════════════════════════════════════════════════════ */
.commercial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.comm-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.comm-card:hover { transform: scale(1.018); box-shadow: var(--shadow-md); }
.comm-card-number { font-size: 12px; font-weight: 500; color: var(--gray-4); margin-bottom: 14px; }
.comm-card h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
.comm-card p  { font-size: 15px; color: var(--gray-5); line-height: 1.6; margin-bottom: 18px; }
.card-link-light { font-size: 15px; font-weight: 400; color: var(--blue); transition: opacity 0.2s; }
.card-link-light:hover { opacity: 0.7; }


/* ════════════════════════════════════════════════════════════
   DESIGN & PERMIT
   ════════════════════════════════════════════════════════════ */
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.design-text .section-eyebrow { display: block; text-align: left; margin-bottom: 12px; }
.design-text .section-title   { text-align: left; font-size: clamp(36px, 4vw, 52px); }
.design-text > p { margin-top: 18px; font-size: 17px; color: var(--gray-5); line-height: 1.65; }

.design-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.design-list li::before { content: '→  '; color: var(--gray-4); }
.design-list a { font-size: 17px; color: var(--blue); transition: opacity 0.2s; }
.design-list a:hover { opacity: 0.7; }

.design-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  position: relative;
  overflow: hidden;
}
.design-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}


/* ════════════════════════════════════════════════════════════
   WHY DTR
   ════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px 56px;
}
.why-item { display: flex; flex-direction: column; }
.why-icon {
  width: 48px; height: 48px;
  background: var(--gray-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 18px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 19px; font-weight: 600; color: var(--black); margin-bottom: 8px; letter-spacing: -0.01em; }
.why-item p  { font-size: 15px; color: var(--gray-5); line-height: 1.65; }


/* ════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 1px;
  background: var(--gray-2);
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-3);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0 auto 22px;
}
.process-step h3 { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
.process-step p  { font-size: 14px; color: var(--gray-5); line-height: 1.6; }


/* ════════════════════════════════════════════════════════════
   FINANCING
   ════════════════════════════════════════════════════════════ */
.financing-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 96px;
  align-items: center;
}
.financing-text .section-eyebrow { display: block; text-align: left; margin-bottom: 12px; }
.financing-text .section-title   { text-align: left; font-size: clamp(36px, 4vw, 52px); }
.financing-text > p { margin-top: 18px; font-size: 17px; color: var(--gray-5); line-height: 1.65; }

.fin-list { margin: 22px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.fin-list li {
  font-size: 15px;
  color: var(--gray-5);
  padding-left: 18px;
  position: relative;
}
.fin-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--gray-3);
  border-radius: 50%;
}

.financing-stats { display: flex; flex-direction: column; gap: 16px; min-width: 200px; }
.fin-stat {
  background: var(--gray-1);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  text-align: center;
}
.fin-stat strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.fin-stat span { font-size: 13px; color: var(--gray-5); }


/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-card:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.stars { font-size: 15px; color: var(--gold); letter-spacing: 1px; }
.testimonial-card p {
  font-size: 16px;
  color: var(--gray-5);
  line-height: 1.7;
  flex: 1;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-2);
}
.testimonial-card cite { font-size: 14px; font-weight: 600; color: var(--black); font-style: normal; }
.testimonial-card footer span { font-size: 13px; color: var(--gray-4); }


/* ════════════════════════════════════════════════════════════
   SERVICE AREAS
   ════════════════════════════════════════════════════════════ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.areas-grid li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-5);
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.areas-grid li a:hover { background: var(--black); border-color: var(--black); color: var(--white); }


/* ════════════════════════════════════════════════════════════
   FAQ  — grouped accordion, Apple Settings style
   ════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 740px;
  margin-inline: auto;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
}
.faq-item { border-top: 1px solid var(--gray-2); }
.faq-list .faq-item:first-child { border-top: none; }

.faq-item summary {
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.15s;
  letter-spacing: -0.01em;
}
.faq-item summary:hover { background: var(--gray-1); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gray-4);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--black); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-5);
  line-height: 1.7;
  border-top: 1px solid var(--gray-2);
  padding-top: 14px;
}


/* ════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding-block: 112px;
  overflow: hidden;
  background: var(--black);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Decorative CTA texture asset not shipped (assets/cta-bg.jpg returned 404). The
     ::before layer sat at 0.07 opacity so its absence is visually almost imperceptible.
     Restore the url() once a real texture is in place. */
  opacity: 0.07;
}
.cta-overlay { position: absolute; inset: 0; pointer-events: none; }
.cta-content { position: relative; z-index: 1; text-align: center; }

.cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-content > p {
  font-size: 19px;
  color: rgba(255,255,255,0.54);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ════════════════════════════════════════════════════════════
   FOOTER  — Apple-style dark footer
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}
.logo-wordmark-sm {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-brand address { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.9; }
.footer-brand address a { color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-brand address a:hover { color: var(--white); }

.footer-nav h3 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  margin-top: 0;
  letter-spacing: 0;
  text-transform: none;
}
.footer-nav h3 + h3 { margin-top: 28px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul a { font-size: 13px; color: rgba(255,255,255,0.38); transition: color 0.2s; line-height: 1.4; }
.footer-nav ul a:hover { color: var(--white); }

.footer-bottom { padding-block: 20px; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.24); }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 88px; }
  .intro-grid, .design-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-visual { order: -1; }
  .intro-img-placeholder { aspect-ratio: 16/9; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .financing-grid { grid-template-columns: 1fr; gap: 48px; }
  .financing-stats { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 48px; --section-py: 64px; }

  .nav-toggle { display: flex; }
  .nav-logo .logo-wordmark { display: none; }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(251,251,253,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    padding: 16px 12px 40px;
  }
  .nav-menu.open { display: flex; }
  .nav-item { border-bottom: 1px solid var(--gray-2); }
  .nav-link {
    font-size: 17px;
    padding: 14px 12px;
    justify-content: space-between;
    color: var(--black);
    width: 100%;
  }
  .site-header:not(.scrolled) .nav-link { color: var(--black); }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 8px 12px;
    display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown-2col { flex-direction: column; min-width: unset; }
  .dropdown-col + .dropdown-col { border-left: none; border-top: 1px solid var(--gray-2); padding-top: 8px; margin-top: 4px; }
  .dropdown ul li a { color: var(--gray-5); font-size: 15px; }
  .dropdown-heading { color: var(--gray-4); }
  .nav-cta-item { border-bottom: none; padding-top: 16px; }
  .nav-cta-btn { width: 100%; text-align: center; background: var(--black) !important; color: var(--white) !important; font-size: 17px; padding: 14px 24px; }

  .section-title { font-size: clamp(32px, 7vw, 48px); }
  .trust-item { padding-inline: 20px; }
  .trust-divider { display: none; }
  .services-grid     { grid-template-columns: 1fr; }
  .commercial-grid   { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; gap: 36px; }
  .process-steps     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .intro-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .financing-stats { flex-direction: column; }
}



/* ═══════════════════════════════════════════════════════════════════════════
   APPENDED 2026-04-26 — Source <head> <style> block (full restoration).
   
   Splitter's chrome extraction only covered body-onwards (lines 998–1251 of
   source/index.html), missing the 985-line <head> <style> block at lines
   12–995. Without these rules, the site rendered as plain HTML with no nav
   layout, no dropdown hiding, no hero positioning, no buttons styled — see
   the bug report screenshot from the user 2026-04-26.
   
   Restoring the entire block. The Apple-inspired styles above (lines 1–1058)
   stay first; the source's :root + utility classes win where they overlap
   because CSS cascade order favors later definitions. The final-override
   block at the end of this file sets --gold/--gold-text to AA-compliant
   values (source's --gold:#c9a84c fails contrast in both directions).
   
   Spec patch needed in .claude/agents/splitter.md section 1.7: also extract
   any non-trivial <head> <style> block content.
   ═══════════════════════════════════════════════════════════════════════════ */

:root{
  --bg:#0a0f14;--bg2:#111820;--bg3:#182030;
  --ivory:#f8f9fa;--warm:#ebebeb;--mist:#dcdcdc;--lt:#f8f9fa;
  --gold:#c9a84c;--gold2:#e8c96e;
  --slate:#8a96a4;--body:#4a5668;
  --line:rgba(255,255,255,.08);--linemid:rgba(255,255,255,.15);
  --g10:rgba(201,168,76,.10);--g20:rgba(201,168,76,.20);--g40:rgba(201,168,76,.40);
  --ease:cubic-bezier(.16,1,.3,1);
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'DM Sans',-apple-system,sans-serif;
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:var(--sans);background:var(--ivory);color:var(--bg);overflow-x:hidden;}
a{text-decoration:none;color:inherit;}
img{display:block;width:100%;height:100%;object-fit:cover;}
::selection{background:var(--gold);color:var(--bg);}
.wrap{max-width:1320px;margin:0 auto;padding:0 48px;}
.tag-line{display:flex;align-items:center;gap:14px;margin-bottom:18px;}
.tbar{width:40px;height:1px;background:var(--gold);}
.tbar.dk{background:rgba(10,15,20,.25);}
.ttxt{font-size:11px;font-weight:700;letter-spacing:.25em;color:var(--gold);text-transform:uppercase;}
.ttxt.dk{color:var(--body);}
/* BUTTONS — Apple pill style */
.btn{display:inline-flex;align-items:center;gap:8px;padding:13px 24px;font-family:var(--sans);font-size:14px;font-weight:500;border:none;letter-spacing:-.01em;text-transform:none;transition:opacity .2s,box-shadow .2s,background .2s;border-radius:980px;cursor:pointer;white-space:nowrap;}
.btn-gold{background:var(--gold);color:var(--bg);}
.btn-gold:hover{background:var(--gold2);box-shadow:0 4px 20px var(--g40);}
.btn-dark{background:var(--bg);color:var(--ivory);}
.btn-dark:hover{opacity:.85;}
.btn-ghost{background:transparent;color:var(--ivory);border:1px solid rgba(255,255,255,.36);}
.btn-ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5);}
.btn-outline{background:transparent;color:var(--bg);border:1px solid rgba(10,15,20,.22);}
.btn-outline:hover{background:rgba(10,15,20,.05);}
.btn-lg{padding:17px 36px;font-size:15px;}
.btn-sm{padding:8px 18px;font-size:13px;}
/* REVEAL */
.rev{opacity:0;transform:translateY(24px);transition:opacity .8s var(--ease),transform .8s var(--ease);}
.rev.on{opacity:1;transform:none;}
.d1{transition-delay:.1s;}.d2{transition-delay:.2s;}.d3{transition-delay:.3s;}.d4{transition-delay:.4s;}




















/* Page indicator pill */


/* Hamburger */


/* Mobile menu */






/* PAGES */
.page{display:none;} .page.active{display:block;min-height:100vh;}

/* TICKER */
.ticker{background:var(--bg2);border-bottom:1px solid var(--line);padding:10px 0;overflow:hidden;}
.ticker-inner{display:flex;gap:32px;white-space:nowrap;animation:tick 32s linear infinite;}
.ti{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.ti-dot{width:7px;height:7px;background:#22c55e;border-radius:50%;animation:pulse 2s ease-in-out infinite;}
.ti-txt{font-size:13px;color:rgba(255,255,255,.6);}
.ti-txt strong{color:var(--ivory);}
.ti-sep{width:1px;height:16px;background:var(--line);}
@keyframes tick{from{transform:translateX(0);}to{transform:translateX(-50%);}}
/* TRUST BAR */
.trust{background:var(--gold);padding:15px 0;}
.tb{display:flex;align-items:center;justify-content:center;gap:36px;flex-wrap:wrap;}
.tb-item{display:flex;align-items:center;gap:8px;}
.tb-txt{font-size:13px;font-weight:700;color:var(--bg);}
.tb-sep{width:1px;height:16px;background:rgba(10,15,20,.2);}
/* HERO */
.hero{min-height:56vh;position:relative;display:flex;align-items:flex-start;padding-top:12px;padding-bottom:0;overflow:hidden;}
.hero-bg{position:absolute;inset:0;}
.hero-bg img{width:100%;height:100%;object-fit:cover;}
.hero-ov{position:absolute;inset:0;background:linear-gradient(to right,rgba(10,15,20,.94) 0%,rgba(10,15,20,.72) 55%,rgba(10,15,20,.32) 100%),linear-gradient(to top,rgba(10,15,20,.65) 0%,transparent 40%);}
.hero-dots{position:absolute;inset:0;background-image:radial-gradient(rgba(201,168,76,.12) 1px,transparent 1px);background-size:48px 48px;mask-image:radial-gradient(ellipse 50% 50% at 75% 30%,black 0%,transparent 70%);}
.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 380px;gap:72px;align-items:flex-end;max-width:1440px;width:100%;margin:0 auto;padding:0 48px;}
.hero-ol{display:flex;align-items:center;gap:14px;margin-bottom:26px;}
.hero-ol-bar{width:48px;height:1px;background:var(--gold);}
.pulse{width:6px;height:6px;background:var(--gold);border-radius:50%;animation:pulse 2.5s ease-in-out infinite;}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.3;transform:scale(1.7);}}
.hero-ol-txt{font-size:11px;font-weight:700;letter-spacing:.24em;color:var(--gold);text-transform:uppercase;}
h1.h1{font-family:var(--serif);font-size:clamp(56px,6vw,92px);font-weight:300;line-height:.97;letter-spacing:-.03em;color:var(--ivory);margin-bottom:26px;}
h1.h1 em{font-style:italic;color:var(--gold);}
h1.h1 .bl{display:block;}
h1.h1 .ind{padding-left:72px;}
.hero-sub{font-size:17px;line-height:1.82;color:var(--ivory);max-width:520px;margin-bottom:36px;}
.hero-sub strong{color:rgba(255,255,255,.88);font-weight:500;}
.hero-btns{display:flex;gap:13px;flex-wrap:wrap;margin-bottom:52px;}
.hero-proof{display:flex;gap:0;}
.hp{display:flex;flex-direction:column;padding:0 28px;}
.hp:first-child{padding-left:0;}.hp+.hp{border-left:1px solid rgba(255,255,255,.12);}
.hp-val{font-family:var(--serif);font-size:34px;font-weight:600;color:var(--ivory);line-height:1;}
.hp-val span{color:var(--gold);}
.hp-lbl{font-size:10px;color:rgba(255,255,255,.7);text-transform:uppercase;letter-spacing:.07em;margin-top:5px;}
/* HERO FORM */
.hform{background:rgba(10,15,20,.9);backdrop-filter:blur(28px);border:1px solid rgba(255,255,255,.09);border-top:3px solid var(--gold);padding:28px;border-radius:16px;}
.hf-badge{display:inline-block;background:var(--gold);color:var(--bg);font-size:9px;font-weight:800;letter-spacing:.2em;padding:4px 12px;margin-bottom:16px;text-transform:uppercase;}
.hf-title{font-family:var(--serif);font-size:20px;color:var(--ivory);margin-bottom:3px;font-weight:400;}
.hf-sub{font-size:12px;color:rgba(255,255,255,.72);margin-bottom:16px;}
.ff2{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:10px;}
.ff{display:flex;flex-direction:column;gap:4px;margin-bottom:10px;}
.ff label{font-size:10px;font-weight:700;letter-spacing:.13em;color:rgba(255,255,255,.75);text-transform:uppercase;}
.ff input,.ff select,.ff textarea{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);padding:10px 12px;color:var(--ivory);font-family:var(--sans);font-size:13px;outline:none;transition:border .2s;width:100%;}
.ff input:focus,.ff select:focus,.ff textarea:focus{border-color:var(--gold);}
.ff select option{background:#0a0f14;}.ff input::placeholder{color:rgba(255,255,255,.65);}
.ff textarea{resize:none;height:56px;}
.hf-note{font-size:11px;color:rgba(255,255,255,.55);text-align:center;margin-top:8px;}
/* GALLERY */
.gallery{padding:66px 0;background:var(--bg);}
.gal-hdr{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:flex-end;margin-bottom:52px;}
.gal-hdr h2{font-family:var(--serif);font-size:clamp(34px,4vw,56px);font-weight:300;color:var(--ivory);line-height:1.1;letter-spacing:-.02em;margin-top:16px;}
.gal-hdr h2 em{font-style:italic;color:var(--gold);}
.gal-hdr p{font-size:16px;color:var(--slate);line-height:1.82;}
.gal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:5px;}
.gp{position:relative;overflow:hidden;background:var(--bg2);border-radius:16px;}
.gp.wide{grid-column:span 2;}
.gp-h{aspect-ratio:16/9;}.gp-s{aspect-ratio:4/3;}
.gp img{transition:transform .5s var(--ease);}
.gp:hover img{transform:scale(1.06);}
.gp-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,15,20,.88) 0%,transparent 55%);opacity:0;transition:opacity .3s;display:flex;flex-direction:column;justify-content:flex-end;padding:16px 18px;}
.gp:hover .gp-ov{opacity:1;}
.gp-name{font-family:var(--serif);font-size:16px;color:var(--ivory);}
.gp-det{font-size:11px;color:var(--gold);font-weight:600;margin-top:3px;}
/* SERVICES */
.svc{padding:72px 0;background:var(--bg2);}
.svc-hdr{text-align:center;margin-bottom:60px;}
.svc-hdr h2{font-family:var(--serif);font-size:clamp(34px,4vw,56px);font-weight:300;color:var(--ivory);line-height:1.1;letter-spacing:-.02em;margin-top:16px;}
.svc-hdr h2 em{font-style:italic;color:var(--gold);}
.svc-hdr p{font-size:16px;color:var(--slate);max-width:560px;margin:14px auto 0;line-height:1.8;}
.svc-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:3px;}
.sc{background:var(--bg3);border-bottom:3px solid transparent;transition:border .35s;border-radius:16px;overflow:hidden;}
.sc:hover{border-bottom-color:var(--gold);}
.sc-photo{aspect-ratio:16/9;overflow:hidden;background:var(--bg);}
.sc-photo img{transition:transform .45s;}
.sc:hover .sc-photo img{transform:scale(1.05);}
.sc-body{padding:24px;}
.sc-badge{display:inline-block;background:var(--g10);border:1px solid var(--g20);color:var(--gold);font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:3px 10px;margin-bottom:12px;}
.sc-title{font-family:var(--serif);font-size:21px;font-weight:400;color:var(--ivory);margin-bottom:10px;}
.sc-desc{font-size:14px;color:var(--slate);line-height:1.72;margin-bottom:14px;}
.sc-inc{display:flex;flex-direction:column;gap:5px;margin-bottom:14px;}
.sci{font-size:13px;color:var(--slate);padding-left:14px;position:relative;}
.sci::before{content:'✓';color:var(--gold);font-weight:800;position:absolute;left:0;font-size:11px;top:1px;}
.sc-price{font-size:12px;font-weight:700;color:var(--gold);letter-spacing:.05em;padding-top:12px;border-top:1px solid var(--line);}
/* PROCESS */
.process{padding:72px 0;background:#f8f9fa;}
.proc-hdr{text-align:center;margin-bottom:72px;}
.proc-hdr h2{font-family:var(--serif);font-size:clamp(34px,4vw,56px);font-weight:300;color:var(--bg);line-height:1.1;letter-spacing:-.02em;margin-top:16px;}
.psteps{display:grid;grid-template-columns:repeat(5,1fr);position:relative;}
.psteps::before{content:'';position:absolute;top:34px;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(10,15,20,.12) 20%,var(--gold) 50%,rgba(10,15,20,.12) 80%,transparent);}
.ps{text-align:center;padding:0 12px;position:relative;z-index:1;}
.ps-c{width:68px;height:68px;border-radius:50%;border:1px solid rgba(10,15,20,.14);background:#f8f9fa;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;font-size:22px;position:relative;transition:all .4s;}
.ps:hover .ps-c{background:var(--gold);border-color:var(--gold);}
.ps-n{position:absolute;top:-7px;right:-7px;width:22px;height:22px;border-radius:50%;background:var(--gold);color:var(--bg);font-size:10px;font-weight:800;display:flex;align-items:center;justify-content:center;}
.ps-t{font-weight:700;font-size:13px;color:var(--bg);margin-bottom:7px;}
.ps-b{font-size:12px;color:var(--body);line-height:1.65;}
.proc-cta{margin-top:52px;background:var(--bg);padding:32px 48px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;border-radius:16px;}
.proc-cta-h{font-family:var(--serif);font-size:22px;font-weight:400;color:var(--ivory);}
.proc-cta-p{font-size:14px;color:var(--slate);margin-top:5px;line-height:1.7;}
/* TESTIMONIALS */
.testi{padding:72px 0;background:var(--bg2);}
.testi-hdr{text-align:center;margin-bottom:60px;}
.testi-hdr h2{font-family:var(--serif);font-size:clamp(34px,4vw,56px);font-weight:300;color:var(--ivory);line-height:1.1;letter-spacing:-.02em;margin-top:16px;}
.testi-hdr h2 em{font-style:italic;color:var(--gold);}
.testi-g{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.tc{background:#ffffff;border:1px solid rgba(0,0,0,.08);padding:32px;transition:all .3s;border-radius:16px;}
.tc:hover{border-color:rgba(201,168,76,.5);box-shadow:0 8px 32px rgba(0,0,0,.08);}
.tc-stars{font-size:16px;color:var(--gold);letter-spacing:3px;margin-bottom:14px;}
.tc-q{font-family:var(--serif);font-size:17px;font-style:italic;color:#374151;line-height:1.82;margin-bottom:20px;}
.tc-auth{display:flex;align-items:center;gap:12px;}
.tc-av{width:40px;height:40px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:15px;color:var(--bg);flex-shrink:0;}
.tc-name{font-weight:700;color:var(--bg);font-size:14px;}
.tc-loc{font-size:11px;color:var(--body);}
.tc-proj{font-size:11px;color:var(--gold);font-weight:600;margin-top:3px;}
/* OBJECTIONS */
.obj{padding:72px 0;background:var(--ivory);}
.obj-hdr{text-align:center;margin-bottom:56px;}
.obj-hdr h2{font-family:var(--serif);font-size:clamp(32px,4vw,52px);font-weight:300;color:var(--bg);line-height:1.1;letter-spacing:-.02em;margin-top:16px;}
.obj-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:3px;background:#f8f9fa;margin-bottom:4px;}
.objc{background:var(--lt);padding:36px 32px;border-radius:16px;}
.objc-ico{font-size:30px;margin-bottom:14px;}
.objc-q{font-family:var(--serif);font-size:19px;font-weight:500;color:var(--bg);margin-bottom:12px;line-height:1.3;}
.objc-a{font-size:14px;color:var(--body);line-height:1.82;}
.objc-a strong{color:var(--bg);font-weight:600;}
.guar{background:var(--bg);padding:44px;display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center;border-radius:20px;}
.guar-h{font-family:var(--serif);font-size:clamp(26px,3vw,40px);font-weight:300;color:var(--ivory);line-height:1.15;margin-bottom:12px;}
.guar-h em{font-style:italic;color:var(--gold);}
.guar-p{font-size:14px;color:rgba(255,255,255,.5);line-height:1.82;}
.guar-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.gi{background:rgba(255,255,255,.04);border:1px solid var(--line);padding:20px;border-radius:14px;}
.gi-ico{font-size:20px;margin-bottom:8px;}
.gi-t{font-size:13px;font-weight:700;color:var(--ivory);margin-bottom:5px;}
.gi-b{font-size:12px;color:rgba(255,255,255,.65);line-height:1.65;}
/* CTA */
.cta-sec{padding:78px 0;background:var(--bg);position:relative;overflow:hidden;}
.cta-sec::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(201,168,76,.07),transparent 50%);}
.cta-grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:72px;align-items:center;}
.cta-h{font-family:var(--serif);font-size:clamp(44px,5.5vw,80px);font-weight:300;line-height:.97;letter-spacing:-.03em;color:var(--ivory);margin-bottom:16px;}
.cta-h em{font-style:italic;color:var(--gold);}
.cta-p{font-size:16px;color:rgba(255,255,255,.65);line-height:1.82;max-width:480px;}
.cta-steps{margin-top:28px;padding:24px;background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:16px;}
.cta-steps-lbl{font-size:11px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);margin-bottom:12px;}
.cta-step{display:flex;gap:11px;font-size:14px;color:rgba(255,255,255,.55);padding:7px 0;border-bottom:1px solid rgba(255,255,255,.04);}
.cta-step:last-child{border-bottom:none;}
.cta-sn{color:var(--gold);font-weight:700;min-width:20px;}
.cta-form{background:rgba(255,255,255,.05);border:1px solid var(--line);padding:30px;min-width:320px;border-radius:16px;}
.cta-form-t{font-family:var(--serif);font-size:21px;color:var(--ivory);margin-bottom:4px;}
.cta-form-s{font-size:13px;color:rgba(255,255,255,.72);margin-bottom:16px;}
.ml{font-size:10px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:rgba(255,255,255,.75);display:block;margin-bottom:5px;}
.mi{width:100%;padding:11px 13px;border:1px solid rgba(255,255,255,.1);font-family:var(--sans);font-size:14px;color:var(--ivory);background:rgba(255,255,255,.07);outline:none;transition:border .2s;margin-bottom:10px;}
.mi:focus{border-color:var(--gold);}
.mi-ta{width:100%;height:72px;padding:11px 13px;border:1px solid rgba(255,255,255,.1);font-family:var(--sans);font-size:14px;color:var(--ivory);background:rgba(255,255,255,.07);outline:none;resize:none;margin-bottom:10px;}
.mg{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.mchk{display:flex;gap:8px;margin:8px 0 14px;}
.mchk input{width:14px;height:14px;accent-color:var(--gold);margin-top:2px;}
.mchk label{font-size:12px;color:rgba(255,255,255,.75);line-height:1.5;}
.cf-sigs{display:flex;flex-direction:column;gap:7px;margin-top:12px;padding-top:12px;border-top:1px solid var(--line);}
.cf-sig{display:flex;gap:8px;font-size:12px;color:rgba(255,255,255,.75);}
.cf-sig::before{content:'✓';color:var(--gold);font-weight:800;flex-shrink:0;}
/* FAQ */
.faq{padding:72px 0;background:#f8f9fa;}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:start;}
.faq-intro h2{font-family:var(--serif);font-size:clamp(32px,3.8vw,50px);font-weight:300;color:var(--bg);line-height:1.1;letter-spacing:-.02em;margin-top:16px;margin-bottom:16px;}
.faq-intro h2 em{font-style:italic;color:var(--gold);}
.faq-intro p{font-size:15px;color:var(--body);line-height:1.82;margin-bottom:26px;}
.faq-cta-box{background:var(--bg);padding:26px;text-align:center;border-radius:16px;}
.faq-cta-box h3{font-family:var(--serif);font-size:22px;color:var(--ivory);margin-bottom:7px;}
.faq-cta-box p{font-size:13px;color:rgba(255,255,255,.85);margin-bottom:16px;}
.fi-list{display:flex;flex-direction:column;gap:7px;}
.fi{border:1px solid rgba(10,15,20,.12);transition:border .2s;background:#fff;border-radius:14px;overflow:hidden;}
.fi.open{border-color:var(--gold);}
.fi-q{width:100%;background:none;border:none;padding:17px 18px;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-family:var(--sans);font-size:14px;font-weight:600;color:var(--bg);text-align:left;gap:12px;}
.fi-ico{width:24px;height:24px;border-radius:50%;background:#f8f9fa;display:flex;align-items:center;justify-content:center;font-size:15px;color:var(--gold);flex-shrink:0;transition:transform .3s;}
.fi.open .fi-ico{transform:rotate(45deg);}
.fi-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
.fi.open .fi-a{max-height:400px;}
.fi-ai{padding:0 18px 16px;font-size:14px;color:var(--body);line-height:1.8;border-top:1px solid rgba(10,15,20,.08);}
/* MODAL */
.modal-ov{position:fixed;inset:0;background:rgba(5,9,13,.94);backdrop-filter:blur(16px);z-index:2000;display:none;align-items:center;justify-content:center;padding:20px;}
.modal-ov.open{display:flex;}
.modal{background:var(--ivory);max-width:620px;width:100%;max-height:92vh;overflow-y:auto;border-radius:20px;}
.mhead{background:var(--bg);padding:22px 28px;position:sticky;top:0;z-index:5;display:flex;justify-content:space-between;align-items:flex-start;border-bottom:1px solid var(--g10);}
.mhead h3{font-family:var(--serif);font-size:22px;font-weight:400;color:var(--ivory);}
.mhead p{font-size:12px;color:rgba(255,255,255,.32);margin-top:3px;}
.mx{background:rgba(255,255,255,.07);border:none;color:var(--ivory);width:30px;height:30px;cursor:pointer;font-size:16px;display:flex;align-items:center;justify-content:center;}
.mbody{padding:26px 28px;}
.mml{font-size:10px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--body);display:block;margin-bottom:5px;}
.mmi{width:100%;padding:11px 13px;border:1px solid rgba(10,15,20,.14);font-family:var(--sans);font-size:14px;color:var(--bg);background:var(--lt);outline:none;transition:border .2s;margin-bottom:10px;}
.mmi:focus{border-color:var(--gold);}
.mmg{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.mmita{width:100%;height:80px;padding:11px 13px;border:1px solid rgba(10,15,20,.14);font-family:var(--sans);font-size:14px;color:var(--bg);background:var(--lt);outline:none;resize:none;margin-bottom:10px;}
.mmchk{display:flex;gap:8px;margin-bottom:16px;}
.mmchk input{width:14px;height:14px;accent-color:var(--gold);margin-top:2px;}
.mmchk label{font-size:12px;color:var(--body);line-height:1.5;}
.mok{display:none;padding:44px 28px;text-align:center;}
/* STICKY BAR */
.sticky-bar{display:none;position:fixed;bottom:0;left:0;right:0;z-index:800;background:var(--bg);border-top:2px solid var(--gold);padding:9px 16px;align-items:center;justify-content:space-between;gap:10px;}
/* FOOTER */
footer{background:#050d15;padding:52px 0 26px;border-top:1px solid var(--line);}
.ft-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px;}
.ft-logo{display:flex;align-items:center;gap:10px;margin-bottom:10px;}
.ft-logo img{width:42px;height:32px;object-fit:contain;}
.ft-logo-name{font-family:var(--serif);font-size:15px;color:var(--ivory);}
.ft-brand p{font-size:13px;color:rgba(255,255,255,.75);line-height:1.72;max-width:270px;}
.ft-contact{display:flex;flex-direction:column;gap:6px;margin-top:12px;}
.ft-contact a{font-size:13px;color:rgba(255,255,255,.75);transition:color .2s;}
.ft-contact a:hover{color:var(--gold);}
.ft-col h4{font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:12px;}
.ft-col ul{list-style:none;display:flex;flex-direction:column;gap:8px;}
.ft-col li a{font-size:13px;color:rgba(255,255,255,.75);cursor:pointer;transition:color .2s;}
.ft-col li a:hover{color:var(--gold);}
.ft-bot{border-top:1px solid var(--line);padding-top:20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;}
.ft-bot p{font-size:12px;color:rgba(255,255,255,.55);}
/* BREADCRUMB */
.bc-bar{background:var(--bg);padding:11px 0;border-bottom:1px solid var(--line);margin-top:44px;}
.bc{display:flex;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,.65);}
.bc span.act{color:var(--gold);}
.bc-sep{opacity:.4;}
/* STEP INDICATOR */
.step-ind{display:flex;align-items:center;margin-bottom:22px;}
.sdot{width:26px;height:26px;border-radius:50%;border:2px solid var(--mist);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:var(--body);transition:all .3s;background:#fff;}
.sdot[data-state="current"]{background:var(--gold);border-color:var(--gold);color:var(--bg);}
.sdot.done{background:var(--bg);border-color:var(--bg);color:var(--ivory);}
.sline{flex:1;height:2px;background:#f8f9fa;transition:background .3s;}
.sline.done{background:var(--gold);}
.step-block{display:none;}.step-block.active{display:block;}

.sbk{font-size:13px;color:var(--body);cursor:pointer;background:none;border:none;font-family:var(--sans);}
.smg{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
/* CHAT */
.chat-wrap{position:fixed;bottom:24px;right:24px;z-index:900;}
.chat-btn{width:52px;height:52px;border-radius:50%;background:var(--gold);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:21px;box-shadow:0 8px 28px var(--g40);}
.chat-ping{position:absolute;top:-3px;right:-3px;width:14px;height:14px;background:#22c55e;border-radius:50%;border:2px solid #fff;animation:pulse 2s ease-in-out infinite;}
.chat-panel{position:absolute;bottom:64px;right:0;width:300px;background:var(--bg2);border:1px solid var(--line);box-shadow:0 28px 72px rgba(0,0,0,.6);display:none;flex-direction:column;overflow:hidden;border-radius:16px;}
.chat-panel.open{display:flex;}
.ch{background:var(--gold);padding:12px 14px;display:flex;align-items:center;justify-content:space-between;}
.ch-info{display:flex;align-items:center;gap:9px;}
.ch-av{width:28px;height:28px;background:var(--bg);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;}
.ch-name{font-weight:700;color:var(--bg);font-size:13px;}
.ch-stat{font-size:10px;color:rgba(10,15,20,.6);}
.ch-x{background:none;border:none;cursor:pointer;font-size:16px;color:var(--bg);}
.chat-msgs{padding:12px;display:flex;flex-direction:column;gap:9px;height:170px;overflow-y:auto;}
.cm{max-width:84%;}
.cm.bot{align-self:flex-start;}.cm.user{align-self:flex-end;}
.cm-b{padding:8px 11px;font-size:13px;line-height:1.5;}
.cm.bot .cm-b{background:rgba(255,255,255,.07);color:rgba(255,255,255,.8);}
.cm.user .cm-b{background:var(--gold);color:var(--bg);font-weight:500;}
.cq-wrap{display:flex;flex-wrap:wrap;gap:5px;padding:0 12px 9px;}
.cq{padding:4px 10px;background:var(--g10);border:1px solid var(--g20);font-size:11px;color:var(--gold);cursor:pointer;transition:all .2s;}
.cq:hover{background:var(--gold);color:var(--bg);}
.chat-inp-row{display:flex;gap:6px;padding:9px 11px;border-top:1px solid var(--line);}
.chat-inp{flex:1;background:rgba(255,255,255,.06);border:1px solid var(--line);padding:7px 10px;color:var(--ivory);font-family:var(--sans);font-size:12px;outline:none;}
.chat-send{background:var(--gold);border:none;width:32px;height:32px;display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;}
/* EXIT INTENT */
.exit-ov{position:fixed;inset:0;background:rgba(5,9,13,.95);backdrop-filter:blur(18px);z-index:3000;display:none;align-items:center;justify-content:center;padding:20px;}
.exit-ov.show{display:flex;}
.exit-modal{background:var(--bg2);border:1px solid var(--g20);border-top:3px solid var(--gold);max-width:540px;width:100%;position:relative;padding:40px;border-radius:20px;}
.ex-x{position:absolute;top:12px;right:12px;background:rgba(255,255,255,.07);border:none;color:rgba(255,255,255,.5);width:28px;height:28px;cursor:pointer;display:flex;align-items:center;justify-content:center;}
.ex-ey{font-size:10px;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:12px;}
.ex-h{font-family:var(--serif);font-size:clamp(24px,4vw,38px);font-weight:300;color:var(--ivory);line-height:1.1;letter-spacing:-.02em;margin-bottom:12px;}
.ex-h em{font-style:italic;color:var(--gold);}
.ex-p{font-size:14px;color:rgba(255,255,255,.52);line-height:1.72;margin-bottom:20px;}
.ex-offer{background:rgba(201,168,76,.1);border:1px solid var(--g20);padding:16px 18px;margin-bottom:20px;display:flex;gap:14px;align-items:center;border-radius:14px;}
.ex-decline{font-size:12px;color:rgba(255,255,255,.7);text-align:center;cursor:pointer;margin-top:9px;text-decoration:underline;display:block;}
/* RESPONSIVE */
@media(max-width:1100px){
  .hero-inner,.cta-grid,.gal-hdr,.faq-grid,.guar{grid-template-columns:1fr;}
  .hform{display:none;}
  .svc-cards,.obj-cards,.testi-g,.guar-grid{grid-template-columns:1fr 1fr;}
  .psteps{grid-template-columns:repeat(3,1fr);}.psteps::before{display:none;}
  .gal-grid{grid-template-columns:1fr 1fr;}.gp.wide{grid-column:span 2;}
  .ft-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){

.hero-inner{padding:0 20px;}
  h1.h1{font-size:clamp(44px,10vw,64px);}.h1 .ind{padding-left:24px;}
  .svc-cards,.obj-cards,.testi-g,.gal-grid{grid-template-columns:1fr;}.gp.wide{grid-column:span 1;}
  .psteps{grid-template-columns:1fr 1fr;}
  .mg,.ff2,.mmg,.smg{grid-template-columns:1fr;}
  .tb-sep{display:none;}.tb{gap:12px;}
  .ft-grid{grid-template-columns:1fr;}
  .sticky-bar{display:flex;}
  
}

/* ── PAGE TOP SPACING ────────────────────────────────────── */
.bc-bar { margin-top: 48px; }
.page[style*="padding-top:72px"] { padding-top: 48px !important; }
.page[style*="padding-top: 72px"] { padding-top: 48px !important; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {

}
@media (max-width: 1060px) {



}
@media (max-width: 768px) {


  /* Content responsive */
  .wrap { padding: 0 20px !important; }
  h1.h1 { font-size: clamp(38px,9vw,62px) !important; }
  .h1 .ind { padding-left: 20px !important; }
  .svc-cards, .obj-cards, .testi-g, .gal-grid { grid-template-columns: 1fr !important; }
  .gp.wide { grid-column: span 1 !important; }
  .psteps { grid-template-columns: 1fr 1fr !important; }
  .mg,.ff2,.mmg,.smg { grid-template-columns: 1fr !important; }
  .tb-sep { display: none !important; }
  .ft-grid { grid-template-columns: 1fr !important; }
  .sticky-bar { display: flex !important; }
  
  .cta-grid { grid-template-columns: 1fr !important; }
  .faq-grid { grid-template-columns: 1fr !important; }
  .guar { grid-template-columns: 1fr !important; }
  .gal-hdr { grid-template-columns: 1fr !important; }
  .hero-inner { padding: 0 20px !important; }
  .hero-btns { flex-direction: column !important; gap: 10px !important; }
  .hero-btns .btn { width: 100% !important; justify-content: center !important; }
}
@media (max-width: 480px) {

  section, .gallery, .svc, .testi, .obj, .faq, .process, .cta-sec { padding: 60px 0 !important; }
  
  
}

/* ── PAGE TOP SPACING ────────────────────────────────────── */
.bc-bar { margin-top: 44px !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1280px) {

}
@media (max-width: 1060px) {



}
@media (max-width: 768px) {
  /* Content responsive */
  .wrap { padding: 0 20px !important; }
  .hero-inner { padding: 0 20px !important; }
  h1.h1 { font-size: clamp(38px,9vw,62px) !important; }
  .h1 .ind { padding-left: 20px !important; }
  .svc-cards,.obj-cards,.testi-g,.gal-grid { grid-template-columns: 1fr !important; }
  .gp.wide { grid-column: span 1 !important; }
  .psteps { grid-template-columns: 1fr 1fr !important; }
  .mg,.ff2,.mmg,.smg { grid-template-columns: 1fr !important; }
  .tb-sep { display: none !important; }
  .ft-grid { grid-template-columns: 1fr !important; }
  .sticky-bar { display: flex !important; }
  
  .proc-cta { flex-direction: column !important; text-align: center !important; }
  .hero-proof { flex-wrap: wrap !important; }
  .hero-btns { flex-direction: column !important; gap: 10px !important; }
  .hero-btns .btn { width: 100% !important; justify-content: center !important; }
  .cta-grid,.faq-grid,.guar { grid-template-columns: 1fr !important; }
  .gal-hdr { grid-template-columns: 1fr !important; }
  /* Nav */

}
@media (max-width: 480px) {




  h1.h1 { font-size: clamp(34px,8vw,50px) !important; }
  section,.gallery,.svc,.testi,.obj,.faq,.process,.cta-sec { padding: 56px 0 !important; }
  
  
}
@media (max-width: 360px) {
  h1.h1 { font-size: 30px !important; }
}

/* Page top spacing */
.bc-bar{margin-top:44px !important;}

/* Responsive */
@media(max-width:1280px){.nv-btn{padding:0 8px;font-size:12px;}.nv-phone{display:none;}}


/*=== DTR NAV (final) ===*/
nav{position:fixed;inset:0 0 auto 0;height:44px;z-index:999;background:rgba(22,22,23,.82);backdrop-filter:saturate(180%) blur(20px);-webkit-backdrop-filter:saturate(180%) blur(20px);border-bottom:1px solid rgba(255,255,255,.10);transition:background .3s,border-color .3s}
nav.nv-solid{background:rgba(22,22,23,.97);border-bottom-color:rgba(255,255,255,.16)}
.nv-wrap{max-width:1680px;height:100%;margin:0 auto;padding:0 22px;display:flex;align-items:center}
.nv-logo{display:flex;align-items:center;gap:9px;cursor:pointer;flex-shrink:0;margin-right:4px;opacity:.86;transition:opacity .15s}
.nv-logo:hover{opacity:1}
.nv-logo img{width:28px;height:21px;object-fit:contain}
.nv-logo-name{font-family:var(--serif);font-size:14px;font-weight:600;color:rgba(255,255,255,.9);line-height:1;white-space:nowrap}
.nv-logo-tag{font-size:7.5px;font-weight:700;letter-spacing:.26em;color:var(--gold);text-transform:uppercase;white-space:nowrap;margin-top:1px}
.nv-menu{display:flex;align-items:center;list-style:none;gap:0;flex:1;justify-content:center;height:100%}
.nv-item{position:relative;height:100%;display:flex;align-items:center}
.nv-btn{display:flex;align-items:center;gap:3px;padding:0 10px;height:100%;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:12.6px;font-weight:400;letter-spacing:-.01em;color:rgba(255,255,255,.92);cursor:pointer;background:transparent;border:none;outline:none;white-space:nowrap;position:relative;transition:color .15s;text-decoration:none}
.nv-btn:hover{color:#fff}
.nv-btn.nv-active{color:#fff}
.nv-btn.nv-active::after{content:'';position:absolute;bottom:4px;left:50%;transform:translateX(-50%);width:3px;height:3px;background:var(--gold);border-radius:50%}
.nv-caret{font-size:6px;color:rgba(255,255,255,.65);transition:transform .2s,color .15s;margin-top:1px}
.nv-item:hover .nv-caret{color:rgba(255,255,255,.85)}

/* Dropdown — hidden by default */
.nv-panel{position:absolute;top:calc(100% + 1px);left:50%;transform:translateX(-50%) translateY(-8px);min-width:230px;background:rgba(10,14,20,.92);backdrop-filter:blur(32px);-webkit-backdrop-filter:blur(32px);border:1px solid rgba(255,255,255,.10);border-top:2px solid var(--gold);box-shadow:0 20px 56px rgba(0,0,0,.65),0 0 0 1px rgba(255,255,255,.04) inset;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .22s,transform .22s,visibility .22s;z-index:1000}

/* Dropdown — shown ONLY on hover or focus (these are the ONLY selectors that set opacity:1) */
.nv-item:hover .nv-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.nv-item:focus-within .nv-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}

.nv-panel-body{padding:12px 0 16px;display:flex;gap:0;flex-wrap:wrap}
.nv-panel-col{flex:1;min-width:160px;padding:0}
.nv-panel-col + .nv-panel-col{border-left:1px solid rgba(255,255,255,.05)}
.nv-panel-head{font-size:9px;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);padding:8px 20px 4px;border-bottom:1px solid rgba(255,255,255,.06);margin-bottom:2px}
.nv-panel-link{display:flex;align-items:center;gap:9px;padding:9px 20px;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:13px;font-weight:400;color:rgba(255,255,255,.72);cursor:pointer;transition:color .14s,background .14s,padding-left .14s;white-space:nowrap;text-decoration:none;border:none;background:transparent;width:100%}
.nv-panel-icon{font-size:13px;width:18px;height:18px;text-align:center;opacity:.95;flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;color:#b07a3a;transition:color .15s,filter .2s,transform .15s}
.nv-panel-icon svg{width:18px;height:18px;display:block;color:#b07a3a;filter:drop-shadow(0 1px 0 rgba(255,220,170,.18)) drop-shadow(0 1px 2px rgba(74,45,18,.4));transition:filter .2s,transform .15s}
.nv-panel-link:hover .nv-panel-icon svg{color:#e6bc7a;filter:drop-shadow(0 1px 0 rgba(255,235,200,.35)) drop-shadow(0 2px 4px rgba(74,45,18,.55)) drop-shadow(0 0 6px rgba(224,184,98,.45));transform:translateX(1px)}
.nv-panel-link:hover{color:#fff;background:rgba(255,255,255,.055);padding-left:26px}
.nv-panel-link:hover .nv-panel-icon{opacity:1}

.nv-right{display:flex;align-items:center;gap:6px;flex-shrink:0;margin-left:4px}
.nv-phone{font-size:11px;color:rgba(255,255,255,.7);white-space:nowrap;padding-right:10px;border-right:1px solid rgba(255,255,255,.1);display:flex;align-items:center;gap:4px}
.nv-phone a{color:rgba(255,255,255,.8);font-weight:500;transition:color .15s;text-decoration:none}
.nv-phone a:hover{color:var(--gold2)}

/* Language */
.nv-lang{position:relative;display:flex;align-items:center}
.nv-lang-btn{display:flex;align-items:center;gap:4px;padding:5px 8px;background:transparent;border:none;cursor:pointer;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:11.5px;font-weight:500;color:rgba(255,255,255,.7);transition:color .15s;white-space:nowrap;letter-spacing:.02em}
.nv-lang-btn:hover{color:#fff}
.nv-lang-globe{width:14px;height:14px;opacity:.65;flex-shrink:0}
.nv-lang-code{font-size:11.5px}
.nv-lang-caret{font-size:6px;color:rgba(255,255,255,.65)}
.nv-lang-drop{position:absolute;top:calc(100% + 8px);right:0;min-width:160px;background:rgba(28,28,30,.98);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.12);border-radius:10px;box-shadow:0 12px 40px rgba(0,0,0,.5);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-4px);transition:opacity .18s,transform .18s,visibility .18s;z-index:1001;overflow:hidden}
.nv-lang.open .nv-lang-drop{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}
.nv-lang-opt{display:flex;align-items:center;gap:10px;padding:12px 16px;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:13px;color:rgba(255,255,255,.72);cursor:pointer;transition:background .12s,color .12s;border:none;background:transparent;width:100%;text-align:left}
.nv-lang-opt:hover{background:rgba(255,255,255,.06);color:#fff}
.nv-lang-opt.active{color:var(--gold2)}
.nv-lang-opt.active::after{content:'✓';margin-left:auto;color:var(--gold2);font-size:12px}
.nv-lang-flag{font-size:16px}
.nv-lang-divider{height:1px;background:rgba(255,255,255,.06);margin:0}

/* Estimating pill */
.nv-est{display:flex;align-items:center;gap:5px;padding:6px 10px;background:transparent;border:1px solid rgba(255,255,255,.18);border-radius:980px;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:11.5px;font-weight:400;color:rgba(255,255,255,.72);cursor:pointer;white-space:nowrap;transition:border-color .18s,color .18s,background .18s;letter-spacing:-.01em}
.nv-est:hover{border-color:rgba(255,255,255,.38);color:#fff;background:rgba(255,255,255,.06)}
.nv-est svg{opacity:.65}

/* Free Quote pill */
.nv-quote{display:flex;align-items:center;gap:5px;padding:6px 14px;background:var(--gold);border:none;border-radius:980px;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:11.5px;font-weight:600;color:rgba(10,15,20,.92);cursor:pointer;white-space:nowrap;position:relative;overflow:hidden;transition:background .18s,box-shadow .18s,transform .14s;letter-spacing:-.01em}
.nv-quote-spark{position:absolute;inset:0;background:linear-gradient(105deg,transparent 30%,rgba(255,255,255,.2) 50%,transparent 70%);transform:translateX(-100%);transition:transform .45s}
.nv-quote:hover .nv-quote-spark{transform:translateX(100%)}
.nv-quote:hover{background:var(--gold2);box-shadow:0 3px 14px rgba(201,168,76,.4);transform:scale(1.02)}
.nv-quote span{position:relative;z-index:1}

/* Hamburger */
.nv-ham{display:none;flex-direction:column;justify-content:center;gap:4.5px;background:transparent;border:none;cursor:pointer;padding:6px;margin-left:6px;flex-shrink:0}
.nv-ham-bar{display:block;width:18px;height:1px;background:rgba(255,255,255,.8);border-radius:2px;transition:all .25s;transform-origin:center}
.nv-ham.open .nv-ham-bar:nth-child(1){transform:rotate(45deg) translate(4px,4.5px)}
.nv-ham.open .nv-ham-bar:nth-child(2){opacity:0;transform:scaleX(0)}
.nv-ham.open .nv-ham-bar:nth-child(3){transform:rotate(-45deg) translate(4px,-4.5px)}

/* Mobile overlay */
.nv-mobile{display:none !important;position:fixed;inset:44px 0 0 0;background:rgba(18,18,20,.98);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);z-index:998;overflow-y:auto;flex-direction:column;border-top:1px solid rgba(255,255,255,.08)}
.nv-mobile.open{display:flex !important}
.nv-mob-grp{border-bottom:1px solid rgba(255,255,255,.06)}
.nv-mob-hdr{display:flex;align-items:center;justify-content:space-between;padding:14px 22px;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:14px;font-weight:400;color:rgba(255,255,255,.88);cursor:pointer;user-select:none;transition:color .14s}
.nv-mob-hdr:hover,.nv-mob-hdr.open{color:#fff}
.nv-mob-caret{font-size:8px;color:rgba(255,255,255,.65);transition:transform .22s}
.nv-mob-hdr.open .nv-mob-caret{transform:rotate(180deg);color:rgba(255,255,255,.85)}
.nv-mob-body{display:none}
.nv-mob-body.open{display:block}
.nv-mob-link{display:flex;align-items:center;gap:10px;padding:11px 22px 11px 34px;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:13px;color:rgba(255,255,255,.75);cursor:pointer;transition:color .12s,background .12s}
.nv-mob-link:hover{color:#fff;background:rgba(255,255,255,.04)}
.nv-mob-link .nv-panel-icon{opacity:.95;color:#b07a3a}
.nv-mob-link .nv-panel-icon svg{width:20px;height:20px;color:#b07a3a}
.nv-mob-single{display:flex;align-items:center;padding:14px 22px;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text',var(--sans);font-size:14px;font-weight:400;color:rgba(255,255,255,.75);cursor:pointer;border-bottom:1px solid rgba(255,255,255,.06);transition:color .12s}
.nv-mob-single:hover{color:#fff}
.nv-mob-ctas{display:flex;flex-direction:column;gap:10px;padding:20px 22px}
.nv-mob-ctas .nv-est,.nv-mob-ctas .nv-quote{width:100%;justify-content:center;padding:12px 18px;font-size:13px;border-radius:10px}
.nv-mob-tel{text-align:center;font-size:12px;color:rgba(255,255,255,.65);padding:0 0 12px}
.nv-mob-tel a{color:rgba(255,255,255,.8);font-weight:500}
.nv-mob-lang{display:flex;gap:8px;padding:14px 22px 6px;border-top:1px solid rgba(255,255,255,.06)}
.nv-mob-lang-btn{padding:6px 14px;border:1px solid rgba(255,255,255,.14);border-radius:980px;font-size:12px;font-weight:500;color:rgba(255,255,255,.75);background:transparent;cursor:pointer;transition:all .15s;font-family:-apple-system,var(--sans)}
.nv-mob-lang-btn:hover{color:#fff;border-color:rgba(255,255,255,.38)}
.nv-mob-lang-btn.active{color:var(--gold2);border-color:var(--gold);background:rgba(201,168,76,.08)}

/* Scroll progress */
#nv-progress{position:absolute;bottom:0;left:0;height:1px;width:0%;background:var(--gold);opacity:.5;pointer-events:none;transition:width .08s linear}

/* Page spacing */
.bc-bar{margin-top:44px !important}
.page > .ticker:first-child{margin-top:44px}

/* Responsive — single media-query breakpoint at 1279/1280. The browser
   auto-toggles in BOTH directions (shrink AND widen). 1280 chosen so
   common monitors (1366, 1440, 1536, 1600, 1680, 1920+) show the full
   desktop nav. Below 1280 → hamburger. Items may sit close together at
   1280-1400 but won't overlap.
   `body` prefix bumps specificity above the late `nav#nav .nv-menu`
   rule at line 3535 (which has display:flex !important). Without the
   bump, that later rule wins source order and the menu never hides. */
@media (max-width: 1279px) {
  body nav#nav .nv-menu  { display: none !important; }
  body nav#nav .nv-ham   { display: flex !important; }
  body nav#nav .nv-est   { display: none !important; }
  /* nv-phone now shown in desktop header (DSGN-08) */
}
/* Above the breakpoint, force-close any drawer that was opened while
   collapsed, even if JS is disabled — drawer overlay must never persist
   on the desktop layout. */
@media (min-width: 1280px) {
  body .nv-mobile.open { display: none !important; }
}
@media(max-width:768px){.wrap{padding:0 20px !important}.hero-inner{padding:0 20px !important}h1.h1{font-size:clamp(38px,9vw,62px) !important}.h1 .ind{padding-left:20px !important}.svc-cards,.obj-cards,.testi-g,.gal-grid{grid-template-columns:1fr !important}.gp.wide{grid-column:span 1 !important}.psteps{grid-template-columns:1fr 1fr !important}.mg,.ff2,.mmg,.smg{grid-template-columns:1fr !important}.tb-sep{display:none !important}.ft-grid{grid-template-columns:1fr !important}.sticky-bar{display:flex !important}.proc-cta{flex-direction:column !important;text-align:center !important}.hero-btns{flex-direction:column !important;gap:10px !important}.hero-btns .btn{width:100% !important;justify-content:center !important}.cta-grid,.faq-grid,.guar{grid-template-columns:1fr !important}.gal-hdr{grid-template-columns:1fr !important}.nv-mobile{inset:44px 0 0 0 !important}.nv-wrap{padding:0 18px !important}}
@media(max-width:480px){.nv-wrap{padding:0 14px !important}.nv-logo-tag{display:none !important}.nv-logo-name{font-size:13px !important}.nv-logo img{width:22px !important;height:17px !important}.nv-quote{font-size:10.5px !important;padding:5px 11px !important}h1.h1{font-size:clamp(34px,8vw,50px) !important}section,.gallery,.svc,.testi,.obj,.faq,.process,.cta-sec{padding:56px 0 !important}}
@media(max-width:360px){h1.h1{font-size:30px !important}.nv-quote{display:none !important}}

/* Homepage centred stats */
.hero-proof { display:flex; }
.hero-proof .hp { flex:0 0 auto; }
.hero-proof .hp + .hp { border-left:1px solid rgba(255,255,255,.14); }


/* Animated shimmer sweep */

/* Left accent stripe */



/* Countdown */

/* Spots remaining */


/* CTA */

/* Responsive */
@media(max-width:1060px){  }
@media(max-width:768px){
  
  
  
  
  
  
  
}
@media(max-width:480px){
  
  
}

/* ╔══════════════════════════════════════════════════════╗
   ║  CASINO URGENCY BAR — Maximum Conversion Design     ║
   ╚══════════════════════════════════════════════════════╝ */

/* Animated border lights (marquee effect) */
@keyframes marchLights {
  0%   { background-position: 0 0, 100% 0, 100% 100%, 0 100%; }
  100% { background-position: 200% 0, 100% 200%, -100% 100%, 0 -100%; }
}
@keyframes slotSpin {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-100%); }
  40%  { transform: translateY(0); }
  60%  { transform: translateY(100%); }
  80%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
@keyframes neonPulse {
  0%,100% { text-shadow: 0 0 6px var(--gold), 0 0 20px rgba(201,168,76,.5); }
  50%      { text-shadow: 0 0 12px var(--gold), 0 0 40px rgba(201,168,76,.8), 0 0 60px rgba(201,168,76,.3); }
}
@keyframes ctaShake {
  0%,100% { transform: translateX(0) scale(1); }
  10%,30%,50%,70%,90% { transform: translateX(-2px) scale(1.01); }
  20%,40%,60%,80%     { transform: translateX(2px) scale(1.01); }
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 0 12px rgba(201,168,76,.5), 0 4px 30px rgba(201,168,76,.4); }
  50%      { box-shadow: 0 0 28px rgba(201,168,76,.9), 0 4px 50px rgba(201,168,76,.7), 0 0 80px rgba(201,168,76,.2); }
}
@keyframes liveBlink {
  0%,100% { opacity:1; } 50% { opacity:0; }
}

@keyframes spotsFlash {
  0%,100% { color: var(--gold2); text-shadow: 0 0 12px rgba(201,168,76,.5); }
  50%     { color: var(--ivory); text-shadow: 0 0 20px rgba(201,168,76,.9); }
}
@keyframes fireFlicker {
  0%,100% { transform: scale(1) rotate(-3deg); }
  25%      { transform: scale(1.1) rotate(3deg); }
  75%      { transform: scale(0.95) rotate(-2deg); }
}

/* ── WRAPPER ── */
.urg-wrap {
  position: relative;
  z-index: 10;
}

/* ── MAIN URG BAR ── */
.urg {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1400px;       /* ← cap width so content stays tight */
  width: 100%;
  margin: 0 auto;           /* ← centre within the background */
  background: transparent;  /* ← background moves to .urg-wrap */
  min-height: 56px;
  cursor: pointer;
  overflow: visible;
}
/* Shaded-black bar background — pure black at the edges, lifting toward
   a subtle charcoal in the middle so the gold borders + shimmer pop. */
.urg-wrap {
  background: linear-gradient(90deg,
    #000000 0%,
    #0a0a0a 10%,
    #161616 30%,
    #1c1c1c 50%,
    #161616 70%,
    #0a0a0a 90%,
    #000000 100%
  );
  border-top: 1px solid rgba(201,168,76,.4);
  border-bottom: 1px solid rgba(201,168,76,.3);
  position: relative;
  overflow: hidden;
}
/* Animated gold shimmer sweep */
.urg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(201,168,76,.04) 35%,
    rgba(201,168,76,.10) 50%,
    rgba(201,168,76,.04) 65%,
    transparent 80%
  );
  animation: urgShimmer 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes urgShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
/* Top gold line */
.urg-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--gold), var(--gold2), var(--gold), transparent
  );
  background-size: 200%;
  animation: marchLights 2s linear infinite;
}

/* ── ZONE 1: LIVE SCARCITY ── */
.urg-live {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
  min-width: 100px;
  background: rgba(0,0,0,.25);
  text-align: center;
  gap: 0;
  overflow: visible;
}
.urg-live-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .18em;
  color: #ff5555;
  text-transform: uppercase;
  width: 100%;
  text-shadow: 0 0 10px rgba(255,85,85,.7);
  margin-bottom: 2px;
  line-height: 1;
}
.urg-live-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff5555;
  border-radius: 50%;
  animation: liveBlink .9s ease-in-out infinite;
  box-shadow: 0 0 8px #ff5555, 0 0 16px rgba(255,85,85,.4);
  flex-shrink: 0;
}
.urg-slots-n {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(255,255,255,.4);
  letter-spacing: -.03em;
  text-align: center;
  width: 100%;
  display: block;
  animation: none;  /* remove flash — white is visible enough */
}
.urg-slots-t {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.2;
  width: 100%;
  margin-top: 3px;
  display: block;
}

/* ── ZONE 2: FIRE + OFFER ── */
.urg-offer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  gap: 3px;
  min-width: 0;
  overflow: hidden;
}
.urg-headline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.urg-fire-icon {
  font-size: 18px;
  animation: fireFlicker .6s ease-in-out infinite;
  flex-shrink: 0;
}
.urg-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  white-space: nowrap;
}
.urg-title em {
  font-style: italic;
  color: var(--gold2);
  animation: neonPulse 2.5s ease-in-out infinite;
}
.urg-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.urg-sub-txt {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
}
.urg-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold2);
  white-space: nowrap;
}
.urg-viewers {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}
.urg-viewers::before {
  content: '👁';
  font-size: 10px;
}
.urg-viewers span {
  color: rgba(255,255,255,.55);
  font-weight: 700;
}

/* ── ZONE 3: COUNTDOWN ── */
.urg-clock {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  border-left: 1px solid rgba(201,168,76,.18);
  border-right: 1px solid rgba(201,168,76,.18);
  flex-shrink: 0;
}
.urg-clock-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-right: 10px;
}
.cd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 6px;
}
.cd-n {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  min-width: 34px;
  text-align: center;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 4px;
  padding: 4px 3px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.5), 0 0 8px rgba(201,168,76,.15);
}
.cd-l {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.cd-sep {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  opacity: .7;
  margin-bottom: 14px;
  padding: 0 1px;
  animation: liveBlink 1s ease-in-out infinite;
}

/* ── ZONE 4: CTA BUTTON ── */
.urg-cta {
  padding: 0 20px 0 18px;
  flex-shrink: 0;
}
.urg-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 50%, #b8913f 100%);
  border: none;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10,15,20,.95);
  cursor: pointer;
  white-space: nowrap;
  animation: ctaGlow 1.6s ease-in-out infinite;
  overflow: hidden;
  transition: transform .15s;
}
.urg-cta-btn:hover {
  animation: ctaShake .4s ease-in-out, ctaGlow 1.6s ease-in-out infinite;
  transform: scale(1.04);
}
/* Shine sweep */
.urg-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
  animation: ctaShine 1.8s ease-in-out infinite;
}
@keyframes ctaShine {
  0%   { left: -100%; }
  100% { left: 150%; }
}
.urg-cta-arrow {
  font-size: 16px;
  font-weight: 900;
  transition: transform .2s;
}
.urg-cta-btn:hover .urg-cta-arrow { transform: translateX(4px); }

/* ── RESPONSIVE ── */
@media(max-width:1200px) { .urg-viewers,.urg-clock-label{display:none;} }
@media(max-width:960px)  { .urg-clock{display:none;} .urg-offer{padding:0 16px;} }
@media(max-width:768px)  {
  .urg{flex-wrap:wrap;min-height:auto;}
  .urg-live{padding:10px 16px;border-right:none;flex-direction:row;gap:10px;width:100%;justify-content:flex-start;border-bottom:1px solid rgba(201,168,76,.1);}
  .urg-offer{padding:10px 16px;}
  .urg-cta{padding:10px 16px;width:100%;}
  .urg-cta-btn{width:100%;justify-content:center;padding:14px;}
}

/* ═══ FINAL OVERRIDE 2026-04-26 ═══════════════════════════════════════════════
   Gold tokens reconciled for WCAG AA two-direction contrast.
   Source defined --gold:#c9a84c (2.24:1 vs white, fails AA in both directions).
   These overrides re-set the token to the AA-compliant 3-token system.
   See CLAUDE.md "Brand gold" note for rationale. */
:root {
  --gold:       #b88723;
  --gold-text:  #6f4e12;
  --gold-light: #e0b862;
}


/* ==========================================================================
   PRICE BUILDER (added 2026-04-26)
   Renders into <div class="pb-builder" data-pb-service="X"> on residential
   service pages. Uses site tokens --bg / --ivory / --gold / --gold-light /
   --gold-text / --serif / --sans / --body / --line / --g20.
   ========================================================================== */
.pb-section { background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); padding: 96px 0; border-top: 1px solid rgba(184,135,35,.18); border-bottom: 1px solid rgba(184,135,35,.18); }
.pb-section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.pb-builder { color: var(--bg); }

.pb-header { text-align: center; margin-bottom: 48px; }
.pb-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 16px; }
.pb-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 300; line-height: 1.1; letter-spacing: -.015em; color: var(--bg); margin-bottom: 18px; }
.pb-intro { font-size: 16px; line-height: 1.65; color: var(--body); max-width: 760px; margin: 0 auto; }

.pb-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }

.pb-controls { display: flex; flex-direction: column; gap: 28px; background: #fff; border: 1px solid rgba(10,15,20,.06); border-radius: 16px; padding: 36px; box-shadow: 0 12px 40px rgba(10,15,20,.05); }

.pb-step { display: flex; gap: 18px; }
.pb-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--serif); font-size: 16px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 14px rgba(184,135,35,.3); }
.pb-step-body { flex: 1; min-width: 0; }
.pb-step-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--bg); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(184,135,35,.18); }

.pb-sqft-row { display: flex; align-items: center; gap: 18px; }
.pb-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--gold-light), var(--gold)); outline: none; cursor: pointer; }
.pb-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--gold); cursor: grab; box-shadow: 0 2px 8px rgba(0,0,0,.18); transition: transform .15s; }
.pb-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.pb-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--gold); cursor: grab; }
.pb-sqft-input-group { display: flex; align-items: center; gap: 8px; }
.pb-sqft-num { width: 100px; padding: 10px 12px; font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--bg); border: 1px solid rgba(10,15,20,.16); border-radius: 12px; text-align: center; }
.pb-sqft-num:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,135,35,.2); }
.pb-sqft-unit { font-size: 13px; font-weight: 600; color: var(--body); letter-spacing: .04em; text-transform: uppercase; }

.pb-radio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.pb-radio-card { position: relative; padding: 14px 16px; border: 1px solid rgba(10,15,20,.12); border-radius: 14px; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; background: #ffffff; }
.pb-radio-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.pb-radio-card-body { font-size: 14px; font-weight: 500; color: var(--bg); line-height: 1.4; }
.pb-radio-card:hover { border-color: var(--gold); }
.pb-radio-card:has(input:checked) { border-color: var(--gold); background: rgba(184,135,35,.08); box-shadow: inset 0 0 0 1px var(--gold); }
.pb-urgency-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

.pb-finish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pb-finish-card { position: relative; padding: 18px 18px 16px; border: 1px solid rgba(10,15,20,.12); border-radius: 14px; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; background: #ffffff; }
.pb-finish-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.pb-finish-card-name { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--bg); margin-bottom: 6px; }
.pb-finish-card-blurb { font-size: 12.5px; line-height: 1.5; color: var(--body); }
.pb-finish-card:hover { border-color: var(--gold); }
.pb-finish-card:has(input:checked) { border-color: var(--gold); background: linear-gradient(180deg, #ffffff 0%, rgba(184,135,35,.08) 100%); box-shadow: 0 6px 20px rgba(184,135,35,.18); }
.pb-finish-card:has(input:checked) .pb-finish-card-name { color: var(--gold-text); }

.pb-checkbox-list { display: flex; flex-direction: column; gap: 8px; }
.pb-checkbox-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid rgba(10,15,20,.08); border-radius: 12px; cursor: pointer; transition: border-color .15s, background .15s; background: #ffffff; }
.pb-checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; margin-top: 1px; }
.pb-checkbox-text { font-size: 14px; line-height: 1.45; color: var(--bg); }
.pb-checkbox-row:hover { border-color: var(--gold); }
.pb-checkbox-row:has(input:checked) { border-color: var(--gold); background: rgba(184,135,35,.06); }
.pb-permit-row { background: linear-gradient(135deg, rgba(184,135,35,.06), rgba(184,135,35,.02)); border-color: rgba(184,135,35,.2); }

.pb-result { background: var(--bg); color: var(--ivory); border-radius: 16px; padding: 36px 32px; position: sticky; top: 92px; box-shadow: 0 16px 56px rgba(10,15,20,.18); border: 1px solid rgba(184,135,35,.25); border-top-width: 3px; border-top-color: var(--gold); }
.pb-result-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.pb-result-amount { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 42px); font-weight: 300; line-height: 1.1; letter-spacing: -.02em; color: var(--ivory); margin-bottom: 8px; }
.pb-result-num { transition: opacity .25s; }
.pb-result-dash { color: var(--gold-light); margin: 0 6px; font-weight: 200; }
.pb-result-currency { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.pb-cta { display: inline-flex !important; width: 100%; justify-content: center; padding: 16px 24px !important; font-size: 15px !important; text-decoration: none; }
.pb-disclaimer { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.6); margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }

.pb-error { padding: 24px; background: #f8f9fa; border: 1px solid #f0c0c0; border-radius: 12px; color: #a00; font-family: var(--sans); font-size: 14px; }

@keyframes pb-flash { 0% { opacity: .55; } 100% { opacity: 1; } }
.pb-result-num { animation: pb-flash .25s ease-out; }

@media (max-width: 980px) {
  .pb-section { padding: 64px 0; }
  .pb-section-wrap { padding: 0 24px; }
  .pb-grid { grid-template-columns: 1fr; gap: 24px; }
  .pb-controls { padding: 24px; }
  .pb-step { gap: 14px; }
  .pb-step-num { width: 28px; height: 28px; font-size: 14px; }
  .pb-step-title { font-size: 18px; }
  .pb-finish-grid { grid-template-columns: 1fr; }
  .pb-radio-grid { grid-template-columns: 1fr 1fr; }
  .pb-result { position: static; padding: 28px 22px; }
  .pb-sqft-row { flex-wrap: wrap; }
  .pb-sqft-input-group { width: 100%; justify-content: flex-start; }
}
@media (max-width: 540px) {
  .pb-radio-grid { grid-template-columns: 1fr; }
  .pb-header { margin-bottom: 32px; }
}

/* ===========================================================================
   FIRE GRADIENT — hero italic accents (added 2026-04-26)
   Applies a deep-red -> orange -> gold -> bright-yellow gradient to every
   <em> italic accent inside any hero (sections / headers whose class
   contains "hero" plus the home page's plain ".hero"). These were
   previously rendered as solid orange/gold; the brand wants the warmer
   fire-fade treatment over image-overlay backgrounds.
   !important is used because the source design system already has scoped
   "[class]-hero h1 em" rules at the same specificity — last-wins cascade
   alone isn't enough across all hero variants.
   =========================================================================== */
:is([class*="hero"], .hero) :is(h1, .h1, .viz-h1, .cn-h1, .pg-h1) em {
  /* Metallic luxury bronze — sharper highlights and shadows within the
     bronze family for a polished metal look. NO chrome / cool tones —
     all stops stay warm bronze/copper. The middle "bounce light" stop
     gives it the polished metal sheen without crossing into chrome. */
  background: linear-gradient(135deg,
    #f0d4a0 0%,    /* high bronze highlight */
    #d4a060 16%,   /* light bronze */
    #b07a3a 32%,   /* mid bronze */
    #616161 48%,   /* darker bronze */
    #e6bc7a 60%,   /* secondary highlight (polish bounce) */
    #c08a48 74%,   /* light-mid bronze */
    #535353 88%,   /* deep bronze */
    #a00 100%   /* deepest bronze shadow */
  ) !important;
  background-size: 100% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  /* layered drop-shadow gives the metallic depth without a glow */
  filter:
    drop-shadow(0 1px 0 rgba(255,220,170,.18))
    drop-shadow(0 2px 5px rgba(0,0,0,.5))
    drop-shadow(0 0 14px rgba(180,120,60,.12));
  font-style: italic;
}

/* ===========================================================================
   MINIMAL HEADER / BLENDED-NAV REDESIGN — 2026-04-26
   Premium light-touch override of the existing nav chrome. The 7-category
   nav stays in place (Residential, Commercial, Designs, Financing, Our
   Company, Insights, Contact) but the visual weight drops dramatically:
   transparent at top of page, floating-text buttons, subtle underline on
   hover, larger logo. Existing dropdown / mobile drawer / i18n / scroll
   progress bar all keep working — only styling changes.
   =========================================================================== */
nav#nav {
  /* Dark-glass by default. The body now has padding-top:72px (set in
     NAV LAYOUT REPAIR), so the nav floats over a 72px strip of body
     content above the hero. On pages with cream body backgrounds (contact,
     forms, etc.), a transparent nav exposes that cream — looks broken.
     The dark-glass default reads cleanly on every page in every state. */
  background: rgba(10, 15, 20, 0.85) !important;
  backdrop-filter: blur(22px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(140%) !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.18) !important;
}
nav#nav.nv-solid {
  /* Slightly more opaque once the user scrolls — same colour, +5% alpha. */
  background: rgba(10, 15, 20, 0.94) !important;
  backdrop-filter: blur(22px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(140%) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

/* Logo — 2x size + better hierarchy */
nav#nav .nv-logo { gap: 14px !important; opacity: 1 !important; padding: 6px 0; }
nav#nav .nv-logo img { width: 56px !important; height: 42px !important; }
nav#nav .nv-logo-name { font-size: 15px !important; font-weight: 600 !important; letter-spacing: .005em !important; }
nav#nav .nv-logo-tag { font-size: 9px !important; letter-spacing: .26em !important; opacity: .68; }

/* Wrap padding — slightly more generous */
nav#nav .nv-wrap { padding-top: 14px; padding-bottom: 14px; }

/* Phone hidden defensively (also stripped from HTML) */
/* nv-phone shown in desktop header (DSGN-08) */

/* Center menu — floating text style, no panel-bar backdrop */
nav#nav .nv-menu { gap: 4px !important; }
nav#nav .nv-btn {
  font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif) !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: .015em !important;
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.84) !important;
  padding: 10px 16px !important;
  position: relative;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}
nav#nav .nv-btn::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 6px;
  height: 1px;
  background: var(--gold-light, #e0b862);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
nav#nav .nv-item:hover .nv-btn,
nav#nav .nv-btn:hover,
nav#nav .nv-btn:focus,
nav#nav .nv-btn.nv-active { color: #fff !important; }
nav#nav .nv-item:hover .nv-btn::after,
nav#nav .nv-btn:hover::after,
nav#nav .nv-btn.nv-active::after { transform: scaleX(1); }
nav#nav .nv-caret { opacity: .55; font-size: 9px; margin-left: 2px; }

/* Dropdown panels — keep existing layout but lighter shadow + tighter spacing */
nav#nav .nv-panel {
  border-top-width: 1px !important;
  border-top-color: rgba(184,135,35,.55) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.04) inset !important;
  border-radius: 12px !important;
  margin-top: 8px;
}
/* Invisible hover bridge — covers the 8px gap between trigger and panel
   so the cursor can traverse without breaking the hover chain. */
nav#nav .nv-panel::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  pointer-events: auto;
}
/* Open the panel on hover OR on JS-controlled .nv-open class.
   The .nv-open class is added by mouseenter handlers in script.js so
   the menu reliably opens on touch-capable laptops where :hover is
   suppressed by the browser. */
nav#nav .nv-item.nv-open > .nv-panel,
nav#nav .nv-item:hover > .nv-panel,
nav#nav .nv-item:focus-within > .nv-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}
/* Active state on the trigger when open */
nav#nav .nv-item.nv-open > .nv-btn { color: #fff !important; }
nav#nav .nv-item.nv-open > .nv-btn::after { transform: scaleX(1); }
nav#nav .nv-item.nv-open .nv-caret { color: var(--gold-light, #e0b862); transform: rotate(180deg); }
nav#nav .nv-caret { transition: transform .22s ease, color .22s ease; display: inline-block; }

/* Right cluster — minimal & airy */
nav#nav .nv-right { gap: 10px !important; }

/* Language switcher — make it lighter weight */
nav#nav .nv-lang-btn {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.86) !important;
  border-radius: 999px !important;
  padding: 7px 11px !important;
  transition: border-color .18s, color .18s;
}
nav#nav .nv-lang-btn:hover { border-color: rgba(224,184,98,.65) !important; color: #fff !important; }
nav#nav .nv-lang-globe { width: 14px; height: 14px; }
nav#nav .nv-lang-code { font-size: 11px; font-weight: 600; letter-spacing: .08em; }

/* Estimating — outline-style ghost button */
nav#nav .nv-est {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: .04em !important;
  padding: 9px 16px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  transition: border-color .18s, color .18s, background .18s;
}
nav#nav .nv-est:hover {
  border-color: var(--gold-light, #e0b862) !important;
  color: var(--gold-light, #e0b862) !important;
}

/* Free Quote — the single primary CTA, stays gold but slimmer */
nav#nav .nv-quote {
  background: var(--gold, #b88723) !important;
  color: var(--bg, #0a0f14) !important;
  border: none !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
nav#nav .nv-quote:hover {
  background: var(--gold-light, #e0b862) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,135,35,.35);
}

/* Hamburger — keep functional, slightly less stark */
nav#nav .nv-ham { background: transparent !important; border: none !important; }
nav#nav .nv-ham-bar { background: rgba(255,255,255,.92) !important; }

/* Progress bar (kept) */
nav#nav #nv-progress {
  height: 1px !important;
  background: linear-gradient(90deg, var(--gold, #b88723), var(--gold-light, #e0b862)) !important;
}

/* MOBILE — tighten and keep the same minimal feel */
@media (max-width: 980px) {
  nav#nav .nv-menu { display: none !important; }  /* the 7-category menu hides; hamburger drawer takes over */
  nav#nav .nv-logo img { width: 48px !important; height: 36px !important; }
  nav#nav .nv-logo-name { font-size: 13px !important; }
  nav#nav .nv-logo-tag { display: none; }
}
@media (max-width: 600px) {
  nav#nav .nv-est { display: none !important; }   /* on small phones, drop Estimating to save room */
  nav#nav .nv-lang-btn { padding: 6px 9px !important; }
  nav#nav .nv-quote { font-size: 11.5px !important; padding: 8px 14px !important; }
}

/* ===========================================================================
   PREMIUM GOLD GRADIENT SYSTEM — added 2026-04-26
   Six-stop metallic gradient (highlight -> light gold -> main -> rich ->
   deep -> shadow) with inner sheen, soft outer glow, and pressed/lifted
   states. Replaces flat orange/gold across primary CTAs and accent text
   without touching solid --gold (kept for borders / single-color text).
   =========================================================================== */
:root {
  --gold-grad:        linear-gradient(135deg,#b88723 0%,#9a6f17 40%,#7a5512 70%,#6e4f12 100%);
  --gold-grad-bright: linear-gradient(135deg,#fffad6 0%,#fae08c 18%,#efcb66 38%,#d9a938 58%,#b98623 78%,#676767 100%);
  --gold-grad-radial: radial-gradient(circle at 30% 30%,#caa133 0%,#a8781e 45%,#7a5512 72%,#6e4f12 100%);
  --gold-grad-text:   linear-gradient(135deg,#b88723 0%,#9a6f17 45%,#7a5512 72%,#6e4f12 100%);
  --gold-glow:        rgba(247,215,116,.45);
}

/* --- CTA BUTTONS ----------------------------------------------------------
   Targets every primary "gold" button class on the site. The combined
   background layers a top inner-sheen onto the multi-stop gradient. The
   inner box-shadows give the polished-metal edge; the outer shadow gives
   the soft drop + initial glow.
   -------------------------------------------------------------------------- */
.btn-gold,
.btn.btn-gold,
nav#nav .nv-quote,
.nv-quote,
.pb-cta,
.cf-submit,
.pg-btn-gold,
.viz-locked-submit,
.kt-final-submit,
.bs-final-submit,
.bt-final-submit,
.ha-final-submit,
.ac-final-submit,
.at-final-submit,
.ap-final-submit,
.rd-form-btn,
.ap-form-btn,
.ch-final-submit,
.bs-final-btn,
.viz-cta {
  background:
    linear-gradient(180deg, rgba(255,255,255,.36) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,0) 72%, rgba(0,0,0,.12) 100%),
    var(--gold-grad) !important;
  background-blend-mode: normal !important;
  color: #121212 !important;
  border: 1px solid rgba(122,83,21,.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,243,176,.6),
    inset 0 -1px 0 rgba(0,0,0,.20),
    0 4px 14px rgba(184,135,35,.30),
    0 1px 3px rgba(0,0,0,.18) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.20);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .25s, filter .25s, background .25s !important;
  position: relative;
  font-weight: 600 !important;
  letter-spacing: .04em;
}

/* Hover: brighter gradient, lifted, ambient glow */
.btn-gold:hover, .btn.btn-gold:hover,
nav#nav .nv-quote:hover, .nv-quote:hover,
.pb-cta:hover, .cf-submit:hover,
.pg-btn-gold:hover, .viz-locked-submit:hover,
.kt-final-submit:hover, .bs-final-submit:hover, .bt-final-submit:hover,
.ha-final-submit:hover, .ac-final-submit:hover, .at-final-submit:hover, .ap-final-submit:hover,
.rd-form-btn:hover, .ap-form-btn:hover,
.ch-final-submit:hover, .bs-final-btn:hover, .viz-cta:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.46) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,0) 72%, rgba(0,0,0,.10) 100%),
    var(--gold-grad-bright) !important;
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 10px 28px rgba(247,215,116,.38),
    0 0 30px var(--gold-glow) !important;
  filter: brightness(1.04);
}

/* Active: subtle press */
.btn-gold:active, .btn.btn-gold:active,
nav#nav .nv-quote:active, .nv-quote:active,
.pb-cta:active, .cf-submit:active,
.pg-btn-gold:active, .viz-locked-submit:active,
.kt-final-submit:active, .bs-final-submit:active, .bt-final-submit:active,
.ha-final-submit:active, .ac-final-submit:active, .at-final-submit:active,
.viz-cta:active {
  transform: translateY(0) scale(.99);
  filter: brightness(.96);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,.18),
    inset 0 -1px 0 rgba(255,243,176,.3),
    0 2px 6px rgba(184,135,35,.20) !important;
}

/* --- ACCENT GRADIENT TEXT -------------------------------------------------
   Strategic gold-clipped text on stat numbers, countdown digits, and key
   visual numerals. Solid var(--gold-text) is still used for body text,
   nav links, and other small-text contexts where gradient text is overkill.
   Hero <em> italics keep their fire-fade gradient (separate rule earlier).
   -------------------------------------------------------------------------- */
.gold-grad-text,
.cn-trust-num em,
.viz-hero-meta-num,
.hp-val,
.pb-result-amount,
.urg-slots-n,
#cdD, #cdH, #cdM, #cdS,
.urg-cd-num {
  background: var(--gold-grad-text);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* --- BADGES + TILES with gold backgrounds --------------------------------
   Promo strip backgrounds, tier badges, "Spring Exclusive" pill in hero.
   Apply the full metallic background layering to give them depth.
   -------------------------------------------------------------------------- */
.kt-tier-badge,
.ap-tier-badge,
.urg-value-pill,
.viz-hero-cta .btn-gold,
.kt-promo {
  background:
    linear-gradient(180deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(0,0,0,.10) 100%),
    var(--gold-grad) !important;
  color: #121212 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,243,176,.5),
    0 2px 6px rgba(184,135,35,.3) !important;
}

/* --- HERO LIGHT ACCENTS (gold lighting tints over hero images) -----------
   Subtle gold radial overlay drifts behind dark heroes. Already present
   on a couple of pages via inline style; nothing to add here unless you
   want to extend further.
   -------------------------------------------------------------------------- */

/* --- ICON / STAR colors ---------------------------------------------------
   Emoji stars can't be gradient-clipped (they render as colour glyphs).
   Where stars use a non-emoji span / SVG, this class can be added.
   -------------------------------------------------------------------------- */
.gold-icon {
  color: #C9972B;
  filter:
    drop-shadow(0 0 4px rgba(247,215,116,.4))
    drop-shadow(0 1px 0 rgba(255,243,176,.35));
}

/* --- PROGRESS BAR (header scroll progress) -------------------------------- */
nav#nav #nv-progress {
  background: linear-gradient(90deg, #6e4f12 0%, #9a6f17 50%, #b88723 100%) !important;
}

/* Reduce-motion respect */
@media (prefers-reduced-motion: reduce) {
  .btn-gold, .btn.btn-gold, nav#nav .nv-quote, .nv-quote,
  .pb-cta, .cf-submit, .pg-btn-gold, .viz-locked-submit,
  .kt-final-submit, .bs-final-submit, .bt-final-submit,
  .ha-final-submit, .ac-final-submit, .at-final-submit, .ap-final-submit,
  .rd-form-btn, .ap-form-btn, .ch-final-submit, .bs-final-btn, .viz-cta {
    transition: none !important;
  }
  .btn-gold:hover, .btn.btn-gold:hover, nav#nav .nv-quote:hover, .nv-quote:hover,
  .pb-cta:hover, .cf-submit:hover, .pg-btn-gold:hover, .viz-locked-submit:hover,
  .kt-final-submit:hover, .bs-final-submit:hover, .bt-final-submit:hover,
  .ha-final-submit:hover, .ac-final-submit:hover, .at-final-submit:hover, .ap-final-submit:hover,
  .rd-form-btn:hover, .ap-form-btn:hover, .ch-final-submit:hover, .bs-final-btn:hover, .viz-cta:hover {
    transform: none !important;
  }
}

/* ===========================================================================
   HERO V2 — premium home-page hero showcase (added 2026-04-26)
   Left: eyebrow + H1 + sub + 2 CTAs + 4 stats. Right: kitchen image faded
   into the dark background. Bottom (still inside hero): 5-item feature bar
   in a dark-glass container with thin gold border.

   Plus site-wide reusable .btn-outline-gold class and a .btn-ghost gold-
   border fix (was white).
   =========================================================================== */
/* CSS GRID LAYOUT — text + image are siblings in row 2; the image cell
   auto-stretches to match the text cell height so the picture adapts to
   each page's content (no overlap with text on the left, no overlap with
   the .hv-features bar below). Equal vertical breathing room above the
   picture (row 1) and below it (gap before .hv-features) is fixed in CSS. */
.hero-v2 {
  position: relative;
  min-height: 0;
  background: var(--bg, #0a0f14);
  color: var(--ivory, #f8f9fa);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns:
    minmax(48px, 1fr)
    minmax(0, 600px)
    minmax(0, 600px)
    minmax(48px, 1fr);
  grid-template-rows: 56px auto auto 32px;
  column-gap: 64px;
  align-items: stretch;
}
.hero-v2::before {
  /* very subtle radial gold lighting in upper-right behind everything */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 22%, rgba(184,135,35,.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 12% 70%, rgba(232,201,110,.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Right-side image faded into the page from the left.
   Wrapper doubles as a picture frame: rounded corners, thin gold trim
   (inset box-shadow), and a soft drop shadow that grounds it against the
   dark hero. overflow:hidden clips the studio canvas + fade overlay to
   the rounded rectangle. */
.hv-imgwrap {
  /* Grid cell: text-column = col 2, image-column = col 3, both in row 2.
     Image cell auto-stretches to match text height so picture adapts per
     page. min-height keeps it visually substantial when text is short. */
  grid-column: 3;
  grid-row: 2;
  position: relative;
  inset: auto;
  min-height: 380px;
  z-index: 1;
  pointer-events: none;
  border-radius: 16px;
  overflow: hidden;
  /* Warm gold halo frame — concentric layers from crisp gold outline at the
     edge, ramping out through a near + far gold glow, with a dark drop
     shadow underneath for grounding. Inset trim adds a thin gold bevel
     inside the frame. Sized to ~5% of image width (~40px halo). */
  box-shadow:
    0 0 0 1px       rgba(232,201,110,.55),
    0 0 12px 1px    rgba(232,201,110,.45),
    0 0 28px 4px    rgba(184,135,35,.50),
    0 0 56px 10px   rgba(184,135,35,.28),
    0 28px 70px 0   rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(232,201,110,.55),
    inset 0 0 0 2px rgba(10,15,20,.55);
}
.hv-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hv-img-fade {
  position: absolute; inset: 0;
  /* Frame defines the visual rectangle, so top/bottom fade is gentler now —
     just a soft tint at the edges instead of fading to solid bg. The
     left-to-right fade stays strong so the headline/CTA column stays clean
     where the framed image meets the text column. */
  background:
    linear-gradient(to right,
      rgba(10,15,20,.85) 0%,
      rgba(10,15,20,.55) 32%,
      rgba(10,15,20,.22) 65%,
      rgba(10,15,20,.05) 100%),
    linear-gradient(to bottom,
      rgba(10,15,20,.45) 0%,
      rgba(10,15,20,.10) 14%,
      rgba(10,15,20,.0)  28%,
      rgba(10,15,20,.0)  72%,
      rgba(10,15,20,.10) 86%,
      rgba(10,15,20,.45) 100%);
}
.hv-img-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 30% 40% at 80% 35%, rgba(247,215,116,.10), transparent 60%);
}

/* Inner content — sits in column 2 of the .hero-v2 grid. Width / centering
   come from the grid (col 2 is minmax(0, 600px) with 1fr padding columns
   on either side), so no max-width / margin / padding needed here. */
.hv-inner {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 2;
}
.hv-left {
  max-width: 660px;
}

/* Eyebrow */
.hv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hv-eyebrow-bar {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold, #b88723), var(--gold-light, #e0b862));
}
.hv-eyebrow-txt {
  font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* Headline + sub */
.hv-h {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ivory, #f8f9fa);
  margin: 0 0 18px;
}
.hv-h em {
  /* picks up the global hero <em> fire-fade gradient already defined */
  font-style: italic;
  font-weight: 400;
}
.hv-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 0 24px;
}
.hv-sub strong {
  color: rgba(255,255,255,.95);
  font-weight: 600;
}

/* CTAs */
.hv-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hv-cta-primary,
.hv-cta-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 17px 28px !important;
  font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  cursor: pointer;
  white-space: nowrap;
}
.hv-cta-arrow,
.hv-cta-play {
  flex-shrink: 0;
  margin-left: 4px;
}

/* Stats row — equal-width 4-col grid (text now lives in its own grid
   column inside .hero-v2, so stats can use the full text-column width
   without overlapping the picture). Icon sits to the LEFT of the
   number + label. */
.hv-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
  align-items: flex-start;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.hv-stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.hv-stat-ico {
  width: 24.2px;
  height: 24.2px;
  flex-shrink: 0;
  margin-top: 5px;
  color: #C9972B;
  filter: drop-shadow(0 0 6px rgba(247,215,116,.32)) drop-shadow(0 1px 0 rgba(255,243,176,.3));
}
.hv-stat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.hv-stat-num {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(16.5px, 1.595vw, 21.45px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.005em;
  /* allow long phrases to wrap WITHIN their own column instead of overflowing
     into the next stat's icon (fixes commercial-page + translated-text overlap) */
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: none;
  /* premium gold gradient — clipped to text */
  background: linear-gradient(135deg, #b88723 0%, #9a6f17 45%, #7a5512 72%, #6e4f12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hv-stat-num-sup {
  font-size: .7em;
  letter-spacing: 0;
  margin-left: 2px;
}
.hv-stat-lbl {
  font-size: 13.2px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
  /* allow wrapping; prevent overlapping the next number above */
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Feature bar — sits in row 3 of the .hero-v2 grid, spanning text + image
   columns. margin-top equals the row-1 top breathing room so the picture
   above is equidistant from the menu (above) and the features bar (below). */
.hv-features {
  grid-column: 2 / 4;
  grid-row: 3;
  position: relative;
  z-index: 2;
  margin: 56px 0 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(184,135,35,.30);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,243,176,.08),
    0 12px 40px rgba(0,0,0,.35);
}
.hv-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.hv-feature::after {
  /* thin gold divider between items */
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: -11px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,135,35,.30) 30%, rgba(184,135,35,.30) 70%, transparent);
}
.hv-feature:last-child::after { display: none; }
.hv-feature-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #C9972B;
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(247,215,116,.28)) drop-shadow(0 1px 0 rgba(255,243,176,.25));
}
.hv-feature-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hv-feature-h {
  font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.25;
  /* keep gold heading on a single line — labels wrap independently */
  white-space: nowrap;
  overflow: visible;
  /* gold-clipped */
  background: linear-gradient(135deg, #b88723, #9a6f17, #6e4f12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hv-feature-p {
  font-size: 13.8px;
  line-height: 1.4;
  color: rgba(255,255,255,.78);
}

/* Mobile / tablet — the 4-col grid stays the same on tablet so the picture
   keeps adapting to text height; only stats + features bar reflow. */
@media (max-width: 1080px) {
  .hero-v2 { column-gap: 48px; }
  .hv-imgwrap { min-height: 320px; }
  .hv-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 28px; }
  .hv-features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 22px; padding: 18px 20px; }
  .hv-feature::after { display: none; }
}
@media (max-width: 720px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    grid-template-rows: 28px auto auto auto 28px;
    column-gap: 0;
    padding: 0 20px;
    min-height: auto;
  }
  .hv-imgwrap {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    height: 200px;
    margin-bottom: 24px;
  }
  .hv-inner { grid-column: 1; grid-row: 3; }
  .hv-features { grid-column: 1; grid-row: 4; margin: 24px 0 0; }
  .hv-img-fade { background: linear-gradient(to bottom, transparent 0%, rgba(10,15,20,.4) 60%, var(--bg, #0a0f14) 100%); }
  .hv-h { font-size: clamp(26px, 6.5vw, 38px); margin: 0 0 14px; }
  .hv-sub { font-size: 15px; margin: 0 0 18px; }
  .hv-ctas { margin-bottom: 24px; }
  .hv-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding-top: 18px; }
  .hv-stat-num { font-size: 20.35px; white-space: normal; overflow-wrap: break-word; }
  .hv-stat-lbl { font-size: 13.5px; }
  .hv-feature-h { font-size: 15px; white-space: nowrap; }
  .hv-feature-p { font-size: 13.5px; }
  .hv-features { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
  .hv-ctas { flex-direction: column; align-items: stretch; }
  .hv-cta-primary, .hv-cta-secondary { width: 100%; }
}

/* ===========================================================================
   SITE-WIDE — outline-gold button + .btn-ghost gold-border fix
   These apply on every page, replacing the previous white-border secondary
   button look. Use .btn-outline-gold on any new outline secondary CTA.
   =========================================================================== */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  color: var(--gold-light, #e0b862);
  border: 1.5px solid rgba(184,135,35,.65);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s, transform .2s;
}
.btn-outline-gold:hover {
  border-color: var(--gold-light, #e0b862);
  color: #FFF3B0;
  background: rgba(184,135,35,.08);
  box-shadow: 0 0 24px rgba(247,215,116,.18);
  transform: translateY(-1px);
}
.btn-outline-gold:active { transform: translateY(0); }

/* .btn-ghost: replace the old white border with gold (site-wide) */
.btn-ghost {
  background: transparent !important;
  color: var(--gold-light, #e0b862) !important;
  border: 1.5px solid rgba(184,135,35,.55) !important;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s !important;
}
.btn-ghost:hover {
  background: rgba(184,135,35,.08) !important;
  border-color: var(--gold-light, #e0b862) !important;
  color: #FFF3B0 !important;
  box-shadow: 0 0 22px rgba(247,215,116,.18) !important;
}

/* ===========================================================================
   HERO + PROMO + URG SITE-WIDE THEME ROLLOUT — added 2026-04-26
   Brings every hero across the site into the same dark luxury theme as
   the home page hero-v2 — without touching per-page hero markup. Three
   coordinated effects:
     a. Subtle gold radial lighting layer (top-right + bottom-left)
     b. Stat numbers across the site clip a gold gradient
     c. Promo strips (kt-promo / bt-promo) flip from solid-gold-background
        to dark-glass + gold-border feature bars (visually continuous
        with the hero)
     d. urg-wrap (now inside the home hero) becomes a dark-glass strip
        instead of its previous mixed look
   =========================================================================== */

/* (a) Radial gold lighting on all hero variants. Skip light-themed
   .ch-page (coach homes) — the gold tint clashes with the white bg. */
[class$="-hero"]:not(.ch-hero),
section.hero,
section.hero-v2 {
  position: relative;
  isolation: isolate;
}
[class$="-hero"]:not(.ch-hero):not(.hero-v2)::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 22%, rgba(184,135,35,.14), transparent 60%),
    radial-gradient(ellipse 40% 60% at 12% 70%, rgba(232,201,110,.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* (b) Gold-gradient stat numbers — broad attribute selectors hit every
   per-page convention without needing to enumerate each. */
.counter,
.hp-val,
.hv-stat-num,
[class$="-stat-num"],
[class$="-stat-val"],
[class$="-hero-num"],
[class$="-hero-val"],
.cn-trust-num em,
.viz-hero-meta-num,
.pb-result-amount,
.urg-slots-n,
#cdD, #cdH, #cdM, #cdS,
.urg-cd-num {
  background: linear-gradient(135deg, #b88723 0%, #9a6f17 45%, #7a5512 72%, #6e4f12 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* (c) PROMO STRIPS — flip to dark-glass + gold border to blend with hero
   The strips are the bands directly under the hero on kitchen + bathroom
   pages (kt-promo / bt-promo). Same visual language as the new feature
   bar inside the home hero so the page reads as one continuous block. */
[class$="-promo"] {
  background: linear-gradient(180deg, rgba(20,28,38,.92) 0%, rgba(14,20,28,.96) 100%) !important;
  border-top: 1px solid rgba(184,135,35,.30) !important;
  border-bottom: 1px solid rgba(184,135,35,.30) !important;
  position: relative;
  z-index: 2;
}
[class$="-promo"]::before {
  /* very subtle gold radial behind the strip for depth */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(184,135,35,.12), transparent 70%);
  pointer-events: none;
}
[class$="-promo-item"] {
  position: relative;
  z-index: 1;
  border-right-color: rgba(184,135,35,.18) !important;
}
[class$="-promo-item"]:last-child { border-right-color: transparent !important; }
[class$="-promo-star"] {
  color: #C9972B !important;
  filter: drop-shadow(0 0 4px rgba(247,215,116,.32));
}
[class$="-promo-txt"] {
  color: #f8f9fa !important;          /* main text light */
}
[class$="-promo-txt"] span {
  color: rgba(250,250,250,.62) !important;   /* sub text dimmed */
}


/* ===========================================================================
   GLOBAL HERO IMAGE-FADE (added 2026-04-26)
   Replicates the home hero-v2 right-faded-image visual on every other page
   by overriding each page's existing hero overlay gradient. Each page keeps
   its own image, headline, sub, CTAs unchanged — only the overlay's
   gradient shifts so the LEFT side of the hero is dark (where text sits)
   and the RIGHT side fades softly to reveal the image as background.

   Exclusions:
     - Coach homes (.ch-page) is light-themed; ch-* overlays skipped.
     - Home page already uses hero-v2 (different structure, already styled).
   =========================================================================== */

/* Image-fade gradient on every page's hero overlay. The selector matches
   both X-hero-ov (most pages) and X-hero-overlay (basement) variants
   without enumerating each. */
[class*="-hero-ov"]:not([class*="ch-hero"]):not([class*="overlay-grad"]):not([class*="overlay-vignette"]) {
  background: linear-gradient(
    to right,
    var(--bg, #0a0f14) 0%,
    rgba(10, 15, 20, 0.94) 18%,
    rgba(10, 15, 20, 0.62) 48%,
    rgba(10, 15, 20, 0.30) 75%,
    rgba(10, 15, 20, 0.18) 100%
  ),
  linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 15, 20, 0.10) 60%,
    rgba(10, 15, 20, 0.55) 100%
  ) !important;
}

/* Gold-tinted dividers in hero contexts (replaces white-tinted ones) */
[class*="-hero"] [class$="-stats"],
[class*="-hero"] [class$="-meta"],
[class*="-hero"] [class$="-stat-row"],
[class$="-hero-meta"],
.viz-hero-meta,
.cn-quick {
  border-top-color: rgba(184, 135, 35, 0.22) !important;
}

/* Stats column-divider inside hero stat rows: gold instead of white */
[class*="-hero"] [class$="-stat"] + [class$="-stat"],
[class*="-hero"] [class$="-stat-item"] + [class$="-stat-item"],
[class*="-hero"] [class$="-meta-item"] + [class$="-meta-item"] {
  border-left-color: rgba(184, 135, 35, 0.18) !important;
}

/* Soft gold corner highlight on the right side of every (dark-themed) hero
   image — like the home hero's hv-img-glow. Targets the existing -hero-bg
   element via ::after, which most page heroes have. */
[class*="-hero-bg"]:not([class*="ch-"]) {
  position: relative;
}
[class*="-hero-bg"]:not([class*="ch-"])::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 30% 40% at 80% 35%,
    rgba(247, 215, 116, 0.12),
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

/* Make sure hero text stays above the new overlay layers */
[class$="-hero-inner"]:not(.ch-hero-inner) {
  position: relative;
  z-index: 2;
}

/* Star-rating numbers / score numbers in hero contexts: gold gradient */
[class*="-hero"] [class*="-rating"],
[class*="-hero"] [class*="-score"] {
  background: linear-gradient(135deg, #b88723 0%, #9a6f17 45%, #7a5512 72%, #6e4f12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Mobile fallback — on narrow viewports, the right-fade isn't useful since
   the image sits behind text in a different proportion. Soften the gradient
   so text stays readable without the strong horizontal split. */
@media (max-width: 720px) {
  [class*="-hero-ov"]:not([class*="ch-hero"]):not([class*="overlay-grad"]):not([class*="overlay-vignette"]) {
    background: linear-gradient(
      to bottom,
      rgba(10, 15, 20, 0.45) 0%,
      rgba(10, 15, 20, 0.78) 50%,
      rgba(10, 15, 20, 0.92) 100%
    ) !important;
  }
}

/* ===========================================================================
   GLOBAL HERO IMAGE-RIGHT REPOSITION (added 2026-04-26)
   Moves every page's hero background image to the right ~60% of the hero
   so the LEFT side shows the dark page-bg as a clean canvas for text +
   CTAs. Pairs with the existing left-to-right fade overlay added in the
   previous turn to give every page the same image-faded-from-the-right
   visual the home page has.

   Constraints honored:
     * No HTML rewrites — purely CSS, attribute-selector driven
     * Coach homes (.ch-*) and the home page (already hero-v2) excluded
     * Mobile (≤ 920 px) resets to full-cover so heroes still read on phones
   =========================================================================== */
[class*="-hero-bg"]:not([class*="ch-"]) {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 38% !important;
  right: 0 !important;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
[class*="-hero-bg"]:not([class*="ch-"]) > img,
[class*="-hero-bg"]:not([class*="ch-"]) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
}

/* The overlay should now span the FULL hero (not just the image area) so the
   left-fade darkens the page-bg too — making the seam invisible. */
[class*="-hero-ov"]:not([class*="ch-hero"]):not([class*="overlay-grad"]):not([class*="overlay-vignette"]) {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--bg, #0a0f14) 0%,
    var(--bg, #0a0f14) 30%,
    rgba(10, 15, 20, 0.86) 45%,
    rgba(10, 15, 20, 0.45) 70%,
    rgba(10, 15, 20, 0.15) 100%
  ),
  linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 15, 20, 0.10) 60%,
    rgba(10, 15, 20, 0.55) 100%
  ) !important;
}

/* Soft gold radial highlight on the image side */
[class*="-hero-bg"]:not([class*="ch-"])::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 35% 50% at 70% 30%,
    rgba(247, 215, 116, 0.14),
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}

/* Hero inner content sits above all image + overlay layers, anchored left */
[class$="-hero-inner"]:not(.ch-hero-inner) {
  position: relative !important;
  z-index: 3 !important;
  max-width: 660px;
}

/* Hero sections themselves: ensure overflow is hidden and bg is dark
   so the area to the LEFT of the image is solid var(--bg) */
[class$="-hero"]:not(.ch-hero):not(.hero-v2) {
  position: relative;
  background: var(--bg, #0a0f14) !important;
  overflow: hidden !important;
}
header[class$="-hero"]:not(.ch-hero) {
  display: block !important;
}

/* Mobile: image reverts to full-cover, overlay flips to vertical fade */
@media (max-width: 920px) {
  [class*="-hero-bg"]:not([class*="ch-"]) {
    left: 0 !important;
    inset: 0 !important;
  }
  [class*="-hero-ov"]:not([class*="ch-hero"]):not([class*="overlay-grad"]):not([class*="overlay-vignette"]) {
    background: linear-gradient(
      to bottom,
      rgba(10, 15, 20, 0.45) 0%,
      rgba(10, 15, 20, 0.78) 50%,
      rgba(10, 15, 20, 0.92) 100%
    ) !important;
  }
  [class$="-hero-inner"]:not(.ch-hero-inner) {
    max-width: 100%;
  }
}

/* ===========================================================================
   GLOBAL PILL-BUTTON ENFORCEMENT (added 2026-04-26)
   Every per-page CTA variant — .X-btn-gold / .X-btn-primary / .X-btn-ghost /
   .X-btn-ghost-lt / .tk-btn-* — gets the same Apple-pill rounding and
   horizontal padding as the global .btn class. Pages were authored with
   their own button rules pre-design-system, leaving rectangular and
   inconsistent corners. This unifies all of them in one place.
   =========================================================================== */
[class$="-btn-gold"],
[class$="-btn-primary"],
[class$="-btn-ghost"],
[class$="-btn-ghost-lt"],
[class$="-btn-secondary"],
[class$="-btn-outline"],
[class*="tk-btn-"],
[class*="b23-btn-"],
[class*="wr-btn-"],
[class*="ch-btn-"],
[class*="viz-btn-"],
.btn,
.btn-gold {
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 26px !important;
  font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s !important;
}
/* Gold-fill variants: warm gradient, dark text */
[class$="-btn-gold"],
[class$="-btn-primary"],
.btn-gold {
  background: linear-gradient(135deg, #b88723 0%, #9a6f17 40%, #7a5512 70%, #6e4f12 100%) !important;
  color: #131313 !important;
  border: 1px solid rgba(184,135,35,.6) !important;
  box-shadow: 0 6px 20px rgba(184,135,35,.28), inset 0 1px 0 rgba(255,243,176,.4) !important;
}
[class$="-btn-gold"]:hover,
[class$="-btn-primary"]:hover,
.btn-gold:hover {
  filter: brightness(1.08) !important;
  box-shadow: 0 8px 28px rgba(184,135,35,.42), inset 0 1px 0 rgba(255,243,176,.55) !important;
  transform: translateY(-1px) !important;
}
/* Ghost / outline variants: gold border, transparent fill */
[class$="-btn-ghost"],
[class$="-btn-ghost-lt"],
[class$="-btn-secondary"],
[class$="-btn-outline"] {
  background: transparent !important;
  color: var(--gold-light, #e0b862) !important;
  border: 1.5px solid rgba(184,135,35,.55) !important;
}
[class$="-btn-ghost"]:hover,
[class$="-btn-ghost-lt"]:hover,
[class$="-btn-secondary"]:hover,
[class$="-btn-outline"]:hover {
  border-color: var(--gold-light, #e0b862) !important;
  color: #FFF3B0 !important;
  background: rgba(184,135,35,.08) !important;
  box-shadow: 0 0 24px rgba(247,215,116,.18) !important;
  transform: translateY(-1px) !important;
}
/* Mobile collapse */
@media (max-width: 720px) {
  [class$="-btn-gold"],
  [class$="-btn-primary"],
  [class$="-btn-ghost"],
  [class$="-btn-ghost-lt"],
  [class$="-btn-secondary"],
  [class$="-btn-outline"],
  .btn,
  .btn-gold {
    padding: 13px 22px !important;
    font-size: 12.5px !important;
    width: 100%;
  }
}

/* ===========================================================================
   RTL ADJUSTMENTS — Arabic + future RTL languages (added 2026-04-26)
   When <html dir="rtl"> is set by setLang('ar'), the browser auto-flips
   most elements but a few hand-tuned bits need explicit RTL rules so the
   hero-v2, nav, and CTAs read naturally in right-to-left.
   =========================================================================== */

/* Hero v2 — flip the image to the LEFT in RTL so text-right reads first */
[dir="rtl"] .hv-imgwrap { grid-column: 2; }
[dir="rtl"] .hv-inner { grid-column: 3; }
[dir="rtl"] .hv-img-fade {
  background:
    linear-gradient(to left,
      rgba(10,15,20,.85) 0%,
      rgba(10,15,20,.55) 32%,
      rgba(10,15,20,.22) 65%,
      rgba(10,15,20,.05) 100%),
    linear-gradient(to bottom,
      rgba(10,15,20,.45) 0%,
      rgba(10,15,20,.10) 14%,
      rgba(10,15,20,.0)  28%,
      rgba(10,15,20,.0)  72%,
      rgba(10,15,20,.10) 86%,
      rgba(10,15,20,.45) 100%);
}
[dir="rtl"] .hv-img-glow { background: radial-gradient(ellipse 30% 40% at 20% 35%, rgba(247,215,116,.10), transparent 60%); }
[dir="rtl"] .hv-left { margin-left: auto; margin-right: 0; text-align: right; }
[dir="rtl"] .hv-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .hv-cta-arrow { transform: rotate(180deg); }
[dir="rtl"] .hv-stats,
[dir="rtl"] .hv-features { direction: rtl; }
[dir="rtl"] .hv-stat,
[dir="rtl"] .hv-feature { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .hv-feature::after { right: auto; left: -11px; }

/* Nav — arabic flips the menu order naturally; just nudge logo/right cluster */
[dir="rtl"] nav#nav .nv-wrap { direction: rtl; }
[dir="rtl"] nav#nav .nv-menu { flex-direction: row-reverse; }
[dir="rtl"] nav#nav .nv-right { flex-direction: row-reverse; }
[dir="rtl"] .nv-panel-link { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .nv-panel-icon { margin-left: 0; margin-right: 0; }

/* Buttons — arrow icons flip */
[dir="rtl"] .btn svg,
[dir="rtl"] .btn-gold svg,
[dir="rtl"] [class$="-btn-gold"] svg,
[dir="rtl"] [class$="-btn-primary"] svg,
[dir="rtl"] .hv-cta-arrow { transform: scaleX(-1); }

/* Arabic-specific font tweak — system Arabic fonts read better at slightly
   larger size; nudge body/h1 sizes up to compensate */
[dir="rtl"] body { font-family: 'Cairo', 'Tajawal', system-ui, var(--sans, sans-serif); }
[dir="rtl"] .hv-h { letter-spacing: 0; line-height: 1.18; }
[dir="rtl"] .hv-sub,
[dir="rtl"] .hv-stat-lbl,
[dir="rtl"] .hv-feature-p { letter-spacing: 0; }

/* Chinese (zh) — system CJK font stack for clean rendering */
[lang="zh"] body,
[lang="zh"] .hv-h,
[lang="zh"] .hv-sub {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, var(--sans, sans-serif);
}
[lang="zh"] .hv-h { letter-spacing: 0; line-height: 1.2; }

/* Spanish — uses default Latin stack; no changes needed beyond minor
   tightening for accented characters (no rule needed; same rendering). */

/* ===========================================================================
   I18N NAV SAFETY (added 2026-04-26)
   Longer translations (FR "Notre Entreprise", AR/ZH variants) can wrap the
   nav onto multiple rows. Force single-row layout regardless of language;
   ensure the right cluster (lang switcher + estimating + quote) stays inline.
   =========================================================================== */
nav#nav .nv-wrap { flex-wrap: nowrap !important; }
nav#nav .nv-menu { flex-wrap: nowrap !important; min-width: 0; }
nav#nav .nv-right { flex-wrap: nowrap !important; flex-shrink: 0; }
nav#nav .nv-btn { white-space: nowrap !important; }
nav#nav .nv-est,
nav#nav .nv-quote,
nav#nav .nv-lang-btn { white-space: nowrap !important; flex-shrink: 0; }

/* Tighten font + padding slightly between 1024-1280px so all 7 nav items fit */
@media (min-width: 1024px) and (max-width: 1340px) {
  nav#nav .nv-btn { padding: 8px 10px !important; font-size: 13px !important; letter-spacing: 0 !important; }
  nav#nav .nv-est { padding: 7px 12px !important; font-size: 11.5px !important; }
  nav#nav .nv-quote { padding: 7px 14px !important; font-size: 11.5px !important; }
  nav#nav .nv-lang-btn { padding: 5px 9px !important; }
  nav#nav .nv-wrap { gap: 4px !important; }
  nav#nav .nv-menu { gap: 0 !important; }
}
/* Below 1024px, hamburger drawer takes over (existing CSS) — no change here */

/* ===========================================================================
   NAV LAYOUT REPAIR (added 2026-04-26 — CSS LAYOUT REPAIR pass)
   Symptom: right-cluster (Contact, EN, Estimating, Free Quote) overlapping
   the hero. Root cause: original `nav { height: 44px }` (line 1548) capped
   the bar height while later overrides inflated logo to 42px + 14px+14px
   .nv-wrap padding (~70px). The contents overflowed vertically out of the
   44px-locked nav, falling into the hero section below.

   Fix: lift the height cap, anchor nav fixed at top with high z-index, force
   the wrap into a single flex row with logo (left), menu (center, flex:1),
   right cluster (right). Pin the body below the nav with padding-top so the
   hero never crosses under it. All targeted, no redesign.
   =========================================================================== */
nav#nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  inset: 0 0 auto 0 !important;
  height: auto !important;
  min-height: 72px !important;
  z-index: 1000 !important;
  display: block !important;
}
nav#nav .nv-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  height: auto !important;
  min-height: 72px !important;
  gap: 12px;
}
nav#nav .nv-logo {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  position: static !important;
}
nav#nav .nv-logo img {
  max-height: 44px !important;
  width: auto !important;
  height: 40px !important;
}
nav#nav .nv-menu {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  position: static !important;
}
nav#nav .nv-item {
  position: relative !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
}
nav#nav .nv-btn {
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
}
nav#nav .nv-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
  position: static !important;
  gap: 10px !important;
  margin-left: auto !important;
}
nav#nav .nv-right > * {
  position: relative;
  flex-shrink: 0;
}
nav#nav .nv-lang { position: relative !important; }
nav#nav .nv-lang-drop {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  z-index: 1100 !important;
}
nav#nav .nv-quote,
nav#nav .nv-est,
nav#nav .nv-lang-btn {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
}

/* Push page content below the fixed nav so the hero never overlaps it.
   72px nav + 4px breathing room. Mobile drops to 60px. */
body { padding-top: 72px !important; }
@media (max-width: 980px) {
  nav#nav, nav#nav .nv-wrap { min-height: 60px !important; }
  body { padding-top: 60px !important; }
}

/* The original .bc-bar { margin-top: 44px } and .page>.ticker:first-child
   { margin-top: 44px } added 44px of extra spacing on top of the now-active
   body padding-top. Zero them out so the hero sits flush under the nav. */
.bc-bar { margin-top: 0 !important; }
.page > .ticker:first-child { margin-top: 0 !important; }

/* Hero-v2 sits inside .page.active; ensure it doesn't add its own offset
   that compounds with the body padding-top. The 72px hero-v2 padding-top
   provides comfortable breathing room below the nav already. */
.hero-v2 { margin-top: 0 !important; }

/* Mobile overlay must clear the new nav height (was inset: 44px 0 0 0). */
@media (max-width: 980px) {
  .nv-mobile { inset: 60px 0 0 0 !important; }
}
@media (min-width: 981px) {
  .nv-mobile { inset: 72px 0 0 0 !important; }
}

/* Defensive: if any global .btn-gold rule tries to claim a nav child, it
   loses to these locally-scoped selectors. Right-cluster items must NOT be
   width: 100% on mobile (the global pill enforcement collapses .btn-gold to
   width: 100% under 720px — none of nv-* match that, but this guarantees it). */
@media (max-width: 720px) {
  nav#nav .nv-quote,
  nav#nav .nv-est,
  nav#nav .nv-lang-btn,
  nav#nav .nv-btn {
    width: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   BRIGHT HERO RE-THEME — flips every .hero-v2 page from dark to light while
   keeping its existing image/iframe media. Deeper bronze gold for readability
   on white. (Main page uses .dtrx-stage and is unaffected.) Added 2026-06-10.
   ════════════════════════════════════════════════════════════════════════ */
.hero-v2{
  background: linear-gradient(180deg,#ffffff 0%,#fbfbfa 55%,#f5f5f5 100%) !important;
  color:#16202b !important;
}
.hero-v2::before{
  background:
    radial-gradient(ellipse 55% 50% at 80% 22%, rgba(224,184,98,.22), transparent 62%),
    radial-gradient(ellipse 42% 60% at 8% 78%, rgba(184,135,35,.05), transparent 60%) !important;
}
.hero-v2 .hv-eyebrow-txt{ color:#6f4e12 !important; }
.hero-v2 .hv-h{ color:#16202b !important; }
.hero-v2 .hv-h em{
  background-image:linear-gradient(135deg,#b07d1e 0%,#8a5a16 55%,#6e4f12 100%) !important;
  -webkit-background-clip:text !important; background-clip:text !important; -webkit-text-fill-color:transparent !important; color:transparent !important;
}
.hero-v2 .hv-sub{ color:#55626f !important; }
.hero-v2 .hv-sub strong{ color:#16202b !important; }
.hero-v2 .hv-stat-num{
  background-image:linear-gradient(135deg,#b88723 0%,#8a6418 55%,#6e4f12 100%) !important;
  -webkit-background-clip:text !important; background-clip:text !important; -webkit-text-fill-color:transparent !important; color:transparent !important;
}
.hero-v2 .hv-stat-lbl{ color:#6b7682 !important; }
.hero-v2 .hv-feature-h{ color:#16202b !important; }
.hero-v2 .hv-feature-p{ color:#69727c !important; }
.hero-v2 .hv-features{
  background:#ffffff !important;
  border:1px solid #ececec !important;
  box-shadow:0 10px 34px rgba(20,30,45,.07) !important;
}
.hero-v2 .hv-feature::after{ background:linear-gradient(to bottom,transparent,rgba(184,135,35,.22) 30%,rgba(184,135,35,.22) 70%,transparent) !important; }
.hero-v2 .hv-imgwrap{
  box-shadow:
    0 0 0 1px rgba(232,201,110,.55),
    0 0 26px 4px rgba(184,135,35,.16),
    0 30px 70px -22px rgba(20,30,45,.35),
    inset 0 0 0 1px rgba(232,201,110,.45) !important;
}
.hero-v2 .hv-img-fade{ background:none !important; }

/* ════════════════════════════════════════════════════════════════════════
   FULL-BLEED FADED HERO for all .hero-v2 inner pages (match the home hero).
   Media (.hv-imgwrap: iframe timelapse or static img) becomes a full-width
   background; a white veil fades it behind the left-aligned lettering.
   Applies in both light + dark mode for consistency with the home page.
   Added 2026-06-11.
   ════════════════════════════════════════════════════════════════════════ */
.hero-v2{
  display:flex !important; flex-direction:column; justify-content:center;
  min-height:clamp(560px,80vh,880px);
  background:#f4f6f8 !important; color:#16202b !important;
  padding:clamp(44px,6vh,68px) 0 !important;
  overflow:hidden; isolation:isolate;
}
/* Semi-transparent white veil (mirrors the dark-mode dark tint) so the ENTIRE
   image stays visible in light mode too — stronger on the left for text
   legibility, clearing toward the image on the right. 2026-07-22. */
.hero-v2::before{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(100deg,rgba(255,255,255,.52) 0%,rgba(255,255,255,.35) 36%,rgba(255,255,255,.18) 64%,rgba(255,255,255,.05) 100%),
    linear-gradient(to top,rgba(255,255,255,.26) 0%,rgba(255,255,255,0) 24%,rgba(255,255,255,0) 82%,rgba(255,255,255,.16) 100%) !important;
}
/* media → full-bleed background */
.hero-v2 .hv-imgwrap{
  position:absolute !important; inset:0 !important;
  grid-column:auto !important; grid-row:auto !important;
  width:100% !important; height:100% !important;
  min-height:0 !important; aspect-ratio:auto !important;
  border-radius:0 !important; box-shadow:none !important;
  z-index:0 !important; pointer-events:none; align-self:stretch !important;
}
.hero-v2 .hv-imgwrap > .hv-iframe,
.hero-v2 .hv-imgwrap .hv-img,
.hero-v2 .hv-imgwrap img{
  position:absolute !important; inset:0 !important;
  width:100% !important; height:100% !important; border:0 !important;
  object-fit:cover !important; object-position:center !important; border-radius:0 !important;
}
.hero-v2 .hv-img-fade, .hero-v2 .hv-img-glow{ display:none !important; }
/* text + feature bar → constrained to the site content column (.wrap=1320), on top */
.hero-v2 .hv-inner,
.hero-v2 .hv-features{
  grid-column:auto !important; grid-row:auto !important;
  position:relative; z-index:3;
  width:100%; max-width:1320px; margin-left:auto; margin-right:auto;
  padding-left:clamp(20px,4vw,48px); padding-right:clamp(20px,4vw,48px);
}
.hero-v2 .hv-left{ max-width:600px; }
/* recolour text for the light faded background */
.hero-v2 .hv-eyebrow-txt{ color:#6f4e12 !important; }
.hero-v2 .hv-h{ color:#16202b !important; }
.hero-v2 .hv-h em{ color:#6f4e12 !important; }
.hero-v2 .hv-sub{ color:#55626f !important; }
.hero-v2 .hv-sub strong{ color:#16202b !important; }
.hero-v2 .hv-stat-num{ color:#16202b !important; -webkit-text-fill-color:#16202b !important; }
.hero-v2 .hv-stat-num .gold,
.hero-v2 .hv-stat-num-sup{ color:#6f4e12 !important; -webkit-text-fill-color:#6f4e12 !important; }
.hero-v2 .hv-stat-lbl{ color:#6b7682 !important; }
.hero-v2 .hv-stat-ico{ color:#6f4e12 !important; }
.hero-v2 .hv-stats{ border-top-color:rgba(0,0,0,.10) !important; }
/* feature bar → light glassy card */
.hero-v2 .hv-features{
  margin-top:clamp(26px,4vh,46px) !important;
  background:rgba(255,255,255,.62) !important;
  border:1px solid rgba(184,135,35,.28) !important;
  box-shadow:0 12px 40px -18px rgba(20,30,45,.22) !important;
}
.hero-v2 .hv-feature-p{ color:#55626f !important; }
@media (max-width:760px){
  .hero-v2{ min-height:auto; }
  .hero-v2::before{
    background:linear-gradient(180deg,rgba(255,255,255,.70) 0%,rgba(255,255,255,.48) 48%,rgba(255,255,255,.32) 100%) !important;
  }
}

/* ── Homepage goldSweep studio embed used as the .hero-v2 media (2026-06-12) ──
   Lets inner-page heroes run the same before→after glide as the home hero. */
.hero-v2 .hv-imgwrap .dtr-studio-embed{ position:absolute; inset:0; width:100%; height:100%; }
.hero-v2 .hv-imgwrap .dtrs-host{ background:#eef1f4 !important; }
.hero-v2 .hv-imgwrap .dtr-studio-embed .dtr-studio-fallback{ display:block !important;
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }

/* ── pg-hero / jt-hero glide override: full-bleed faded goldSweep for company + insight pages (2026-06-14) ── */
.pg-hero, .jt-hero{ position:relative !important; display:flex !important; flex-direction:column; justify-content:center;
  min-height:clamp(460px,64vh,620px) !important; background:#f4f6f8 !important; overflow:hidden; isolation:isolate;
  padding:clamp(44px,6vh,68px) 0 !important; }
.pg-hero::before, .jt-hero::before{ content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  /* Semi-transparent white veil so the ENTIRE image shows in light mode (2026-07-22). */
  background:
    linear-gradient(100deg,rgba(255,255,255,.52) 0%,rgba(255,255,255,.35) 36%,rgba(255,255,255,.18) 64%,rgba(255,255,255,.05) 100%),
    linear-gradient(to top,rgba(255,255,255,.26) 0%,rgba(255,255,255,0) 24%,rgba(255,255,255,0) 82%,rgba(255,255,255,.16) 100%) !important; }
.pg-hero .pg-hero-ov, .jt-hero .jt-hero-ov{ display:none !important; }
.pg-hero .dtr-studio-embed, .jt-hero .dtr-studio-embed{ position:absolute !important; inset:0 !important; width:100%; height:100%; z-index:0 !important; pointer-events:none; }
.pg-hero .dtrs-host, .jt-hero .dtrs-host{ background:#eef1f4 !important; }
.pg-hero .dtr-studio-embed .dtr-studio-fallback, .jt-hero .dtr-studio-embed .dtr-studio-fallback{ display:block !important; position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.pg-hero .pg-hero-inner, .jt-hero .jt-hero-inner{ position:relative !important; z-index:3 !important; width:100%; max-width:1320px; margin-left:auto !important; margin-right:auto !important; padding-left:clamp(20px,4vw,48px) !important; padding-right:clamp(20px,4vw,48px) !important; text-align:left !important; }
@media (max-width:760px){ .pg-hero::before, .jt-hero::before{ background:linear-gradient(180deg,rgba(255,255,255,.70) 0%,rgba(255,255,255,.48) 48%,rgba(255,255,255,.32) 100%) !important; } }

.pg-hero .hero-static-img, .jt-hero .hero-static-img{ position:absolute !important; inset:0 !important; width:100%; height:100%; object-fit:cover; z-index:0; }

/* ── Accessibility: visible keyboard focus (DSGN-13) ──────────────────────────
   Nav links/buttons and form controls previously set outline:none with only a
   colour change on focus, leaving keyboard focus nearly invisible. This restores
   a clear focus ring for keyboard users without affecting mouse/touch. */
:focus-visible{ outline:2px solid var(--gold, #b88723); outline-offset:2px; border-radius:2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, .nv-btn:focus-visible, .btn:focus-visible{
  outline:2px solid var(--gold, #b88723); outline-offset:2px;
}

/* i18n FOUC control (I18N-07): only returning non-English visitors get the
   html.i18n-pending class (set by the <head> inline script); their content
   softly fades in once translations apply, avoiding the English flash.
   English visitors never get the class, so they see no fade. */
html.i18n-pending body{opacity:0}
body{opacity:1;transition:opacity .18s ease}

/* ── Compact desktop tier (1280–1599px): the centered .nv-menu content (~770px) can paint over the
   logo/right-cluster on 1366/1440/1536 monitors. Layout switch per Rule 6 (drop redundant chrome at
   this tier — phone stays in footer/contact; Estimating stays reachable via menu + Free Quote). ── */
@media (min-width:1280px) and (max-width:1599px){
  body nav#nav .nv-phone{display:none !important;}
  body nav#nav .nv-est{display:none !important;}
  body nav#nav .nv-logo img{width:40px !important;height:30px !important;}
  body nav#nav .nv-logo{gap:10px !important;}
}
